Add verify skill and cut v0.9.0 release#27
Merged
Merged
Conversation
Adds a runnable skill that operationalizes the agentic-workflow rule's "verify before claiming done": it discovers the project's own build and test commands, runs them, observes the actual output, and reports the result honestly rather than asserting success from inspection. Unlike the read-only starter skills, verify includes Bash so it can actually run the checks. Skips checks the project doesn't have instead of inventing commands. - internal/starter/skills/verify/SKILL.md: new skill - skills_test.go: register verify in expectation list - README.md: 3 -> 4 starter skills - CHANGELOG.md: entry under [Unreleased]
pike00
requested changes
Jun 8, 2026
pike00
left a comment
Collaborator
There was a problem hiding this comment.
Looks good, 2 minor points
Co-authored-by: Will Pike <6687499+pike00@users.noreply.github.com>
…G) for commands A project's canonical build/test commands are often documented in prose, not just in config files. Direct the skill to read those and treat a documented command as authoritative.
pike00
approved these changes
Jun 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the
verifystarter skill and stamps the v0.9.0 release, gathering all unreleased starter-content changes since v0.8.0.verify skill
The agentic-workflow rule (#25) says verify before claiming done. This adds the operational counterpart: a runnable
verifyskill that actually does it. It discovers the project's own build/test commands (package.json scripts, Makefile,go test ./..., Cargo, CI config — not guesses), runs them, observes the real output, and reports honestly — pass/fail with actual output, plus what it couldn't verify. Unlike the read-only starter skills it includes Bash so it can run the checks, and it skips a check the project doesn't have rather than inventing one.v0.9.0 release
Minor bump — all changes are new backward-compatible starter content. The
[Unreleased]entries are moved into a dated0.9.0section with updated compare links. Captures:verifystarter skill (this PR)(#24 was docs-only and isn't a changelog feature entry.)
Changes
internal/starter/skills/verify/SKILL.md— new skill (args:target,checks)internal/starter/skills_test.go— registerverifyREADME.md— 3 → 4 starter skillsCHANGELOG.md— verify entry + stamp0.9.0(2026-06-08) with compare linksTesting
go build ./...cleango test ./...passesParse, renders viaConvertToClaude, Bash in allowed-tools, 2 args)Release step (after merge)
Releases fire on a
v*tag (goreleaser → GitHub release + homebrew tap). Push the tag once merged:Deferred
The enforcement layer (syncing a
settings.jsonwith hooks/permissions; net-new JSON merge) remains deferred for a separate effort.