A Claude Code plugin marketplace for turning a Mermaid class diagram of a domain model into a fully implemented, tested microservice — one layer at a time.
Audits a single agent file for content that overlaps with the skills it explicitly references — verbatim duplication, conceptual restatement, inlined procedures that should defer to a skill, and duplicated examples/templates. Read-only; emits a severity-grouped report with before/after patch suggestions. Invoke with…
Trims the description frontmatter field of a single skill or agent markdown file down to its essential clauses — what it does, optional "Use when …" trigger, and optional Invoke with: signature. Idempotent; read-modify-write only. Invoke with: @description-trimmer.
Assesses a SKILL.md file for correctness and alignment with the official Claude Code skills documentation (https://code.claude.com/docs/en/skills). Reports issues by severity with citations from the spec. Invoke with: @skill-auditor.
Reads a pattern file and creates a SKILL.md in the specified plugin. Accepts optional metadata overrides via a Provided Metadata block. Invoke with: @skill-from-pattern.
Enriches Application Exceptions sections in commands, queries, and every ops service file with full class specs for each exception raised by application services. Invoke with: @application-exceptions-specifier [ ...].
Emits the per-update application report at / .application/updates.md by diffing the working-tree application specs (commands.specs.md, queries.specs.md, services.md) against git HEAD. Invoke with: @application-updates-writer.
Orchestrates application-layer implementation for an aggregate from its merged commands spec, merged queries spec, and services report siblings by fanning out the scaffold/service/settings/exception/implementer/test worker subagents. Invoke with: @code-generator.
Detects updates to the commands application-service diagram by diffing the working tree against git HEAD, and writes a structured report. Invoke with: @commands-updates-detector.
Writes the Dependencies section of an application service spec (commands, queries, or ops) to a per-plugin sibling file next to the domain class diagram. Invoke with: @application-spec:deps-writer [ ].
Writes the Method Specifications section of an orchestration (ops) application service spec — a free-form class identified structurally, with free return types and prose-authored flows. Invoke with: @ops-methods-writer.
Implements pytest integration tests for one aggregate's free-form ops orchestration application service (the unique braced class in .ops. .md). Synthesizes scenarios around free return types and per-method transactional/coordinator shapes. Invoke with: @ops-tests-implementer.
Detects updates to an aggregate's ops orchestration application-service diagrams by diffing every .ops. .md against git HEAD, and writes a structured per-service report. Invoke with: @ops-updates-detector.
Implements all queriessettings.py stub modules in the application package by applying the application-spec:settings pattern doc. Invoke with: @queries-settings-implementer.