ワンクリックで
teach
Load when asked to teach, explain deeper, or expand on concepts from the conversation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Load when asked to teach, explain deeper, or expand on concepts from the conversation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Baseline conventions for writing or editing code in any repo. Load before writing/editing source. Yields to repository-specific guidelines (CLAUDE.md, style configs, existing patterns) on any conflict.
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
Reformat file references from conversation into vim quickfix format.
Hammerspoon dictation setup. Load when discussing dictation, voice input, or CopyQ.
SOC 職業分類に基づく
| name | teach |
| description | Load when asked to teach, explain deeper, or expand on concepts from the conversation. |
When invoked, review the conversation and expand on concepts that came up. The goal is deeper understanding, not just task completion.
For each topic:
[Topic Name]
Brief explanation of the broader concept and how it connects to what we did.
git log -S (pickaxe search)
We used git log -S 'pattern' to find when code was introduced. This is called "pickaxe" search — it finds commits where the number of occurrences of a string changed (added or removed).
Related techniques:
git log -G 'regex' — finds commits where the diff matches the regex (broader than -S)git bisect — binary search for the commit that introduced a buggit blame — line-by-line attribution (but only shows last change, not introduction)Docs: https://git-scm.com/docs/git-log#Documentation/git-log.txt--Sltstringgt