Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

compliance-review合规审查

Agent Skill

compliance-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,211

周安装

52

GitHub Stars

公开资料未说明

下载量

424
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:compliance-review(合规审查)
来源仓库:https://github.com/shiplightai/agent-skills
仓库路径:skills/compliance-review
安装命令:
npx skills add https://github.com/shiplightai/agent-skills --skill compliance-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/shiplightai/agent-skills --skill compliance-review

简介

compliance-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于研究检索类任务,通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Compliance Review

Evaluate your application against industry-specific regulatory requirements. This review translates dense compliance frameworks into concrete, testable technical checks — and validates them through browser-based testing. Non-compliance can result in severe fines, legal action, and loss of business.

When to use

Use /compliance-review when:

  • Building applications for regulated industries (healthcare, finance, government)
  • Preparing for a compliance audit (SOC 2, HIPAA, PCI-DSS)
  • Adding payment processing or health data features
  • Expanding to GDPR-regulated markets
  • After infrastructure or architecture changes that affect data handling

Standards Referenced

  • HIPAA — Health Insurance Portability and Accountability Act (Technical Safeguards §164.312)
  • SOC 2 — Service Organization Control (Trust Service Criteria)
  • PCI-DSS v4.0 — Payment Card Industry Data Security Standard
  • GDPR — General Data Protection Regulation (Technical Measures)

Phase Overview

Phase 1: EDUCATE   → Compliance context and applicable frameworks
Phase 2: SCOPE     → Determine which frameworks apply, identify regulated data
Phase 3: ANALYZE   → Browser-based checks against framework requirements
Phase 4: REPORT    → Findings mapped to specific regulatory sections
Phase 5: REMEDIATE → Fix guidance + YAML regression tests for continuous compliance

Phase 1: Educate

Why this matters: HIPAA violations: up to $1.9M per violation category per year. PCI-DSS non-compliance: $5,000-$100,000/month in fines plus liability for breaches. SOC 2 failures: loss of enterprise customers who require it. GDPR: up to 4% of global annual revenue. These aren't theoretical — enforcement is active and increasing.

Compliance frameworks are large documents. This review extracts the technical requirements testable in a web application — not the organizational/procedural requirements (policies, training, vendor management) that require human process review.


Phase 2: Scope

Determine applicable frameworks

  1. Auto-detect from codebase:

- Health data handling (HIPAA indicators: HL7, FHIR, patient records, PHI references) - Payment processing (PCI-DSS indicators: Stripe, Braintree, credit card fields, payment forms) - EU user data (GDPR indicators: consent banners, cookie notices, EU deployments) - Audit logging (SOC 2 indicators: audit trail, event logging, access logs)

  1. Ask the user:

- Which frameworks apply? (auto-detected, confirm) - HIPAA — healthcare / protected health information - SOC 2 — enterprise SaaS / customer data - PCI-DSS — payment card data - GDPR — EU personal data - Other (specify) - Target URL: Where is the app running? - Regulated data types: What regulated data does the app handle? (auto-detected) - Test credentials: Accounts with access to regulated data for testing

  1. Map regulated data flows:

- Where regulated data enters the system (forms, APIs, imports) - Where it's displayed (dashboards, reports, exports) - Where it's stored client-side (if anywhere) - Where it's transmitted (API endpoints, third-party services)


Phase 3: Analyze

Run only the sections applicable based on Phase 2 scoping. Open a browser session with new_session using record_evidence: true.

HIPAA Technical Safeguards (HIP)

Applicable when: application handles Protected Health Information (PHI).

Check IDCheckHIPAA SectionMethod
HIP-01PHI not displayed without authentication§164.312(d)Access PHI pages without auth, verify 401/redirect
HIP-02Session auto-timeout after inactivity§164.312(a)(2)(iii)Wait for idle period, verify session expiration
HIP-03PHI not in URL parameters§164.312(e)(1)Navigate PHI pages, check URLs
HIP-04PHI not in browser console/logs§164.312(b)Check get_browser_console_logs for PHI patterns
HIP-05PHI not cached in browser storage§164.312(a)(2)(iv)Check localStorage, sessionStorage for PHI
HIP-06PHI transmitted over HTTPS only§164.312(e)(1)Verify all PHI API calls use HTTPS
HIP-07Audit trail for PHI access§164.312(b)Access PHI, verify audit log entry exists
HIP-08Role-based access to PHI§164.312(a)(1)Test PHI access with different user roles
HIP-09PHI display has minimum necessary principle§164.502(b)Check if UI shows only needed PHI fields
HIP-10Emergency access procedure exists§164.312(a)(2)(ii)Check for break-glass or emergency access UI
HIP-11No PHI in error messages§164.312(b)Trigger errors on PHI pages, check messages
HIP-12Logout fully terminates PHI access§164.312(a)(2)(iii)Logout, back button, check no PHI visible

Browser validation: Navigate to pages with PHI. Test access controls. Check for PHI in URLs, storage, console. Test session timeout by waiting. Test logout completeness.

SOC 2 Trust Service Criteria (SOC)

Applicable when: enterprise SaaS handling customer data.

Check IDCheckSOC 2 CriteriaMethod
SOC-01Authentication required for all data accessCC6.1Access data pages without auth
SOC-02Strong password requirements enforcedCC6.1Test signup/password change with weak passwords
SOC-03MFA available for user accountsCC6.1Check account security settings for MFA option
SOC-04Session management is secureCC6.1Check cookie flags, timeout, logout behavior
SOC-05Data is encrypted in transitCC6.7Verify HTTPS everywhere, check for mixed content
SOC-06Access is logged (audit trail)CC7.2Perform actions, verify audit log entries
SOC-07Failed login attempts are monitoredCC7.2Multiple failed logins, check for alerting/lockout
SOC-08User permissions are role-basedCC6.3Test different roles, verify appropriate access
SOC-09Data deletion is availableCC6.5Test account/data deletion functionality
SOC-10System status page or health endpointCC7.1Check for status page or /health endpoint
SOC-11Error handling doesn't leak internal detailsCC7.4Trigger errors, check for stack traces
SOC-12Change management evident (versioning)CC8.1Check for version info, changelog

Browser validation: Test authentication boundaries, password policies, MFA flows, role-based access, audit logging visibility.

PCI-DSS v4.0 (PCI)

Applicable when: application processes, stores, or transmits cardholder data.

Check IDCheckPCI-DSS ReqMethod
PCI-01Credit card numbers never fully displayed3.4View saved cards, verify masking (show last 4 only)
PCI-02CVV never stored or displayed after authorization3.3.2Check storage, API responses for CVV
PCI-03Payment form uses HTTPS4.1Verify payment page URL and all resources
PCI-04Payment form is on compliant iframe/redirectSAQ ACheck if using Stripe Elements, PayPal, or similar
PCI-05No cardholder data in URL parameters4.2Check URLs during payment flow
PCI-06No cardholder data in client storage3.2Check localStorage, sessionStorage, cookies
PCI-07No cardholder data in console logs3.2Check get_browser_console_logs during payment
PCI-08Payment form prevents autocomplete on card fieldsBest practiceCheck autocomplete="off" on sensitive fields
PCI-09Strong authentication for payment admin8.3Verify admin/payment management requires strong auth
PCI-10Access to cardholder data is role-restricted7.1Test access to payment data with non-admin users
PCI-11Payment error messages don't reveal card details3.2Trigger payment errors, check messages
PCI-12CSP prevents unauthorized scripts on payment pages6.4.3Check CSP header on payment pages specifically

Browser validation: Walk through the payment flow. Check card display masking. Inspect storage and console for cardholder data. Verify payment form is iframe/hosted (SAQ A compliance).

GDPR Technical Requirements (GDPR)

Applicable when: application handles EU personal data. (Note: privacy-specific checks are in /privacy-review — this section covers GDPR's technical/compliance obligations.)

Check IDCheckGDPR ArticleMethod
GDPR-01Consent collected before data processingArt. 6, 7Load page, check if processing occurs before consent
GDPR-02Privacy policy is accessible and currentArt. 13, 14Find and verify privacy policy page
GDPR-03Data subject access request mechanism existsArt. 15Find data export/download feature
GDPR-04Right to erasure is implementedArt. 17Find and test account deletion
GDPR-05Data portability (export in standard format)Art. 20Test data export, verify format (JSON/CSV)
GDPR-06Consent withdrawal is as easy as giving consentArt. 7(3)Compare consent-giving vs withdrawal UX
GDPR-07Age verification for minors (if applicable)Art. 8Check for age gate or parental consent
GDPR-08Data processing records accessibleArt. 30Check for processing activity documentation
GDPR-09Data breach notification mechanismArt. 33, 34Check for incident response documentation
GDPR-10Cross-border transfer safeguardsArt. 44-49Check where third-party services are hosted

Browser validation: Test consent flows, data export, account deletion, privacy policy accessibility. Check third-party script origins for cross-border transfer concerns.


Phase 4: Report

Generate a structured report saved to shiplight/reports/compliance-review-{date}.md:

# Compliance Review Report
**Date:** {date}
**URL:** {url}
**Frameworks evaluated:** {HIPAA, SOC 2, PCI-DSS, GDPR}
**Regulated data types:** {PHI, cardholder data, EU personal data}

## Overall Compliance Score: {X}/10 | Confidence: {X}%

## Framework Scores
| Framework | Score | Pass | Fail | N/A | Critical Gaps |
|-----------|-------|------|------|-----|---------------|
| HIPAA | 6/10 | 8 | 3 | 1 | Session timeout, PHI in URL |
| SOC 2 | 7/10 | 9 | 2 | 1 | No MFA, weak audit trail |
| PCI-DSS | 8/10 | 10 | 1 | 1 | Card data in console |
| GDPR | 5/10 | 5 | 4 | 1 | Consent, data export, erasure |

## Compliance Status by Check
(Full table of all checks with PASS/FAIL/N-A status, evidence, and confidence)

## Critical Non-Compliance Items
(Findings that could result in regulatory action, ordered by risk)

## Audit Preparation Checklist
- [ ] Fix all CRITICAL findings
- [ ] Fix all HIGH findings
- [ ] Document accepted risks for MEDIUM findings
- [ ] Run YAML regression tests before audit date
- [ ] Prepare evidence documentation from this report

Confidence Scoring

  • 90-100%: Browser-validated, compliance violation confirmed (e.g., PHI visible without auth, card number in console)
  • 70-89%: Strong evidence from inspection (e.g., missing header, no timeout behavior)
  • 50-69%: Architectural concern based on code patterns (e.g., audit logging might be incomplete)
  • Below 50%: Don't report — compliance findings must be substantiated

Phase 5: Remediate

1. Fix guidance (example)

#### HIP-02: No session auto-timeout
**Regulation:** HIPAA §164.312(a)(2)(iii) — Automatic logoff
**Risk:** Unattended sessions with PHI visible
**Current:** Sessions persist indefinitely
**Fix:** Implement idle timeout (HIPAA recommends ≤15 minutes for PHI access)
- Add client-side idle detection (mouse, keyboard events)
- Server-side session expiry as backup
- Show warning dialog at 12 minutes
- Auto-logout and clear screen at 15 minutes

2. YAML regression test

- name: hip-02-session-auto-timeout
  description: Verify session auto-timeout for HIPAA compliance
  severity: critical
  standard: HIPAA-164.312(a)(2)(iii)
  steps:
    - URL: /login
    - intent: Log in with test credentials
      action: fill
      locator: "getByLabel('Email')"
      value: "test@example.com"
    - intent: Enter password
      action: fill
      locator: "getByLabel('Password')"
      value: "testpass123"
    - intent: Submit login form
      action: click
      locator: "getByRole('button', { name: 'Sign in' })"
    - WAIT_UNTIL: Dashboard with PHI is visible
      timeout_seconds: 15
    - VERIFY: Session timeout warning appears after inactivity period
      timeout_seconds: 900
    - VERIFY: User is automatically logged out after timeout expires
      timeout_seconds: 300

Save all YAML tests to shiplight/tests/compliance-review.test.yaml.


Depth Levels

  • --quick: Critical checks only — authentication boundaries + data exposure. ~3 minutes.
  • default: Full applicable framework. ~10-15 minutes.
  • --thorough: All checks + multi-role testing + edge cases + documentation review. ~25-40 minutes.

Tips

  • Run the compliance review specific to your framework: "run HIPAA checks only"
  • Compliance requires evidence — use record_evidence: true and generate_html_report for audit documentation
  • YAML regression tests from this review serve as continuous compliance monitoring
  • This review covers technical requirements only — organizational requirements (policies, training) need human review
  • For privacy-specific concerns, complement with /privacy-review
  • For security-specific concerns, complement with /security-review
  • Close session with close_session and use generate_html_report for evidence

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.03%
按下载量换算140

Claude

31.94%
按下载量换算135

Cursor

17.32%
按下载量换算73

Gemini CLI

9.01%
按下载量换算38

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills