원클릭으로
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.