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

linkinglinking 搜索

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

9

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

该技能用于基于关键词的信息检索与筛选。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在开发或研究场景中快速定位相关资源。
  • 可根据任务线索或技术栈匹配候选结果集合。
  • 使用前应确认是否涉及敏感文档访问或权限控制要求。
  • linking 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Linkability Analysis (LINDDUN L)

Analyze source code for linkability threats where separate data points, actions, or records can be correlated to the same individual across contexts, services, or time periods -- even when the system is fully encrypted and authenticated.

Supported Flags

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

FlagLinkability-Specific Behavior
--scopeDefault changed. Focuses on files containing user identifiers, tracking logic, analytics events, and cross-service communication.
--depth quickGrep patterns only: scan for shared IDs, tracking cookies, and fingerprinting code.
--depth standardFull code read of scoped files, analyze identifier propagation within each file.
--depth deepTrace identifier propagation across services, databases, and API boundaries. Map full correlation graph.
--depth expertDeep + adversarial linkage simulation: model what an attacker can correlate given available data.
--severityFilter output. Linkability findings range from medium to critical depending on data sensitivity.
--fixGenerate pseudonymization and identifier isolation replacements.

Framework Context

LINDDUN L -- Linkability

Linkability occurs when an adversary can determine that two or more items of interest (data records, messages, actions, users) are related, even without knowing the identity of the data subject. Read ../../shared/frameworks/linddun.md for the full LINDDUN framework reference including cross-framework mappings and regulatory context.

Privacy Property Violated: Unlinkability

STRIDE Mapping: Information Disclosure (linkability extends beyond data access to correlation analysis across contexts)

Workflow

Step 1 -- Determine Scope

  1. Parse --scope flag (default: changed).
  2. Resolve to a concrete file list.
  3. Filter to relevant files: source code, configuration, database schemas, API definitions, analytics integrations, and cookie/session management.
  4. Prioritize files containing: user ID references, session management, analytics event emission, cross-service API calls, database joins across user activity tables.

Step 2 -- Analyze for Linkability Patterns

Read each scoped file and check for patterns that enable cross-context correlation of user activity:

  1. Identify shared identifiers: Find user IDs, email addresses, device IDs, or tokens that propagate across service boundaries.
  2. Trace identifier scope: Determine whether identifiers are context-specific (scoped to one service) or global (shared across services).
  3. Check analytics events: Look for events that combine user identity with behavioral data.
  4. Examine database schemas: Look for foreign keys and joins that link user activity across tables or services.
  5. Assess cookie and session scope: Check whether tracking cookies persist across domains or contexts.

At --depth deep or --depth expert, map the full identifier propagation graph across the codebase and model what correlations an adversary can derive.

Step 3 -- Report Findings

Output findings per ../../shared/schemas/findings.md. Each finding needs: LINK-NNN id, title, severity (based on correlation potential and data sensitivity), location with snippet, description of what can be linked, impact (profile an adversary can build), fix (pseudonymization or isolation), and CWE/LINDDUN references.

Analysis Checklist

  1. Do different microservices share the same user ID without pseudonymization?
  2. Are there cookies or tokens that persist across different application contexts?
  3. Do analytics events combine user identity with detailed behavioral data?
  4. Can database tables be joined to correlate user activity across features?
  5. Are device fingerprints (user agent, screen resolution, fonts) collected?
  6. Do API responses include identifiers that allow cross-endpoint correlation?
  7. Are session identifiers rotated, or do they persist across long time periods?
  8. Can pseudonymized datasets be re-linked through common timestamps or IPs?

What to Look For

  1. Global user IDs across services: userId, user_id, accountId passed between microservices without per-service pseudonyms.

- Grep: userId|user_id|accountId|account_id in API call payloads and headers

  1. Cross-domain tracking cookies: Cookies with broad domain scope or third-party cookie setting.

- Grep: document\.cookie|Set-Cookie|domain=\.|SameSite=None

  1. Device fingerprinting: Collection of browser or device attributes for identification.

- Grep: navigator\.userAgent|screen\.width|screen\.height|navigator\.plugins|canvas\.toDataURL|fingerprint

  1. Analytics with user identity: Events that include both user ID and behavior.

- Grep: analytics\.track|analytics\.identify|gtag\(|mixpanel\.track|segment\.track

  1. Database joins on user tables: Queries that correlate user activity across domains.

- Grep: JOIN.*user|JOIN.*account|INNER JOIN.*activity|LEFT JOIN.*session

  1. Persistent identifiers in URLs: User IDs, email addresses, or tokens in URL paths or query parameters that appear in logs and referrer headers.

- Grep: req\.params\.userId|req\.query\.email|/users/\$\{|/api/.*userId=

  1. Log correlation: Log entries that combine user identity with action metadata.

- Grep: logger\.\w+\(.*userId|log\.\w+\(.*user_id|console\.log\(.*email

Regulatory Mapping

RegulationProvisionRelevance
GDPR Art. 5(1)(c)Data minimizationShared identifiers collect more linkable data than necessary
GDPR Art. 25Data protection by designPseudonymization required where feasible
GDPR Recital 26Identifiability testLinkable data may constitute personal data
CCPA 1798.140(o)Personal information definitionIncludes data capable of being linked to a consumer
HIPAA Safe HarborDe-identification standardLinked health data is not de-identified

Output Format

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

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

  • references.cwe: CWE-359 or CWE-212 as appropriate
  • references.owasp: A01:2021 (Broken Access Control -- cross-context leakage)
  • metadata.tool: "linking"
  • metadata.framework: "linddun"
  • metadata.category: "L"

Summary table after all findings:

| Linkability Pattern    | Critical | High | Medium | Low |
|------------------------|----------|------|--------|-----|
| Cross-service IDs      |          |      |        |     |
| Tracking cookies       |          |      |        |     |
| Device fingerprinting  |          |      |        |     |
| Analytics correlation  |          |      |        |     |
| Database joins         |          |      |        |     |
| Log correlation        |          |      |        |     |

Followed by: top 3 priorities, data flow correlation map, and overall assessment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.61%
按下载量换算28

Claude

29.58%
按下载量换算23

Cursor

18.43%
按下载量换算14

Gemini CLI

9.43%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills