ワンクリックで
commit
Reflect on session, update rules, commit with jj.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Reflect on session, update rules, commit with jj.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Browser automation via agent-browser. Use when the user wants to browse, interact with, or inspect web pages.
Review agent-facing knowledge (rules, AGENTS.md, CONVENTIONS.md, README.md, domain docs) for staleness and accuracy. Use when the user asks to audit, clean, or prune knowledge. Also use when they're confused by a rule/doc that seems wrong — treat that as the starting point for a broader audit.
Adversarial design interview.
Ingest sources into the wiki.
Wiki health checks.
Query the personal wiki.
| name | commit |
| description | Reflect on session, update rules, commit with jj. |
Reflect on the session, persist findings as rules if warranted, then commit with jj.
Review the session. A finding earns a rule only if it's:
Derivability test: if an agent could learn it by reading one file, it's not a rule. Code is authoritative.
If nothing notable found, skip to Step 4.
Otherwise present findings to user: save all / pick / skip.
Read .claude/rules/ first. Append to existing file or create new <slug>.md:
---
description: Short description
---
- Finding 1
- Finding 2
For path-scoped rules, add globs: ["pattern/**/*.ext"].
Rules for rules:
AGENTS.md, not global rulesWhat does NOT belong: derivable implementation details, ephemeral fix recipes, anything already in AGENTS.md/README.md/CONVENTIONS.md, historical narrative.
jj fix
If errors, surface them. Fix and re-run, or skip if user says so.
Generate conventional commit message from jj diff. No shelling out to another LLM.
jj commit -m "<type>(<scope>): <description>"
The bash wrapper intercepts jj commit/jj ci to run pre-commit hooks.
For selective commits:
jj split --paths <specific-files>
jj commit -m "<message for selected files>"