소스 정보
- 저장소
- govctl-org/govctl
- 최근 소스 활동
- 2026년 7월 27일 12:17
- 감지된 SKILL.md 언어
- 영어
- 스타
- 242
- 포크
- 12
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/govctl-org/govctl --skill commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Write durable work items with scoped descriptions, testable categorized acceptance criteria, governing references, and risk-matched guards
Explore a governance design, resolve ambiguity, and draft RFC or ADR artifacts without implementation
Execute governed implementation with work-item traceability, RFC/ADR authority, risk-scoped verification, and closure
SOC 직업 분류 기준
SKILL.md 표시 중
| name | commit |
| description | Record a focused VCS commit with govctl validation and Work Item traceability |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep, TodoWrite |
| argument-hint | [optional commit message hint] |
Record the current coherent change without inventing governance work or rewriting unrelated files.
Detect Jujutsu first:
jj root
If it succeeds, use only jj. A colocated repository also contains .git, so
probing Git would select the wrong VCS. Only when jj root fails, use
git rev-parse --git-dir.
Treat the repository as governed when gov/config.toml or gov/ exists. In the
govctl repository itself, use cargo run --quiet -- for governance commands.
Inspect current changes with jj status and jj diff, or with the corresponding
Git commands after Git has been selected:
git status --short
git diff
git diff --cached
Use the selected VCS --help when additional syntax is needed.
govctl check fails.For governed repositories, run govctl check and inspect active Work Items with
govctl work list active. Use the matching active or completed item already
visible in task context or the diff; query govctl work list done only when that
context does not identify it. Spec-only changes may be committed without a Work
Item.
Before committing a matching active Work Item:
done only when all criteria and effective guards pass; andAn implementation Work Item may already be done before its final commit. Keep
the closure change and implementation in the same coherent commit.
Review the full diff, including generated and governance files. The commit must
represent one explainable outcome. Leave unrelated work untouched. If unrelated
work shares the current Jujutsu change, stop before describing it and use
jj split --help or user guidance to establish a coherent change boundary.
For Git, inspect the index before committing and stop if it already contains
unrelated staged changes; staging reviewed paths does not remove them.
Use:
<type>(<area>): <short summary>
Choose feat, fix, refactor, docs, test, or chore from the delivered
outcome, not from individual file types.
For Jujutsu, describe the current change and then create a new empty change:
jj describe -m "<type>(<area>): <summary>"
jj new
For Git, stage the reviewed change and commit it:
git add -- <reviewed-path>...
git commit -m "<type>(<area>): <summary>"
Use stdin for a multi-line commit message. Do not open an interactive VCS editor.
Report:
govctl check result for governed repositories; and