ワンクリックで
chore
Lightweight workflow for non-code changes — rules, config, docs, CI, dependency bumps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Lightweight workflow for non-code changes — rules, config, docs, CI, dependency bumps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
Create a pull request with cleanup, fmt, and test gates
Safely restructure code in an isolated git worktree with test-preserved, incremental transformations
Start a new feature in an isolated git worktree with proportional verification
Diagnose and fix a bug in an isolated git worktree with reproduce-first, test-first methodology
| name | chore |
| description | Lightweight workflow for non-code changes — rules, config, docs, CI, dependency bumps |
| disable-model-invocation | true |
Make a non-code change.
Change description: $ARGUMENTS
Follow these phases in order. Each phase has a gate — do not proceed until the gate is satisfied.
git checkout maingit pull origin maingit checkout -b chore/<name>
git checkout chore/<name>) or choose a new name.git branch --show-currentGate: On the correct chore/<name> branch, based on latest main.
/agent-dashboard:feature or /agent-dashboard:fix instead. If a rule or config change introduces new agent behavior, consider /agent-dashboard:feature for planning and review.Gate: The scope is clear and limited to non-code changes.
make test/make test-fast when available./agent-dashboard:feature if implementation-level validation is needed.Gate: Changes are applied. The relevant verification is complete and named.
Review all changes for correctness and convention adherence. Apply all project rules and conventions that are in your context.
Gate: No issues remain.
Commit with a conventional commit message. Use the appropriate type:
| Type | When |
|---|---|
chore | Dependency bumps, version bumps, tooling config |
docs | Documentation, READMEs, comments |
ci | CI/CD pipeline changes |
build | Build system, Makefile changes |
Open the PR by invoking /agent-dashboard:pr. That skill owns conditional cleanup/formatting, final test gating when available, push, and gh pr create. Do not call gh pr create directly — a pr-skill-gate hook will block it.
Gate: Clean commit with conventional message. PR opened via /agent-dashboard:pr.