Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

non-compliance不合规

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

9

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/florianbuetow/claude-code --skill non-compliance

简介

non-compliance 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 支持合规性相关内容的研究与信息提取。
  • 安装命令:npx skills add https://github.com/florianbuetow/claude-code --skill non-compliance。
  • 使用前需确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Non-Compliance Analysis (LINDDUN N2)

Analyze source code for regulatory non-compliance where data processing activities violate GDPR, CCPA, or HIPAA. Non-compliance results from missing technical controls, incorrect legal bases, or unimplemented data subject rights. This category has no STRIDE equivalent and is unique to privacy threat modeling.

Supported Flags

Read ../../shared/schemas/flags.md for full flag documentation. This skill supports all cross-cutting flags.

FlagNon-Compliance-Specific Behavior
--scopeDefault changed. Focuses on files containing data retention, deletion logic, consent management, cross-border transfers, age verification, and processing records.
--depth quickGrep patterns only: scan for missing deletion endpoints, hardcoded retention, and cross-border transfers.
--depth standardFull code read, check data lifecycle implementation against regulatory requirements.
--depth deepTrace data flows across storage layers. Verify deletion cascades through databases, backups, caches, and logs.
--depth expertDeep + regulatory audit simulation: assess compliance posture against GDPR, CCPA, and HIPAA article by article.
--severityFilter output. Missing data subject rights are high; documentation gaps are medium.
--fixGenerate retention enforcement, deletion cascades, and consent management implementations.

Framework Context

LINDDUN N2 -- Non-compliance

Non-compliance occurs when data processing activities violate applicable privacy regulations. Read ../../shared/frameworks/linddun.md for the full framework reference including regulatory mappings.

Privacy Property Violated: Regulatory Compliance | STRIDE Mapping: No equivalent | OWASP: A04:2021 (Insecure Design)

Workflow

Step 1 -- Determine Scope

  1. Parse --scope flag (default: changed).
  2. Resolve to a concrete file list.
  3. Filter to relevant files: data retention logic, deletion handlers, consent management, user rights endpoints, data transfer configs, and age gates.
  4. Prioritize files containing: cleanup jobs, TTL configs, deletion endpoints, consent flows, data exports, and cross-region deployment configs.

Step 2 -- Analyze for Non-Compliance

Read each scoped file and assess regulatory compliance:

  1. Check data retention enforcement: Verify that data retention periods are defined, configurable, and enforced through automated cleanup.
  2. Assess deletion completeness: Verify that user deletion cascades through all storage layers (database, cache, logs, backups, third parties).
  3. Examine consent management: Check for valid consent collection, withdrawal mechanisms, and purpose-specific processing controls.
  4. Check cross-border transfers: Identify personal data flows to servers in non-adequate jurisdictions without transfer safeguards.
  5. Verify data subject rights: Confirm implementation of access, correction, deletion, portability, and restriction of processing endpoints.
  6. Assess age verification: Check for age gating where required (COPPA, GDPR Article 8).

At --depth deep or --depth expert, trace the complete data lifecycle and verify compliance at every stage from collection through deletion.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: NCMPL-NNN id, title, severity (based on regulatory penalty risk and affected data subjects), location with snippet, description of unmet regulatory requirement, impact (penalties and liability), fix (technical control implementation), and CWE/LINDDUN/regulatory article references.

Analysis Checklist

  1. Are data retention periods defined and enforced through automated cleanup jobs?
  2. Does user deletion cascade through all storage systems (DB, cache, logs, backups)?
  3. Is there a consent management system with collection, withdrawal, and purpose tracking?
  4. Are cross-border data transfers protected with adequate safeguards (SCCs, BCRs)?
  5. Are data subject rights implemented (access, export, deletion, restriction)?
  6. Does the system implement age verification for minors (COPPA, GDPR Article 8)?
  7. Is there a breach notification capability within 72 hours?
  8. Do hardcoded retention periods match the stated privacy policy?

What to Look For

  1. Missing data retention enforcement: No TTL, no cleanup jobs, no expiration.

- Grep: retention|ttl|time.to.live|cleanup|purge|expire|cron.*delete|scheduled.*removal

  1. Incomplete deletion: User deletion that misses storage layers.

- Grep: deleteUser|removeUser|eraseUser|destroyUser|delete.*account|purge.*user

  1. Missing consent withdrawal: No mechanism to revoke previously given consent.

- Grep: withdraw.*consent|revoke.*consent|opt.out|unsubscribe|consent.*revoke|removeConsent

  1. Cross-border data transfers: Data sent to non-adequate jurisdictions.

- Grep: region.*us-east|endpoint.*amazonaws|storage.*googleapis|azure.*region|cloudflare

  1. Missing age verification: No age gate or parental consent for minors.

- Grep: age.*verify|date.of.birth|dateOfBirth|minAge|age.*gate|parental.*consent|COPPA|under.*13

  1. Hardcoded retention periods: Retention values that may not match policy.

- Grep: days.*=.*365|retention.*=.*30|ttl.*=.*90|expire.*=.*\d+|keep.*days|max.*age.*=

  1. Missing processing restriction: No ability to pause processing on request.

- Grep: restrict.*processing|pause.*processing|freeze.*account|suspend.*data|processing.*hold

  1. Missing breach notification: No incident response or notification mechanism.

- Grep: breach.*notify|incident.*report|security.*alert|data.*breach|notify.*authority

Regulatory Mapping

RegulationProvisionRelevance
GDPR Art. 5-6Processing principles, lawful basesLawfulness, purpose limitation, data minimization
GDPR Art. 8Child's consentParental consent required for minors
GDPR Art. 17-18, 20Erasure, restriction, portabilityData subject rights implementation
GDPR Art. 28, 30Processor requirements, ROPADPAs and records of processing activities
GDPR Art. 33-35Breach notification, DPIA72-hour notification, impact assessments
GDPR Art. 44-49Cross-border transfersAdequacy decisions, SCCs, or BCRs required
CCPA 1798.105,.120Right to delete, opt-outConsumer deletion and sale opt-out
HIPAA 164.404,.530Breach notification, adminPHI safeguards and breach notification

Output Format

Use finding ID prefix NCMPL (e.g., NCMPL-001, NCMPL-002).

All findings follow the schema in ../../shared/schemas/findings.md with:

  • references.cwe: CWE-359 (Exposure of Private Information)
  • references.owasp: A04:2021 (Insecure Design -- missing regulatory controls)
  • metadata.tool: "non-compliance"
  • metadata.framework: "linddun"
  • metadata.category: "N2"

Summary table after all findings:

| Non-Compliance Pattern        | Critical | High | Medium | Low |
|-------------------------------|----------|------|--------|-----|
| Missing data retention        |          |      |        |     |
| Incomplete deletion           |          |      |        |     |
| Missing consent management    |          |      |        |     |
| Cross-border transfers        |          |      |        |     |
| Missing data subject rights   |          |      |        |     |
| Missing age verification      |          |      |        |     |
| Missing breach notification   |          |      |        |     |

Followed by: top 3 priorities, compliance posture summary, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算31

Claude

28.05%
按下载量换算25

Cursor

19.44%
按下载量换算17

Gemini CLI

9.45%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills