From govctl
Executes fast-path workflow for trivial non-behavioral changes like typos, docs fixes, or cleanups using govctl work items, bash validation, and /commit. Invoke via /quick.
npx claudepluginhub govctl-org/govctl --plugin govctlThis skill is limited to using the following tools:
Execute the lightweight workflow for: `$ARGUMENTS`
Offers lightweight pipeline for small routine changes (≤3 files, low-risk, e.g., typos, version bumps, lint fixes) via leader-builder-tester-ship, skipping full workflow.
Executes trivial one-sentence tasks inline without subagents or planning. For quick fixes like typos, config changes, small refactors under 2 minutes.
Share bugs, ideas, or general feedback.
Execute the lightweight workflow for: $ARGUMENTS
Use this only for trivial, non-behavioral changes such as typos, comments, docs fixes, or small internal cleanup.
Outputs: Completed trivial non-behavioral change, updated work item memory, and validation evidence.
Do not use this for new behavior, RFC-governed work, or architecture decisions. If the task stops being trivial, switch to /gov.
govctl check --has-active is the gate before editing.govctl work show <WI-ID>.description: scope and whyjournal: what you did and what happenednotes: constraints or lessons future steps must remember/quick and switch to /gov./commit for raw VCS operations. Do not embed jj or git procedures here.govctl status
/commit will choose the raw VCS workflow if recording is needed.govctl work list pending
govctl work move <WI-ID> activegovctl work new --active "<concise-title>"Then:
govctl work show <WI-ID>
govctl work set <WI-ID> description "Brief scope: what and why"
govctl work add <WI-ID> acceptance_criteria "chore: govctl check passes"
govctl work add <WI-ID> acceptance_criteria "<category>: <specific observable outcome for this trivial change>"
The second criterion must be concrete and diff-specific. Examples:
docs: CLI example uses the current subcommand namechore: remove unused import from parser modulefix: typo in error message is correctedBefore editing:
govctl check --has-active
Make the change. If code comments reference governance artifacts, use [[artifact-id]].
Run the relevant validation:
govctl check
Update working memory as needed:
govctl work add <WI-ID> journal "Updated docs; govctl check passes"
govctl work add <WI-ID> notes "Do not use old command name in examples"
For very small changes, journal may be enough. Add notes only when there is something future steps should remember.
Record the implementation change with /commit, typically using docs(scope), chore(scope), or fix(scope) as appropriate.
govctl work tick <WI-ID> acceptance_criteria "govctl check passes" -s done
govctl work tick <WI-ID> acceptance_criteria "<specific observable outcome>" -s done
govctl work move <WI-ID> done
If work-item closure should be recorded separately, use /commit with chore(work): complete <WI-ID>.
BEGIN EXECUTION NOW.