Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{
"name": "govctl",
"description": "Governed workflow skills, reviewer agents, and enforcement hooks for govctl",
"version": "0.8.2",
"version": "0.8.3",
"source": "./.claude",
"author": {
"name": "govctl-org"
Expand Down
2 changes: 1 addition & 1 deletion .claude/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "govctl",
"version": "0.8.2",
"version": "0.8.3",
"description": "Governed workflow skills, reviewer agents, and enforcement hooks for govctl"
}
4 changes: 3 additions & 1 deletion .claude/skills/commit/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ Commit changes using the project's version control system, with govctl-aware che

### Step 1: Detect VCS

Run `jj root` first. If succeeds, use **Jujutsu**. If fails, run `git rev-parse --git-dir`. If succeeds, use **Git**. If both fail, stop and inform user.
Run `jj root` first. If it succeeds, use **Jujutsu** — do NOT also check git. A jj-git colocated repo has both `.jj/` and `.git/`, so checking git would also succeed and cause you to use the wrong VCS. Only if `jj root` fails, run `git rev-parse --git-dir`. If that succeeds, use **Git**. If both fail, stop and inform user.

**CRITICAL:** Do NOT run `jj root` and `git rev-parse` in parallel. Run `jj root` first, and only proceed to git detection if jj is not found.

### Step 2: Govctl Pre-Commit Checks

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.3] - 2026-04-13

### Added

- Implement govctl self-update command with --check flag (WI-2026-04-13-001)
- Add cargo-binstall metadata to Cargo.toml (WI-2026-04-13-001)

## [0.8.2] - 2026-04-10

### Added
Expand Down
Loading
Loading