Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

unawarenessunawareness 搜索

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

9

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • unawareness 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Unawareness Analysis (LINDDUN U)

Analyze source code for unawareness threats where users do not know how their personal data is collected, processed, or shared. Failing to inform users violates transparency and may invalidate consent. 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.

FlagUnawareness-Specific Behavior
--scopeDefault changed. Focuses on files containing data collection, consent management, third-party integrations, analytics, and user data endpoints.
--depth quickGrep patterns only: scan for analytics initialization, missing consent checks, and third-party scripts.
--depth standardFull code read, verify consent flows precede data collection, check for undisclosed data sharing.
--depth deepTrace all data collection points and verify each has corresponding consent and disclosure. Map undisclosed data flows.
--depth expertDeep + transparency gap analysis: compare actual data practices against typical privacy policy claims.
--severityFilter output. Data collection before consent is high; missing disclosure is medium.
--fixGenerate consent gates, privacy notice references, and data dashboard implementations.

Framework Context

LINDDUN U -- Unawareness

Unawareness occurs when data subjects do not know how their personal data is collected, processed, or shared. Read ../../shared/frameworks/linddun.md for the full framework reference including transparency obligations and consent requirements.

Privacy Property Violated: Transparency / Informed Consent | 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 collection handlers, consent management modules, third-party SDK integrations, analytics initialization, user preference storage, data export/deletion endpoints, and privacy policy references.
  4. Prioritize files containing: form submissions, registration flows, analytics setup, cookie management, third-party script loading, and user data APIs.

Step 2 -- Analyze for Unawareness Threats

Read each scoped file and assess whether users are informed about data practices:

  1. Check consent flow ordering: Verify that consent is obtained before data collection begins -- not after or simultaneously.
  2. Audit third-party integrations: Identify all third-party scripts, SDKs, and APIs that receive user data and verify disclosure.
  3. Examine analytics initialization: Check whether analytics and telemetry start before the user has consented.
  4. Look for data subject rights: Verify implementation of access, export, correction, and deletion endpoints.
  5. Assess consent granularity: Check whether consent is all-or-nothing or granular by purpose.

At --depth deep or --depth expert, map every data collection point and verify each has a corresponding consent mechanism and privacy policy disclosure.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: UNAWR-NNN id, title, severity (based on whether users are unaware of collection, sharing, or both), location with snippet, description of what data practice users are unaware of, impact (uninformed consent consequences), fix (consent gate, privacy notice, or user control), and CWE/LINDDUN references.

Analysis Checklist

  1. Is analytics or telemetry initialized before the user consents to tracking?
  2. Are there third-party scripts that receive user data without privacy policy disclosure?
  3. Does a consent management system exist with granular opt-in/opt-out controls?
  4. Can users access, export, and delete their personal data (data subject rights)?
  5. Is there consent version tracking to prove what each user agreed to?
  6. Are data collection purposes explained at the point of collection?
  7. Are cookies set before the user interacts with a cookie consent banner?
  8. Do dark patterns pressure users into accepting broader data collection?

What to Look For

  1. Analytics before consent: Tracking scripts initialized before consent check.

- Grep: gtag\(|analytics\.init|mixpanel\.init|segment\.load|amplitude\.init|posthog\.init

  1. Missing consent management: No consent storage or preference system.

- Grep: consent|cookie.consent|gdpr.consent|privacy.preference|opt.in|opt.out

  1. Third-party scripts without disclosure: External services receiving user data.

- Grep: <script.*src=.*third.party|import.*analytics|require.*tracking|facebook.*pixel|intercom

  1. Missing data export endpoint: No user data portability implementation.

- Grep: export.*data|download.*my.*data|data.portability|DSAR|subject.*access|getMyData

  1. Missing data deletion endpoint: No right-to-erasure implementation.

- Grep: delete.*account|erase.*data|remove.*user.*data|right.*forgotten|deleteMyData|purgeUser

  1. Cookies set before consent: Cookie writes that execute before consent flow.

- Grep: document\.cookie.*=|res\.cookie\(|setCookie|set-cookie|cookie\.set

  1. Hidden data collection: Data gathered without visible user-facing disclosure.

- Grep: navigator\.geolocation|getCurrentPosition|deviceId|device_id|collectTelemetry|beacon

  1. Missing consent versioning: No tracking of what consent version users agreed to.

- Grep: consent.*version|policy.*version|terms.*version|consent.*timestamp|consent.*date

Regulatory Mapping

RegulationProvisionRelevance
GDPR Art. 7Conditions for consentConsent must be freely given, specific, informed, unambiguous
GDPR Art. 12-15Transparency, right of accessClear information about processing; access to held data
GDPR Art. 17, 20Erasure, portabilityDeletion on request; export in portable format
CCPA 1798.100,.105,.120Know, delete, opt-outConsumer rights to know, delete, and opt out of sale
ePrivacy Directive Art. 5(3)Cookie consentPrior consent required for non-essential cookies

Output Format

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

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

  • references.cwe: CWE-1021 (Improper Restriction of Rendered UI Layers)
  • references.owasp: A04:2021 (Insecure Design -- missing privacy by design)
  • metadata.tool: "unawareness"
  • metadata.framework: "linddun"
  • metadata.category: "U"

Summary table after all findings:

| Unawareness Pattern          | Critical | High | Medium | Low |
|------------------------------|----------|------|--------|-----|
| Analytics before consent     |          |      |        |     |
| Missing consent management   |          |      |        |     |
| Undisclosed third-party data |          |      |        |     |
| Missing data export          |          |      |        |     |
| Missing data deletion        |          |      |        |     |
| Pre-consent cookies          |          |      |        |     |
| Hidden data collection       |          |      |        |     |

Followed by: top 3 priorities, transparency gap map, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.94%
按下载量换算30

Claude

31.19%
按下载量换算25

Cursor

16.95%
按下载量换算13

Gemini CLI

9.53%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills