Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

walkthrough-process演练过程

Agent Skill

walkthrough-process 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jasonharmongit/jh-skills --skill walkthrough-process

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息,支持开发流程标准化。

  • 适用于开发类任务,可帮助整理代码变更和协作事项。
  • 通过 npx skills add 命令从 jasonharmongit/jh-skills 仓库安装。
  • 使用前应确认权限范围和维护状态,避免误操作影响主线分支。
  • walkthrough-process 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Walkthrough process (deep review)

Core intent

Use this skill to produce a high-context walkthrough for a reader who is new to the repo.

Default mode is process walkthrough:

  • explain how a named function/module/flow works
  • show where it sits in the larger system
  • trace entrypoint -> internal steps -> successful outcome

Branch-change walkthroughs are supported, but all change-specific instructions are isolated in Branch change mode (only when requested) near the end of this file.

Output file (required)

  1. Read current branch with git branch --show-current.
  2. Build branch_name by replacing / with - and stripping \: *? " < > |.
  3. Ensure directory exists: mkdir -p ~/.cursor/plans/walkthroughs.
  4. Write to ~/.cursor/plans/walkthroughs/<branch_name>.plan.md.
  5. In chat, reply with only the absolute path to the file.

Workflow (default: process walkthrough)

Use this workflow unless the user explicitly asks for branch/PR/diff walkthrough.

1) Identify focus and gather context

  1. Read the user request, attachments, and open files.
  2. Identify the focus:

- function (for example Foo.bar/2) - module - file - named process ("how does X flow work?")

  1. Get repo root and branch:

- git rev-parse --show-toplevel - git branch --show-current

  1. Open relevant full files.
  2. Map full function boundaries so references can link to complete functions.

2) Trace the end-to-end path

Build a path that answers both:

  • what this focus does locally
  • how it fits in the bigger picture

Trace in this order:

  1. A sensible entrypoint (or user-specified start)
  2. Routing/dispatch/plugs/callers that lead to the focus
  3. The focus itself
  4. Downstream calls and effects
  5. Successful outcome (response, persistence, side effect, or emitted event)

Include unchanged helpers when they are necessary to understand the chain. Do not skip hops that a new reader would need.

3) Draft the walkthrough document

The output file must use this exact top-level order:

  1. ## Executive summary
  2. ## Flow
  3. Step-numbered walkthrough sections
  4. Optional ## Non-execution file changes (only for branch change mode)

Do not add meta framing before or after these sections.

Required section rules (process walkthrough)

Executive summary

## Executive summary must be the first heading.

Keep it short and simple. Write a plain-language nutshell explanation of what the relevant process does. Do not turn this section into a checklist or detailed breakdown.

No Reference line in executive summary.

Flow diagrams

## Flow must be the second top-level heading.

Use one Mermaid flowchart TD per discrete process.

Numbering rules

  • Nodes use labels 1., 2., 3. (with trailing period)
  • Flow is top-to-bottom
  • Walkthrough prose sections must match step order exactly

Shape rules

  • Trapezoid node ([/... \]) = context/plumbing/explanatory step
  • Rectangle node ([...]) = focus step or a step directly needed to explain where the focus fits

Labels should be short and start with step number.

Step sections

After ## Flow, add ## walkthrough sections in diagram order.

Each section must:

  1. Include process name and Step N. in the heading
  2. Start immediately with **Reference:**
  3. Use ### Behavior subsection
  4. Explain top-to-bottom behavior with explicit line numbers
  5. Use *we* voice consistently

Reference rules

Always write references as Markdown links using [](). Do not wrap references in backticks.

Each reference must point to either:

  • one full function (def/defp/defmacro, all clauses, correct arity span), or
  • one whole file

Label format:

  • function: Module.function/arity
  • whole file: human filename or module name

Destination format:

  • function: absolute path with #L<start>-L<end>
  • whole file: absolute path only (no #L...)

If a section needs multiple references, list them under Reference as concise bullets.

Prose style rules

Under every ### Behavior:

  • write in execution order
  • anchor explanations to line numbers (line 17, lines 42-56)
  • explain branches, data shapes, and key side effects
  • prefer plain language and connective detail

Audience and tone

Assume the reader is new to the codebase.

On first mention of a framework/layer/folder, give a one-sentence plain-language explanation of what it is for.

Voice should feel like paired coding:

  • direct
  • practical
  • clear
  • not report-like

Default to *we*:

  • we load...
  • we pattern match...
  • we call...
  • we return...

Branch change mode (only when requested)

Use this section only when the user explicitly asks for branch/PR/change walkthrough. Keep the rest of the skill (executive summary, flow order, references, prose style) the same.

Trigger phrases

Examples:

  • "walk me through this branch"
  • "walk me through this PR"
  • "explain what changed"
  • "review these diffs"

Additional required steps

On top of the default workflow:

  1. Run git diff HEAD.
  2. Classify changed code on the runtime path vs non-execution files.
  3. Optionally resolve Linear issue context.
  4. In summary and steps, explain old-vs-new behavior where code changed.

Section subsection rules in branch mode

For each step section:

  • If referenced code materially changed in diff, use exactly:

1. ### Changes made 2. ### Old behavior 3. ### New behavior

  • If referenced code did not materially change, use:

- ### Behavior

When in doubt and the reference span changed, treat it as changed.

Non-execution file changes in branch mode

If changed files are not on runtime happy path:

  • add separate Mermaid block(s) under ## Flow with unconnected lettered rectangle nodes (a, b, c,...)
  • add final ## Non-execution file changes section with (a), (b), (c) prose in matching order

Skip this entire lettered flow/section for normal process walkthroughs.

Optional Linear workflow (branch mode only)

Use Linear only for branch walkthroughs.

If user provides issue id or URL:

  • fetch and use it as intent context

If user does not provide one, optional sequence:

  1. Match current branch against issue gitBranchName
  2. Fallback to issue id embedded in branch name
  3. Fallback heuristic match vs diff
  4. If unresolved, continue without ticket

Never block walkthrough on missing Linear.

Router localhost exclusion (branch mode only)

When interpreting git diff HEAD, ignore lib/surge_web/router.ex hunks that only add localhost to host: scope constraints.

Do not treat those as material product behavior changes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.31%
按下载量换算59

Claude

26.75%
按下载量换算42

Cursor

19.53%
按下载量换算31

Gemini CLI

9.53%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills