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

linddunlinddun 搜索

Agent Skill

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

总安装

235

周安装

10

GitHub Stars

9

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 它适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 安装命令为 npx skills add https://github.com/florianbuetow/claude-code --skill linddun。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • linddun 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

LINDDUN Privacy Threat Dispatcher

Dispatch parallel subagents covering all 7 LINDDUN privacy threat categories. Each category runs as an independent subagent analyzing the scoped code for that class of privacy threat. LINDDUN fills the gap that security frameworks like STRIDE and OWASP leave: a system can be fully secure (encrypted, authenticated, authorized) and still violate user privacy. LINDDUN systematically identifies these privacy-specific threats.

Supported Flags

Read ../../shared/schemas/flags.md for the full flag specification. This dispatcher supports all cross-cutting flags.

FlagDispatcher-Specific Behavior
--scopePropagated to all subagents. Default changed.
--depthPropagated to all subagents. Default standard.
--severityApplied during consolidation to filter the merged output.
--formatApplied to final consolidated output.
--only L,I,D2Run only the listed categories. Accepts: L, I, N1, D1, D2, U, N2. Use N1 for Non-repudiation (privacy) and N2 for Non-compliance. Use D1 for Detectability and D2 for Data Disclosure.
--fixPropagated to subagents; each produces fix suggestions inline.
--quietPropagated to subagents; suppress explanations.
--explainPropagated to subagents; add regulatory context per finding.

Framework Reference

Read ../../shared/frameworks/linddun.md for the full LINDDUN framework specification including threat descriptions, code-level indicators, regulatory mappings (GDPR, CCPA, HIPAA), per-element applicability matrix, and cross-framework mappings to STRIDE/OWASP/CWE.

Pre-flight Relevance Check

Before dispatching subagents, scan the scoped file list to determine which categories are relevant. Unlike STRIDE (where all categories usually apply), LINDDUN relevance depends heavily on whether the codebase handles personal data.

First, confirm the codebase handles personal data. If there is no PII, no user accounts, no analytics, and no data collection, LINDDUN analysis is not applicable. Report this and exit.

CategorySkillRelevant WhenSkip When
L - LinkabilitylinkingShared user IDs across services, analytics tracking, cookies, cross-context identifiersSingle-service app with no analytics, no cross-context tracking
I - IdentifiabilityidentifyingUser data exports, quasi-identifiers (zip, age, gender), anonymized datasets, analytics pipelinesNo user data exports, no analytics, no anonymization attempts
N - Non-repudiationnon-repudiation-privacyAudit logs of sensitive actions (health, legal, political), digital signatures on sensitive transactionsNo sensitive action logging, no compliance-mandated audit trails
D - DetectabilitydetectingDifferent error codes for existing vs non-existing resources, timing side channels, user enumerationNo user-facing lookup endpoints, no existence checks
D - Data Disclosuredata-disclosurePII in logs, third-party SDKs, API responses with excess fields, cross-border data flowsNo PII handling, no third-party integrations, no logging of personal data
U - UnawarenessunawarenessData collection, consent flows, privacy policies, analytics, third-party scripts, telemetryNo data collection, no user-facing features
N - Non-compliancenon-complianceRegulatory requirements (GDPR, CCPA, HIPAA), data retention, deletion endpoints, cross-border transfersNo regulated data, no applicable privacy regulations

How to check: Use Grep on the scoped files to detect:

  • PII patterns: email, phone, ssn, address, birthdate, name
  • User data: user_id, profile, account, preferences
  • Analytics: analytics, tracking, telemetry, pixel, gtag
  • Third-party: stripe, segment, mixpanel, google-analytics, facebook
  • Consent: consent, gdpr, ccpa, cookie, opt-in, opt-out
  • Data export: export, download, portability

If --only is specified, skip the relevance check and dispatch only the listed categories.

Dispatch Category Subagents

CRITICAL: All Task tool calls MUST appear in the SAME response message. This is what triggers parallel execution. If you emit them across separate messages, they run sequentially and waste time.

Dispatch Table

LetterSubagent SkillFinding PrefixPrivacy PropertyFocus
Lskills/linking/SKILL.mdLINKUnlinkabilityCross-service correlation, shared identifiers, behavioral tracking
Iskills/identifying/SKILL.mdIDENTAnonymityRe-identification risks, quasi-identifiers, insufficient anonymization
N1skills/non-repudiation-privacy/SKILL.mdNREPPlausible DeniabilityForced accountability for sensitive actions, irrefutable audit trails
D1skills/detecting/SKILL.mdDTCTUndetectabilityExistence inference, enumeration, timing side channels
D2skills/data-disclosure/SKILL.mdDDSCLConfidentiality (Personal Data)PII in logs, over-collection, third-party data sharing
Uskills/unawareness/SKILL.mdUNAWRTransparencyMissing consent, no data access/deletion, hidden data flows
N2skills/non-compliance/SKILL.mdNCMPLRegulatory ComplianceGDPR/CCPA/HIPAA violations, missing DPIA, data retention failures

Subagent Prompt Template

Each subagent Task call must include a FULLY self-contained prompt. Subagents get their own isolated context window and cannot see the main conversation.

Each subagent prompt must contain:

  1. The concrete file list to analyze (resolved from scope, filtered for relevance).
  2. The absolute path to the category SKILL.md to read and follow.
  3. The flags to apply (--scope, --depth, --severity, --format, etc.).
  4. The findings schema path (shared/schemas/findings.md) for output format.
  5. An instruction to return findings only -- no summary, no cross-category commentary. The dispatcher handles consolidation.
Analyze the following files for LINDDUN {LETTER} ({CATEGORY_NAME}) privacy threats:

FILES:
{FILE_LIST}

STEP 1: Read the skill definition at:
{ABSOLUTE_PATH_TO_PLUGIN}/skills/{SKILL_NAME}/SKILL.md

STEP 2: Follow the workflow defined in that skill to analyze the listed files.
Focus on threats to the {PRIVACY_PROPERTY} privacy property.

STEP 3: Read the findings schema at:
{ABSOLUTE_PATH_TO_PLUGIN}/shared/schemas/findings.md

STEP 4: Output findings in the schema format. Set metadata.framework to "linddun"
and metadata.category to "{LETTER_CODE}".

FLAGS: --scope {SCOPE} --depth {DEPTH} --severity {SEVERITY}

IMPORTANT: Return ONLY the findings list. Do NOT produce a summary or
cross-category analysis. The dispatcher handles consolidation.

Launching

Emit one Task tool call per relevant category, ALL in a single response:

  • subagent_type: "general-purpose"
  • description: "LINDDUN {LETTER} - {CATEGORY_NAME}"
  • prompt: The fully self-contained prompt above, filled in for this category.

Do NOT emit Task calls one at a time. Do NOT wait between dispatches.

Consolidation

After ALL subagents return their results:

1. Merge Findings

Collect all findings from all subagent responses into a single list.

2. Deduplicate

Two findings are duplicates if they share the same location.file AND location.line (or overlapping line ranges). When duplicates exist:

  • Keep the finding with the higher severity.
  • Merge LINDDUN category tags.
  • Note the duplicate in the retained finding's description.

3. Regulatory Mapping

For each finding, map to applicable regulatory articles:

  • GDPR: Map to specific articles (Art. 5, 6, 7, 12-14, 15, 17, 20, 25, 30, 32, 35, 44-49).
  • CCPA: Map to specific sections (1798.100, 1798.105, 1798.120, 1798.140, 1798.150).
  • HIPAA: Map where health data is involved. Use the regulatory mapping tables in linddun.md for guidance.

4. Cross-Reference

For each finding, populate cross-framework references:

  • references.cwe: Map to CWE identifier (e.g., CWE-359, CWE-200, CWE-532).
  • references.owasp: Map to OWASP Top 10 category where applicable.
  • references.stride: Map to closest STRIDE category (see LINDDUN-to-STRIDE table).

5. Rank by Severity

Sort findings: critical > high > medium > low. Within the same severity, consider regulatory impact (GDPR violations rank higher than best-practice recommendations).

6. Present Results

Output the consolidated report in the requested --format. Include:

  • Summary: categories checked, total findings, severity breakdown.
  • Regulatory impact summary: which regulations are implicated.
  • Per-element privacy matrix (similar to STRIDE per-element analysis but for LINDDUN categories).
  • Findings list in severity order with regulatory article citations.
  • Data flow privacy assessment: where personal data crosses trust boundaries.

Expert Mode

If --depth expert is set, after consolidation, launch adversarial privacy agents to simulate privacy attacks (re-identification, linkage, inference). Each agent receives the consolidated findings and attempts to demonstrate how an adversary could exploit privacy weaknesses to identify, track, or profile data subjects.

Red team output is appended to findings with prefix RT and metadata.tool set to "red-team".

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.67%
按下载量换算29

Claude

32.12%
按下载量换算26

Cursor

18.96%
按下载量换算16

Gemini CLI

10.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills