ワンクリックで
forget
Remove trigger phrases for a file or glob pattern from .claude/triggers.json
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Remove trigger phrases for a file or glob pattern from .claude/triggers.json
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Full operating manual for working in a codebase with the user. Use this skill at the start of any substantial task, when the user asks how to approach work, or when setting up a collaboration session. Covers the core craft principles, user interaction model, rule conflict resolution, code quality (broken windows), when to stop, and which rules apply for each task type. Read in full at every load. This skill defines the substrate the methodology operates from; partial reading or summarization produces no substrate. Use proactively — don't wait to be asked.
Self-eval the agent runs when it suspects memory-vs-recall drift — the failure mode where memory-citation substitutes for fresh receipt-fetching and pattern-copying outruns reachability analysis. Outputs a tiered recommendation (continue / slow down / refresh) backed by observable artifacts, not introspective claims alone. Invoke when: - You notice yourself reaching for "I remember from earlier" framings repeatedly - You catch yourself copying a pattern from a sibling module without walking conditions - You make the same class of mistake twice in close succession - User suggests fatigue ("how are you feeling?", "still sharp?") - End of long working stretch - User invokes explicitly via `/check-yo-self`
Quick reference for which rules govern the current work. Consult mid-task when starting a new task type, touching unfamiliar code, or unsure which constraints apply. Pairs with the-craft skill (full manual). Trigger on: "which rules apply", "what rules should I follow", "check constraints", or proactively when switching task type mid-session. Also use when any two rules appear to conflict — the always-on rules explain precedence.
Run cross-model comparison — scan files with haiku, sonnet, and opus study agents to see how model size affects trigger phrase generation.
Display all stored trigger phrases from .claude/triggers.json
Study files and generate semantic trigger phrases by spawning a researcher agent that samples model associations and finds convergent patterns. Supports model-specific triggers via --models flag.
| name | forget |
| description | Remove trigger phrases for a file or glob pattern from .claude/triggers.json |
| allowed-tools | Read, Edit |
Read .claude/triggers.json. If it doesn't exist or is empty, report "No triggers to forget."
Match the user's argument against stored file paths:
src/auth/* removes all auth triggers)Remove matching entries from the triggers object.
Write the updated file back.
Report what was removed. For v2 entries, list each model's phrase so the user sees what was discarded:
Removed 3 triggers:
- src/auth/middleware.ts
sonnet: jwt route authentication guard
opus: jwt bearer token route guard
- src/auth/session.ts
sonnet: session token management
- src/auth/roles.ts
sonnet: role based access control
For v1 (legacy) entries, list the single flat phrase.
If nothing matched, report "No triggers matched that pattern."
Suggest rerunning /total-recall:index if the index should be rebuilt without the removed entries.