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

code-trace代码跟踪

Agent Skill

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

总安装

588

周安装

24

GitHub Stars

1

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laststance/skills --skill code-trace

简介

用于交互式追踪代码执行路径,类似调试器步进。code-trace 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 聚焦应用层代码,跳过第三方库的深层内部实现。
  • 提供每一步的丰富解释,帮助理解实际业务逻辑。
  • 安装前建议确认权限范围、维护状态及是否触发文件读写操作。
  • 安装方式:github,通过 npx skills add 命令添加指定仓库技能。

SKILL.md

<essential_principles>

How Code Tracing Works

This skill traces code execution paths interactively, letting you navigate through the codebase like a debugger stepping through code - but with rich explanations at each step.

Principle 1: Application Boundary

Trace ONLY application code. External dependencies (node_modules, vendor/) receive:

  • A summary of what they do
  • Link to official documentation
  • NOT deep-traced into their internals

Why: External libraries can be 100K+ lines. Tracing into them wastes context and obscures the actual application logic. The goal is understanding YOUR code, not library internals.

Principle 2: Interactive Navigation

Every conditional branch becomes a user choice:

Code PatternPresentation
if/else"Path A: condition true" vs "Path B: condition false"
switchOne choice per case
try/catch"Success path" vs "Error path"
async/awaitOption to trace into called functions

Why: Linear traces miss important paths. Interactive navigation lets users explore exactly what they're interested in.

Principle 3: Progressive Explanation

Each step includes:

  1. Location: File + line range + function name
  2. Code: Full source (no abbreviation)
  3. What: Brief summary of what the code does
  4. Why: Why this step exists in the flow
  5. Next: What happens next (or choices if branching)

Use thinking markers (🤔🎯⚡📊💡🔐) for clarity.

Principle 4: State Persistence

Trace state is stored in Serena Memory to enable:

  • Resuming interrupted traces
  • Backtracking to previous decision points
  • Saving completed traces for future reference </essential_principles>
  1. Trace a request flow - Follow HTTP request from receipt to response
  2. Trace a function call - Follow a specific function through the codebase
  3. Resume previous trace - Continue from where you left off

Please provide additional context:

  • For request tracing: Which endpoint? (e.g., "POST /api/users")
  • For function tracing: Which function? (e.g., "validateUser" or "src/utils/auth.ts:checkToken")

Wait for response before proceeding.

Before Starting Any Workflow

  1. Detect Framework: Run scripts/detect-framework.sh to identify:

- Express, Next.js (App/Pages), Fastify, Hono, NestJS, Koa, or generic

  1. Load Framework Patterns: Read references/framework-patterns.md section for detected framework
  2. Prepare Serena: Ensure Serena MCP is available for:

- find_symbol() - Locate functions/handlers - find_referencing_symbols() - Find callers - get_symbols_overview() - Map module structure - write_memory() / read_memory() - State persistence

After determining intent and framework, read the appropriate workflow and follow it.

<reference_index>

References

All in references/:

FileContent
framework-patterns.mdEntry point detection and request flow for Express, Next.js, Fastify, etc.
control-flow-types.mdHow to present if/switch/try/loops as interactive choices
explanation-style.mdThinking markers, step format, summary format
mermaid-templates.mdMermaid.js flowchart generation from trace path_history
</reference_index>

<workflows_index>

Workflows

All in workflows/:

WorkflowPurpose
trace-request.mdTrace HTTP request from entry to response
trace-function.mdTrace a specific function's call chain
</workflows_index>

<scripts_index>

Scripts

ScriptPurpose
detect-framework.shAuto-detect project framework from package.json

Usage:

./scripts/detect-framework.sh /path/to/project
# Output: express | nextjs-app | nextjs-pages | fastify | hono | nestjs | koa | generic

</scripts_index>

<success_criteria> A successful code trace:

  • Entry point correctly identified and explained
  • Framework detected and appropriate patterns applied
  • At least one branch point presented as interactive choice
  • External dependencies summarized (not deep-traced)
  • User navigated to terminal point OR chose to stop
  • Path history shown in ASCII flowchart format
  • Mermaid flowchart offered as output option (if trace completed)
  • Key insights collected and displayed
  • Trace state available for resume (if user chose to save) </success_criteria>

Will:

  • Trace application code with full source display
  • Explain each step with thinking markers
  • Present conditional branches as interactive choices
  • Summarize external dependencies at the boundary
  • Persist trace state for resume capability

Will Not:

  • Deep-trace into node_modules or external libraries
  • Execute or run the code (read-only analysis)
  • Modify any source files
  • Make assumptions about runtime values (present all branches)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.44%
按下载量换算65

Claude

31.05%
按下载量换算59

Cursor

16.83%
按下载量换算32

Gemini CLI

7.96%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills