用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Digital-Threads/token-pilot --skill guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | guide |
| description | Show a quick-reference guide for all Token Pilot tools — when to use each one |
| command | guide |
| user_invocable | true |
| effort | low |
| disallowed-tools | ["Bash","Edit","MultiEdit","Write","Task"] |
Display the following Token Pilot tool reference to the user. Show it exactly as formatted below.
| Goal | Tool |
|---|---|
| Explore a file's structure | smart_read(path) |
| Read one function or class | read_symbol(path, symbol="ClassName.method") |
| Read a specific line range | read_range(path, start, end) |
| Get edit-ready exact text | read_for_edit(path, symbol="name") |
| Read many files at once | smart_read_many([paths]) |
| Goal | Tool |
|---|---|
| First look at a new project | project_overview() |
| All symbols in a file | outline(path) |
| Deep dive on one area | explore_area(path) |
| Related files (imports, tests) | related_files(path) |
| Module deps + public API | module_info(module_path) |
| Goal | Tool |
|---|---|
| Where a symbol is used | find_usages(symbol) |
| Symbols with no references | find_unused(path) |
| Goal | Tool |
|---|---|
| Verify your edit is correct | read_diff(path) |
| Goal | Tool |
|---|---|
| Understand recent commits | smart_log() |
| Review a diff structurally | smart_diff(base, head) |
| Parse test output | test_summary(command) |
| Goal | Tool |
|---|---|
| Find TODOs, deprecated, patterns | code_audit(path) |
| Goal | Tool |
|---|---|
| Token savings this session | session_analytics() |
Workflow: project_overview → explore_area → smart_read → read_symbol → read_for_edit → edit → read_diff
Tip: smart_read on a file you've already read returns a compact reminder (dedup) — no wasted tokens.