Skip to content

Repository files navigation

gz-skills

gz-skills is the canonical library for portable GovZero agent skills: workflows that should behave consistently across projects without belonging to one project's architecture, runtime, vendor, or agent harness.

The catalog contains sixteen workflows distilled primarily from gzkit, with corroborating implementations from other tvproductions repositories:

  • gzs-agent-context-diet
  • gzs-change-review
  • gzs-cross-platform-python
  • gzs-dependency-risk-audit
  • gzs-git-sync
  • gzs-hexagonal-architecture-audit
  • gzs-intent-audit
  • gzs-plan-audit
  • gzs-quality-gate
  • gzs-repository-hygiene
  • gzs-root-cause-debugging
  • gzs-router
  • gzs-session-handoff
  • gzs-tech-debt-review
  • gzs-test-driven-change
  • gzs-update-dependencies

The extraction evidence and the broader review are in docs/origins.md and docs/catalog-audit-2026-08-23.md. The packaging comparison with Superpowers and Matt Pocock is in docs/research/skills-library-packaging-methodology.md. The preserved raw-name summary and user-owned candidate ledger are under docs/inventory/, and the one-by-one review queue is docs/review/README.md. Release-facing changes are maintained in CHANGELOG.md. The first immutable bundle release is v0.2.0; the synchronized manifests now describe the unreleased 0.3.0 catalog. The catalog remains in the SemVer 0.x development series while the one-by-one behavioral review matures toward 1.0.0.

Latest catalog expansion

The 0.3.0 development line promotes gzs-change-review, gzs-dependency-risk-audit, and gzs-test-driven-change. They remain horizontal disciplines beneath project-owned workflows, not replacements for gzkit lifecycle orchestration. Their contracts, boundaries, and promotion record are described in docs/roadmap.md.

Boundary

This repository owns reusable workflow intent, completion criteria, safety invariants, optional references, and deterministic helpers that travel with a skill. It does not own a consuming project's commands, quality policy, branch policy, or generated harness mirrors.

The gzs- prefix identifies skills whose canonical source and release contract belong to this repository. Project-local skills use a project or domain prefix; third-party skills retain their upstream names.

  • gzkit continues to own gz commands, governance events, attestation, and control-surface synchronization.
  • gz-skills owns portable horizontal disciplines that remain useful without gzkit; it does not provide a competing project lifecycle.
  • An active project-owned workflow takes precedence. It may compose a gzs-* primitive, but the primitive must not bypass its stages, gates, state, locks, receipts, or human decisions.
  • A consuming project owns its AGENTS.md, verification commands, and any local adaptation of a skill.
  • .agents/skills, .claude/skills, .codex/skills, .github/skills, and .gzkit/skills are installation surfaces, not authored copies here.

Install

Choose one of the two supported contracts for a given agent scope. Installing the same skill through both creates duplicate discovery. See docs/packaging.md for ownership and release details.

1. Native managed plugins (preferred)

The repository contains native Codex, Claude Code, and OpenCode plugin adapters over the same canonical skills/ tree.

  • Codex installs the managed bundle from its plugin marketplace after the gz-skills package is published there.
  • Claude Code can use the repository marketplace:
/plugin marketplace add tvproductions/gz-skills
/plugin install gz-skills@gz-skills
  • OpenCode can install the git-backed package through its own plugin manager:
{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    "gz-skills@git+https://github.com/tvproductions/gz-skills.git#v0.2.0"
  ]
}

Restart OpenCode after changing its configuration. OpenCode's managed runtime loads the package-local adapter and registers the canonical skills/ tree; no Node command or project dependency is required.

A managed plugin is a read-only subscription to the released bundle. Do not edit its installed cache; update it through the harness's plugin manager.

2. Python vendoring and fleet administration

Use the Python CLI when a repository must carry pinned, reviewable skill snapshots. The consumer needs uv, not Node.js. Install directly from an immutable release tag:

uvx --from git+https://github.com/tvproductions/gz-skills.git@v0.2.0 `
  gz-skills install `
  --project C:\path\to\project `
  gzs-git-sync gzs-quality-gate

The default agents surface writes to .agents/skills. Use --all for the complete catalog. Every install writes gz-skills.lock.json with source identity, independent skill version, complete tree hash, and installed path.

For development from this checkout, run the same CLI through uv:

uv run gz-skills list
uv run gz-skills install `
  --project C:\path\to\project `
  gzs-git-sync gzs-quality-gate

Other supported surfaces are claude, codex, github, and gzkit; --target accepts an exact skills directory. Prefer native plugins for Codex, Claude Code, and OpenCode unless the repository specifically requires checked-in snapshots.

Update and propagate

Preview one consumer:

uvx --from git+https://github.com/tvproductions/gz-skills.git@v0.2.0 `
  gz-skills update --lock C:\path\to\project\gz-skills.lock.json

Apply safe updates:

uvx --from git+https://github.com/tvproductions/gz-skills.git@v0.2.0 `
  gz-skills update `
  --lock C:\path\to\project\gz-skills.lock.json `
  --apply

Preview or apply every consumer below a repository collection:

uvx --from git+https://github.com/tvproductions/gz-skills.git@v0.2.0 `
  gz-skills propagate C:\Users\Jeff\source\repos
uvx --from git+https://github.com/tvproductions/gz-skills.git@v0.2.0 `
  gz-skills propagate C:\Users\Jeff\source\repos --apply

An update replaces only an installed tree that still matches its prior lock. Select the release tag whose snapshots should become available before applying an update. Missing or locally edited copies block propagation and require reconciliation; they are never silently overwritten. See docs/provenance.md for the full contract.

Layout

gz-skills/
|-- skills/                 # canonical Agent Skills
|-- src/gz_skills/          # installer and propagation CLI
|-- scripts/                # maintainer inventory tooling
|-- schemas/                # consumer lock contract
|-- docs/                   # provenance and extraction evidence
`-- tests/

Admission rule

A workflow belongs here when its project-independent invariant is clear and a real implementation demonstrates it. Repetition across projects is strong evidence, but a mature gzkit workflow may qualify when the portable core can be separated cleanly from GovZero runtime behavior.

Project commands and policy stay behind the consuming project's documented seams. A tool wrapper, domain workflow, or harness-specific integration does not become portable merely because several projects copied it.

Validate

uv run python -m unittest discover -s tests -v

Get-ChildItem .\skills -Directory | ForEach-Object {
    uvx --from skills-ref agentskills.exe validate $_.FullName
}

uv build

License

gz-skills is available under the MIT License.

About

Portable, vendor-neutral GovZero agent skills

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages