Author, validate, and run a hexDAG YAML pipeline. Use when building or editing a pipeline/system manifest, wiring nodes and ports, or debugging a pipeline that won't build. Triggers "write a hexdag pipeline", "add a node", "wire up a port", "why won't my pipeline build", "run this pipeline".
Validate and lint hexDAG pipeline YAML with the hexdag CLI before running or committing. The build-safety check for declarative pipelines. Triggers "validate my pipeline", "check the YAML", "lint the pipeline", "does this pipeline build", "hexdag-validate".
Create a conventional-commit-style semantic commit (feat|fix|refactor|test|docs|ci|experiment|chore). Stages files by name, enforces the shape, appends the Co-Authored-By trailer, and never uses --no-verify or --amend after a hook failure. Triggers "commit this", "make a commit", "semantic commit", "commit my changes".
End-to-end release prep — run qa-gate, verify the branch name matches the enforced regex, make a semantic commit, push, and open a PR to main via the gh CLI (GitHub). No version bump, no CHANGELOG edit, no CI watch. Triggers "open a PR", "prep a PR", "ship this", "raise a pull request", "release this".
Fast inner-loop quality check — ruff check --fix + ruff format on changed files, mypy on hexdag/, the relevant hexDAG boundary checks, and last-failed tests only (pytest --lf -x). Use while iterating; use qa-gate before committing. Triggers "quick check", "qa-fast", "fast QA", "does it still pass", "/loop".
Full deterministic quality gate mirroring the pre-commit + pre-push hooks in .pre-commit-config.yaml. Runs ruff format/check, pyupgrade, mypy + pyright, bandit, the hexDAG boundary checks (kernel-boundary, core-imports, async-io, port-protocols, timer-usage, ...), doctests, pytest with the 70% coverage gate, interrogate/radon/vulture, and optionally integration tests. Use before every commit or PR, when asked to "run QA", "run the full quality gate", "check the codebase is clean", or "verify before pushing".
Multi-agent worktree hygiene — report git status and stash list, surface other sessions' untracked files, and create/destroy isolated git worktrees under .claude/worktrees on demand. Triggers "give me an isolated worktree", "is the tree clean", "set up a worktree", "clean up my worktree", "claim a clean tree".
Validate and lint changed hexDAG pipeline YAML with the project's own CLI (hexdag validate + hexdag lint), and confirm generated schemas are in sync. The hexDAG-native analog of a build-safety check for declarative pipelines. Triggers "validate my pipeline", "check the YAML", "lint the pipeline", "does this pipeline build", "yaml-check".