Plugin Claude Code
Ten cooperating plugins covering the full development lifecycle — from requirement capture through spec, plan, implementation, verification, and shipping.
Plugin Claude Code
Ten cooperating plugins covering the full development lifecycle — from requirement capture through spec, plan, implementation, verification, and shipping.
Hook Claude Code
Runs after a tool call finishes for Agent, TaskCreate and TaskUpdate tool calls, running an inline shell check (2 commands). From orin-dx/agent-plugins.
Hook Claude Code
Runs before the agent uses a tool for Agent tool calls, running an inline shell check. From orin-dx/agent-plugins.
Hook Claude Code
Runs when a session ends, running an inline shell check. From orin-dx/agent-plugins.
Hook Claude Code
Runs when a session starts, running an inline shell check. From orin-dx/agent-plugins.
Hook Claude Code
Runs when the agent finishes a response, running an inline shell check. From orin-dx/agent-plugins.
Hook Claude Code
Runs when you submit a prompt, before the agent sees it, running an inline shell check. From orin-dx/agent-plugins.
Settings file Claude Code
Agent settings declaring 6 hook events (PostToolUse, PreToolUse, SessionEnd, SessionStart).
Instructions file CodexOpenCode
AGENTS.md instructions for orin-dx/agent-plugins, covering orin dx ai agent & skill specification (agents.md), 1. authoritative sources, 2. directory layout standard and 3. quick checklist for adding new plugins.
Instructions file
Claude Code instructions for orin-dx/agent-plugins, covering claude code guidelines (claude.md), 1. quick reference & commands, 2. authoring guidelines & single source of truth and 3. directory conventions.
Agent
Delegate to this subagent when you need changeset@2 artifacts produced from a git diff. Input is a git diff, optionally a linked spec@1, and optionally smith's criteriaevidence from the TDD run that produced this diff. A diff spanning multiple independent topics produces one changeset@2 per topic, never one bundled…
Agent
Delegate to this subagent when the user has staged git changes and needs a conventional commit message written. Input is the staged diff. The agent reads shared/references/conventional-commits.md for type and scope conventions. Output is a JSON object containing commitmessage, type (feat, fix, docs, style, refactor…
Agent
Delegate to this subagent when the user needs a pull request title and body written for a set of staged or committed changes. Input is a git diff and optionally a linked spec@1 or requirement@1. The agent reads the PR template from shared/references/github.md and writes from the reviewer's perspective — what does a…
Agent
Delegate to this subagent when you need a release-artifact@2 generated from a collection of changeset@2 entries. Input is a list of changeset@2 JSON objects, the prior released version string, and a release date in YYYY-MM-DD format. Each input changeset already carries consumerimpact and semverimpact, set at…
Agent
Delegate to this subagent before a PR is opened, to assemble the complete review package for the reviewer. Input is the changeset diff, optionally a linked spec@1 or requirement@1, test results, and any open questions the author wants answered. The agent bundles these into a structured review package — diff summary…
Skill Claude CodeCodex
Trigger when the user asks to add a changeset or document a change: "add a changeset", "document this change", "what changed here". Extracts the consumer-facing meaning of a diff: classifies consumerimpact (behavior-change, new-capability, internal-only) and semverimpact (major, minor, patch, none) per…
Skill Claude CodeCodex
Trigger when the user asks to commit code or write a commit message: "commit this", "write a commit message", "commit the staged changes". Reads the staged git diff and produces a conventional commit message explaining why the change was made, not what changed — the diff already shows what changed.
Skill Claude CodeCodex
Trigger when the user has an already-drafted review or reply and wants it posted: "post this review", "reply to this comment", "mark this thread resolved", "submit my review comments". Takes drafted content — from the built-in code-review skill's findings, from courier/receive-feedback's response plan, or typed…
Skill Claude CodeCodex
Trigger when the user asks to open a PR or write a PR description: "open a PR", "create a pull request", "write the PR description". Given a diff, a linked spec, and a linked requirement, produces a PR title and body a reviewer with zero context can act on, then opens the PR via gh pr create after user confirmation.
Skill Claude CodeCodex
Trigger when the user asks to process or triage incoming review feedback: "address the feedback", "respond to review comments", "what do these comments mean", "triage this review". Assembles a review package — diff summary, linked spec, test results, open questions — so the author has full context to respond without…
Skill Claude CodeCodex
Trigger when the user asks to cut a release or summarize what's in one: "cut a release", "what's in this release", "generate release notes". Aggregates changeset@2 entries since the last release into a release-artifact@2: filters consumerimpact: internal-only entries, computes the version as max(semverimpact) across…
Agent
Delegate to this subagent to audit an existing plugin directory for ecosystem conformance. Input is the plugin directory path. Checks: plugin.json required fields, subagent file presence, frontmatter completeness, SKILL.md description word count for every skill directory (a plugin may have several), the 5-part agent…
Agent
Delegate to this subagent when the user wants to create a new plugin from scratch. Provide a plugin ID and a description of what it should do. Generates a complete, ready-to-install plugin directory: plugin.json, a skills/ /SKILL.md with a 100-200 word CSO description, one stub agent file per declared agent using the…
Agent
Delegate to this subagent when the user wants to design a new JSON Schema for an inter-agent artifact — a structured payload passed between producers and consumers in the plugin ecosystem. Provide a description of what the artifact represents, who produces it, and who consumes it. The designer produces a JSON Schema…