Agent Plugins Marketplace
All plugins

quorum

v0.1.0

A four-step delivery pipeline (plan, build, multi-lens review, adjudication) with behavioral regression tests and CI gating.

Claude Code7 Skills

By Joel Stevick0 GitHub starsUpdated yesterday

Directory evidence

Runtimes
Claude Code
Parsed components
7 skill or MCP entries
Source updated
Aug 25, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install quorum@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/AiFirstDevelopment/quorum

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/quorum/.

Plugin files

plugins/quorum/
├── .claude-plugin/plugin.json
├── skills/1-plan/SKILL.md
├── skills/2-build/SKILL.md
├── skills/3-review/SKILL.md
├── skills/4-quorum/SKILL.md
├── skills/add-ci/SKILL.md
├── skills/add-regression-tests/SKILL.md
└── skills/run-regression-tests/SKILL.md

Included Skills7

1-planskills/1-plan/SKILL.md

Step 1 of the quorum pipeline. Investigates a requested change and writes a planning document capturing intent, acceptance criteria, and non-goals to docs/work/<slug>/plan.md. Writes no code.

2-buildskills/2-build/SKILL.md

Step 2 of the quorum pipeline. Implements the plan at docs/work/<slug>/plan.md, ticking off steps as it goes and recording any deviation from the plan.

3-reviewskills/3-review/SKILL.md

Step 3 of the quorum pipeline. Reviews the built change from several independent lenses in fresh context, writing one review file per lens to docs/work/<slug>/reviews/. Finds problems; fixes nothing.

4-quorumskills/4-quorum/SKILL.md

Step 4 of the quorum pipeline. Acts as judge over the plan, the code, and all reviews - adjudicating each finding, applying accepted fixes, and writing a verdict to docs/work/<slug>/verdict.md. Ends only with a green test suite.

add-ciskills/add-ci/SKILL.md

Wires the regression suite into CI as a required status check so a pull request cannot merge while tests fail. Generates the workflow file and explains the branch-protection settings that must be applied in the hosting UI or API.

add-regression-testsskills/add-regression-tests/SKILL.md

Writes behavioral regression tests for the current change, exercising the fully assembled application through its outermost user-facing surface. Verifies each new test actually fails when the behavior it guards is broken. Use when asked to add tests, harden a change, or close test gaps.

run-regression-testsskills/run-regression-tests/SKILL.md

Runs the full regression suite, discovering and recording how this repo runs its tests, and reports failures in a structured form the rest of the quorum pipeline can consume. Distinguishes broken code from broken tests from flakes.

Plugin manifests1

plugins/quorum/.claude-plugin/plugin.json
{
  "name": "quorum",
  "description": "A four-step delivery pipeline (plan, build, multi-lens review, adjudication) with behavioral regression tests and CI gating.",
  "version": "0.1.0",
  "author": {
    "name": "Joel Stevick"
  },
  "homepage": "https://github.com/AiFirstDevelopment/quorum",
  "keywords": [
    "planning",
    "review",
    "testing",
    "ci",
    "pipeline"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[quorum on Agent Plugins Marketplace](https://pluginsmp.com/plugins/quorum)