用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill explain命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Audit all lint-ignore suppressions for appropriateness and overuse
Pre-flight checklist — run high-signal review skills before a release
Discover functions that block the main thread, then micro-audit each for internal optimization opportunities
基于 SOC 职业分类
正在显示 SKILL.md
| name | explain |
| description | Explain a file, function, or system — architectural walkthrough using query tools |
| user-invocable | true |
| disable-model-invocation | false |
| argument-hint | [file, function, or system] |
The user wants to understand how something works. Not a review, not an audit — just teach. Build a concise architectural explanation using the query tools. Minimize context cost — don't load entire files when a query tool can answer.
Use the query tools to build understanding efficiently:
query_interface.ps1 <filename> — Start here. Shows a file's public functions and globals — the API surface without loading the implementation.query_function.ps1 <funcName> — Read a specific function body when you need implementation details.query_function_visibility.ps1 <funcName> — Who calls this function? Who does it call? Traces the call graph.query_global_ownership.ps1 <globalName> — Who reads/writes this global? Shows data flow across files.query_config.ps1 <keyword> — Find config settings related to the topic. -Usage <key> shows which files consume a setting.query_ipc.ps1 <msgType> — Trace IPC message flow between processes.query_timers.ps1 <keyword> — Find timers related to the topic.query_state.ps1 <State> [Event] — Trace state machine paths.Prefer interface queries over file reads. query_interface.ps1 gives you the shape of a file in a few lines. Only use query_function.ps1 when you need to explain how something works, not just what it does.
Structure the explanation as:
What this system/feature does and why it exists.
List the files with one-line descriptions of their role. Don't list every file in the project — only the ones directly involved.
How data moves through the system. Use a simple diagram if it helps:
Event → Producer → Store → Display List → Paint
The important functions and what they do — not an exhaustive list, just the ones needed to understand the system. Include file:function format so the user can navigate.
Non-obvious design choices that explain "why" not just "what." Reference comments in the code or rules files if they exist.
Any user-configurable settings that affect this system.