Agent-order automates multi-model PRD consensus with Codex and Claude
A new npm-installable tool called "The Order of the Agents" automates a workflow where AI agents independently draft PRDs, critique each other's plans, and iterate until reaching a consensus document meaningfully better than either model produces alone.
Score breakdown
Automate a structured multi-agent planning loop — rather than manually shuttling prompts between AI models — to produce higher-quality PRDs with a full Markdown audit trail of every critique and revision.
- 01The tool is called "The Order of the Agents" and is published as the `agent-order` npm package.
- 02The workflow runs agents independently on the same prompt to prevent one model's output from anchoring the other's.
- 03The tool supports Codex and Claude as well as other agent CLIs the user trusts.
\"The Order of the Agents\" (`agent-order`) packages a planning workflow the author developed manually for complicated features. The process runs Codex and Claude — or other agent CLIs — in parallel on the same prompt, keeping them isolated so neither model's output anchors the other's. Once each agent has produced a PRD, the tool orchestrates a cross-critique round where each model reviews and challenges the other's plan, then revises its own based on those findings. The cycle continues until the agents converge on a final, agreed-upon PRD. The author notes this final document was meaningfully better than what either model produced alone.
All intermediate steps — initial drafts, critiques, and revisions — are saved as Markdown files, making the full reasoning chain auditable and shareable.
All intermediate steps — initial drafts, critiques, and revisions — are saved as Markdown files, making the full reasoning chain auditable and shareable. The tool also includes an optional \"grill-me\" intake mode, inspired by Matt Pocock's grill-me skill, which interrogates the user's requirements before the main agent session begins. It is installable via `npm install agent-order` and invocable with `npx agent-order@latest`, and requires the `codex` and `claude` CLIs (or other trusted agent CLIs) to already be installed and authenticated.
Key facts
- 01The tool is called "The Order of the Agents" and is published as the `agent-order` npm package.
- 02The workflow runs agents independently on the same prompt to prevent one model's output from anchoring the other's.
- 03The tool supports Codex and Claude as well as other agent CLIs the user trusts.
- 04Each agent critiques the other's PRD, then revises its own, iterating until both reach agreement.
- 05All drafts, critiques, and revisions are recorded as Markdown files.
- 06An optional "grill-me" intake mode, inspired by Matt Pocock's grill-me skill, refines requirements before agents convene.
- 07Install via `npm install agent-order`; invoked with `npx agent-order@latest` followed by a prompt string.