archgate-reviewer
Validates code changes against all applicable project ADRs, using domain-focused sub-agents. Invoke after making changes, before committing.
Add Archgate governance skills to Claude Desktop. Install the archgate-* skill bundles as .zip files so Claude reads your ADRs before writing code and reviews changes against them.
Claude Desktop supports Archgate through standalone skill bundles. Unlike the editor plugins that ship an agent plus skills together, Claude Desktop is configured by installing individual Archgate skills as .zip packages. Each bundle teaches Claude one part of the governance workflow — authoring ADRs, reviewing changes, onboarding a project, capturing lessons, and loading the CLI reference.
archgate CLI to read ADRs and run checks, so it must be available in the environment Claude Desktop can execute commands in..archgate/ directory — created by archgate init. The skills operate on the ADRs and rules in that directory.Each bundle is a .zip containing a Skill.md (the skill definition) and its LICENSE. Five bundles are distributed:
archgate-reviewer
Validates code changes against all applicable project ADRs, using domain-focused sub-agents. Invoke after making changes, before committing.
archgate-adr-author
Creates and edits ADRs following your project’s established structure and conventions.
archgate-onboard
One-time setup: runs archgate init, explores the codebase, interviews you, and creates the initial set of ADRs.
archgate-lessons-learned
Captures learnings from a session and codifies them into new ADRs or project memory — the final step in the workflow.
archgate-cli-reference
Internal reference that loads the complete Archgate CLI command and rules-authoring guide on demand. Supports the other skills rather than being invoked directly.
These are the same roles documented in Skills, packaged for Claude Desktop’s skill format.
The bundles are distributed as archgate-<role>.zip files. Install each one through Claude Desktop’s skills interface.
Obtain the skill bundles. Download the archgate-*.zip files from the Archgate plugins distribution (closed beta — archgate login to request access).
Open Claude Desktop’s skills settings and choose to add a skill from a file.
Install each .zip bundle you want. At minimum, install archgate-reviewer (validate changes) and archgate-cli-reference (so the other skills can load command syntax). Add archgate-adr-author, archgate-onboard, and archgate-lessons-learned for the full workflow.
Verify the CLI is reachable by confirming archgate --version works in the environment Claude Desktop runs commands in. The skills depend on it.
Each skill is self-contained but they form a workflow when used in sequence:
archgate-onboard sets up .archgate/ and your initial ADRs for a new project.archgate-adr-author creates and refines ADRs as your architecture evolves.archgate-reviewer runs archgate review-context and archgate check, then validates each affected domain against its ADRs. ADR violations are hard blockers.archgate-lessons-learned reviews the session and proposes new ADRs or updates when a pattern emerges.Throughout, archgate-cli-reference loads the exact CLI command syntax and rules API on demand, since those details are newer than most model training cutoffs.