ソース情報
- リポジトリ
- cwilliams5/Alt-Tabby
- ソースの最終更新活動
- 2026年2月24日 04:23
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill explainコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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
| 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.