Skills

41 skill compositions — each bundles atoms into a complete, invocable skill definition.

Audit

v1.0.0

Append JSONL interaction records to ~/.ai/audit/interactions/YYYY-MM.jsonl for every tool use, session start/end, and stop event.

Audit Command

v1.0.0

Log Bash commands and their arguments before execution.

Branch Guard

v1.0.0

Block direct commits, pushes, and merges to protected branches (main, master).

Checkpoint Tick

v1.0.0

Write a CHECKPOINT.md snapshot on each turn to support session recovery.

Destructive GH Guard

v1.0.0

Block destructive gh CLI operations (repo delete, branch force-push, etc.).

No Verify Strip

v1.0.0

Strip --no-verify flags from git commands to enforce pre-commit hook execution.

OP Redact

v1.0.0

Redact 1Password secret values from tool output before they appear in the conversation.

Secret Scan Patterns

v1.0.0

JSON pattern library used by secret-block and secret-precommit for secret detection.

Secret Block

v1.0.0

Block Bash commands that would print secret values (env, printenv, cat .env, etc.).

Secret Precommit

v1.0.0

Git pre-commit hook that scans staged files for secrets before they are committed.

Worktree Guard

v1.0.0

Enforce §U17 worktree placement rules — worktrees must live in canonical locations.

Atoms Discover

v1.0.0

Navigate the convergent-systems atom ecosystem to find, fetch, or scaffold atoms. Routes 'apply brand X' to brand-atoms, 'use persona Y' to persona-atoms, 'load skill Z' to skill-atoms, etc. Covers discovery, cross-atom reference resolution, and new-atom scaffolding.

Checkpoint

v1.0.0

Snapshot in-flight work — goals, decisions, file paths, branch state, next step — to a structured checkpoint file so a later session can resume exactly where this one left off.

Cleanup

v1.0.0

Remove dead code, unused imports, commented-out blocks, and resolved TODOs. Behavior-preserving: no logic changes, only deletion of unreachable or inert code.

Commit

v1.0.0

Generate a conventional-commit message from the staged diff and commit. Reads the diff, analyzes the change, picks the right Conventional Commits prefix (feat/fix/refactor/chore/docs/test/ci), and commits with a descriptive message.

Diagram

v1.0.0

Generate Mermaid diagrams (flowchart / sequence / state / class / ER / gantt) from code or systems.

Explain

v1.0.0

Read-only code explainer with audience-tuned depth (non-technical / junior / practitioner / senior) and path:line citations. Never modifies files.

Make

v1.0.0

Unified make dispatcher. Delegates to the correct sub-skill (work/clean/build/test) based on the subcommand argument.

Make Atoms

v1.0.0

Discover, fetch, or scaffold skill atoms via the atoms-discover skill. Routes to the atoms binary for ecosystem operations.

Make Build

v1.0.0

Commit staged changes, push the current branch, open a pull request, and merge after CI passes.

Make Clean

v1.0.0

Two-command git workspace lifecycle manager: purge merged branches/worktrees/stashes, aggregate remaining in-flight work into one branch, then hand off to make build.

Make Doctor

v1.0.0

Health check for the AI governance stack and per-repo CI: runs 'ai doctor', checks hook permissions, verifies CLAUDE.md constitution includes, and reports CI status on open PRs.

Make Project

v1.0.0

Build a GitHub Project (Projects v2) with a three-level Epic → Feature → Task hierarchy, sourced from GOALS.md, existing GitHub issues, and Azure DevOps work items. Uses native GitHub sub-issues to wire the hierarchy. Confirms the derived tree before creating anything.

Make Review

v1.0.0

Adversarial code reviewer sweep on the current branch diff against main: stubs, placeholders, dead imports, unwired exports, and TODO/FIXME in production paths.

Make Sprint

v1.0.0

Activate PM discipline and run the multi-agent delivery team in one shot. Recovers from checkpoints, ingests the issue queue, partitions tasks, spawns Tech Lead agents per domain, runs TDD pipelines, code reviews, and builds.

Make Status

v1.0.0

Sprint status snapshot: open PRs and their CI state, stale branches, sync gap between local and origin, and any uncommitted work.

Make Sync

v1.0.0

Pull all repos in the workspace (primary + submodules) to their default branch heads.

Make Test

v1.0.0

Discover and run the project test suite across all workspace modules, report failures with file:line citations, and optionally fix them.

Onboard

v1.0.0

Generate an ONBOARDING.md for the current repo covering: stack, prerequisites, setup, run, test, structure, and common commands. Targeted at a new contributor picking up the repo cold.

Pull Request

v1.0.0

Open a GitHub pull request with a body generated from the branch's commits. Derives title and summary from commit history.

Project

v2.0.0

Set up AI workspace config for this project. Installs project-claude (Claude Code) and project-copilot (GitHub Copilot) together.

Project (Claude)

v1.0.0

Set up and maintain AI workspace configuration for Claude Code: project.yaml, .claude/settings.json, and CLAUDE.md. Use when initialising a project for Claude or editing its Claude-specific config.

Project (Copilot)

v1.0.0

Set up and maintain AI workspace configuration for GitHub Copilot CLI: project.yaml and .github/copilot-instructions.md. Use when initialising a project for Copilot or editing its Copilot-specific config.

Project Workspace

v1.0.0

[Retired — use /project-claude or /project-copilot instead] Manage AI workspace configuration for a project — project.yaml, integration files, and tool settings.

Refactor

v1.0.0

Behavior-preserving refactor with test gates and the bug-report-separately rule. Tests must be green before and after. Bugs found during refactor are reported separately, not fixed inline.

Repo

v1.0.0

Repository structure tool — monorepo or polyrepo migration in either direction, preserving git history.

Status

v1.0.0

Mid-session blocked-state report. Reports ready state or lists active waits (biometric, pr-merge, scope-decision, out-of-band, background) using the Common.md §U7 typed wait-reason format.

Test

v1.0.0

Run repo tests via project.yaml's tooling.test_command and report failures with path:line citations.

Update Config

v1.0.0

Configure the Claude Code harness via settings.json. Handles: automated behaviors (hooks), permissions, env vars, hook troubleshooting, and changes to settings.json/settings.local.json files.