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

coding-fingerprint-wizard编码指纹向导

Agent Skill

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

总安装

256

周安装

11

GitHub Stars

公开资料未说明

下载量

90
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/michael-f-bryan/skills --skill coding-fingerprint-wizard

简介

coding-fingerprint-wizard 从示例项目提取开发者风格指纹,识别模块划分、验证策略与框架使用偏好。

  • 输出标准化 SKILL.md 供其他 Agent 复用,适用于团队协作与代码一致性维护。
  • 聚焦可识别决策而非格式化细节,反映作者对抽象边界、测试覆盖与文档习惯的真实选择。
  • 使用前需提供代表性代码片段,确保指纹提取准确匹配实际工程实践。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Coding Fingerprint Wizard

Create a reusable coding fingerprint from example projects.

The goal is not to infer formatter trivia or generic "clean code" advice. The goal is to identify the decisions that make a person's work recognisable: how they shape modules and repositories, where they validate, what they test, what they document, how they use frameworks, what they refuse to abstract, and which trade-offs they make repeatedly.

The output is a coding-fingerprint-[name]/SKILL.md file that another agent can apply when planning, writing, reviewing, or refactoring code.

When To Apply

Use this skill when the user wants to capture a person's:

  • coding style
  • engineering principles
  • repo-shaping preferences
  • architectural tendencies
  • testing and validation habits
  • abstraction thresholds

Do not use it for superficial style analysis, formatter imitation, or one-project hero worship.

Operating Model

Treat this as a strict diverge-converge workflow:

  1. Prepare: define the sample set and its caveats
  2. Discover: gather project-level evidence in parallel
  3. Define: converge on durable cross-project patterns
  4. Develop: challenge the draft fingerprint for overfitting and weak inference
  5. Deliver: generate the reusable fingerprint skill
  6. Validate: check whether another agent can actually use it

Do not collapse early. Breadth comes before synthesis, and challenge comes before canonisation.

Coordinator Default

The top-level agent is a coordinator.

  • Spawn sub-agents for detailed analysis.
  • Run parallel sub-agents where the work is independent.
  • Use references/analysis-worksheet.md as the source of truth for artefact contracts.
  • Decide when the evidence is broad enough to converge.
  • Resolve conflicts between worker outputs.

Do not let the coordinator do the full analysis itself unless it is reconciling disagreements, repairing a failed handoff, or validating the final result.

Sample Quality

Prefer 2-5 samples with real authorship signal.

Strong samples usually have:

  • meaningful code rather than generated scaffolding
  • tests, docs, commit history, or review context
  • similar era and responsibility level
  • code the subject would still endorse

Weak samples usually include:

  • heavily templated repositories
  • one-off experiments with little behavioural signal
  • team code with unclear authorship
  • repos dominated by framework defaults

If the sample set mixes very different contexts, record that explicitly and treat context-specific patterns as weaker evidence.

Read Order

  1. Start with SKILL.md.
  2. Read references/REFERENCE.md to choose the next file deliberately.
  3. Read references/analysis-worksheet.md before creating or checking any _working/coding-fingerprint/ artefact.
  4. Read references/fingerprint-template.md only when Phase 4 begins.
  5. Read references/example-coding-fingerprint.md only if the output shape is unclear or you are calibrating the result.

Phase Gates

Phase 0: Prepare

Create the sample inventory before any synthesis work. Record scope, samples, evidence quality, and caveats in _working/coding-fingerprint/ using the worksheet contract.

Phase 1: Discover

Run sub-agents in parallel.

Default shape:

  • one worker per project for project-profile-<slug>.md
  • optional lens workers for testing, architecture, review style, or error handling when the projects are large

The goal here is breadth. Collect evidence first; do not collapse to principles early.

Phase 2: Define

Run a synthesis worker after the project profiles exist.

Only promote a pattern if it appears across projects or is supported by strong surrounding evidence. Separate:

  • durable fingerprint traits
  • context-specific choices
  • contradictions
  • open questions

Treat repo-shaping as first-class output. A good fingerprint should help another agent choose module boundaries, repo layout, contract surfaces, CI defaults, and dependency posture.

Phase 3: Develop

Stress-test the draft fingerprint before it becomes canonical.

At minimum, challenge:

  • overfitting to one project
  • avoidances and things the author consistently does not do
  • reproducibility across independent analysers
  • predictive power on plausible implementation choices

Phase 4: Deliver

Generate the final fingerprint skill using references/fingerprint-template.md.

Save it as:

coding-fingerprint-[name]/
└── SKILL.md

Phase 5: Validate

Use a fresh sub-agent with access only to the generated fingerprint and a small representative task. Compare its choices back to the source projects.

Refine the fingerprint if it sounds generic, contradicts evidence, overfits one codebase, captures style without principles, or cannot be applied reliably by another agent.

Signal Quality

Prefer high-signal patterns over surface polish.

Strong signals:

  • where validation lives
  • how boundaries are drawn
  • how repositories are split once boundaries appear
  • what gets abstracted versus duplicated
  • what gets generated versus handwritten
  • how tests express intent
  • preferred error semantics
  • docs, CI, and drift-check habits around important contracts
  • naming choices that reveal domain modelling

Weak signals:

  • formatter output
  • language defaults with no visible choice
  • isolated clever code
  • framework boilerplate

Failure Modes

Avoid:

  • reducing the fingerprint to style-guide cliches
  • treating one impressive project as the whole person
  • confusing ecosystem constraints with personal preference
  • inferring principles without citing evidence
  • producing a fingerprint that another agent cannot operationalise
  • skipping the challenge phase because the synthesis looks right

Quality Bar

The final fingerprint is good only if it helps another agent answer questions like:

  • How would this person split the module?
  • How would this person shape the repository or workspace?
  • Where would they validate input?
  • What would they test first?
  • What docs, schemas, or CI checks would they expect to exist?
  • Which abstraction would they reject as premature?
  • What code smell would they flag immediately?

If the skill cannot answer those questions, the fingerprint is still too vague.

Additional Resources

Related Skills

  • Use working-docs when you need scratch notes outside this workflow
  • Use test-driven-development when validating the generated fingerprint against an implementation task

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.89%
按下载量换算30

Claude

29.99%
按下载量换算27

Cursor

18.49%
按下载量换算17

Gemini CLI

10.24%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/michael-f-bryan/skills --skill coding-fingerprint-wizard 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills