orin-dx

66 mods across 1 repository, 1 stars between them.

orin-dx/agent-plugins

Plugin Claude Code

Ten cooperating plugins covering the full development lifecycle — from requirement capture through spec, plan, implementation, verification, and shipping.

1 4d ago A tokens not measured original MIT

PostToolUse

02

orin-dx/agent-plugins

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.

1 4d ago A tokens not measured copy · 100% MIT

PreToolUse

03

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.

1 4d ago A tokens not measured copy · 100% MIT

SessionEnd

04

orin-dx/agent-plugins

Hook Claude Code

Runs when a session ends, running an inline shell check. From orin-dx/agent-plugins.

1 4d ago A tokens not measured copy · 100% MIT

SessionStart

05

orin-dx/agent-plugins

Hook Claude Code

Runs when a session starts, running an inline shell check. From orin-dx/agent-plugins.

1 4d ago A tokens not measured copy · 100% MIT

Stop

06

orin-dx/agent-plugins

Hook Claude Code

Runs when the agent finishes a response, running an inline shell check. From orin-dx/agent-plugins.

1 4d ago A tokens not measured copy · 100% MIT

UserPromptSubmit

07

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.

1 4d ago A tokens not measured copy · 100% MIT

settings

08

orin-dx/agent-plugins

Settings file Claude Code

Agent settings declaring 6 hook events (PostToolUse, PreToolUse, SessionEnd, SessionStart).

1 4d ago A tokens not measured copy · 95% MIT

orin-dx/agent-plugins

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.

1 4d ago A 913 tokens original MIT

orin-dx/agent-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.

1 4d ago A 581 tokens original MIT

changeset-analyzer

11

orin-dx/agent-plugins

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…

1 4d ago A 231 tokens original MIT

commit-analyzer

12

orin-dx/agent-plugins

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…

1 4d ago A 137 tokens original MIT

pr-narrator

13

orin-dx/agent-plugins

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…

1 4d ago A 140 tokens original MIT

release-summarizer

14

orin-dx/agent-plugins

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…

1 4d ago A 191 tokens original MIT

review-preprocessor

15

orin-dx/agent-plugins

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…

1 4d ago A 127 tokens original MIT

changeset

16

orin-dx/agent-plugins

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…

1 4d ago A 162 tokens original MIT

commit

17

orin-dx/agent-plugins

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.

1 4d ago A 61 tokens original MIT

post-review

18

orin-dx/agent-plugins

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…

1 4d ago A 124 tokens original MIT

pr

19

orin-dx/agent-plugins

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.

1 4d ago A 76 tokens original MIT

receive-feedback

20

orin-dx/agent-plugins

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…

1 4d ago A 138 tokens original MIT

release

21

orin-dx/agent-plugins

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…

1 4d ago A 93 tokens original MIT

auditor

22

orin-dx/agent-plugins

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…

1 4d ago A 287 tokens original MIT

scaffolder

23

orin-dx/agent-plugins

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…

1 4d ago A 244 tokens original MIT

schema-designer

24

orin-dx/agent-plugins

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…

1 4d ago A 120 tokens original MIT