惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
博客园 - 司徒正美
罗磊的独立博客
D
Docker
Last Week in AI
Last Week in AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
V
V2EX
Google DeepMind News
Google DeepMind News
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
V
Visual Studio Blog
博客园 - 叶小钗
B
Blog RSS Feed
A
About on SuperTechFans
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
P
Proofpoint News Feed

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - btahir/agent-order: The Order of the Agents is a...
bilater · 2026-04-26 · via Hacker News: Show HN

Agent Order demo

The Order of the Agents convenes a sworn fellowship of AI agents — Codex, Claude, and other CLIs you trust — around a single question. Each agent takes a position, challenges the others, and revises in turn, until the Order issues a final decree. Every oath, critique, and revision is recorded as Markdown, so the reasoning behind the decision is auditable, shareable, and yours to keep.

agent-order "Plan a Launch Readiness feature for a project management app. Help teams decide whether a release is ready to ship. Include UX, data model, API, risks, telemetry, and acceptance criteria."

You get:

  • final/report.md: the decree, plan, PRD, memo, or recommendation
  • final/decision-log.md: what changed and why
  • turns/*.md: every agent position, critique, and revision
  • index.md: a shareable run summary

Short version: stop asking one model for decisions that matter.

Showcase

Watch the one-minute product video.

Why

Single-model answers can be confident and incomplete. The Order of the Agents makes the disagreement visible before it becomes a final recommendation.

-> codex   initial-position
-> claude  initial-position
-> codex   critique
-> claude  critique
-> codex   revision
-> claude  revision
-> codex   synthesis

final/report.md

The product is not another chat wrapper. It is an auditable decision packet: independent positions, missed assumptions, critique, revision, and a final artifact you can share with a team.

Install

Install from npm:

npm install -g agent-order

Then run:

agent-order "Should we build or buy an internal analytics dashboard?"

For zero-install use:

npx agent-order@latest ./scenario.md

For local development from this repo:

npm install
npm run build
npm link

Then run the linked CLI:

agent-order "Should we build or buy an internal analytics dashboard?"

The Order assumes the agent CLIs you use, such as codex and claude, are already installed and logged in.

First Demo

Run the mock demo without calling Codex or Claude:

npm run demo

Or run a real two-agent deliberation:

agent-order ./examples/build-vs-buy-analytics/scenario.md --agents codex,claude --out ./agent-order-runs

Good first scenarios:

agent-order ./examples/build-vs-buy-analytics/scenario.md
agent-order ./examples/rest-to-trpc/scenario.md
agent-order grill ./examples/review-agent-order-readme/scenario.md

What It Writes

agent-order-runs/<timestamp>/
  scenario.md
  index.md
  trace.jsonl
  prompts/
  raw/
  turns/
    0001-codex.initial-position.md
    0002-claude.initial-position.md
    0003-codex.critique.md
    0004-claude.critique.md
    ...
  final/
    report.md
    decision-log.md

turns/ is the audit trail. final/report.md is the artifact you share.

Commands

agent-order <scenario-or-file>
agent-order grill <scenario-or-file>
agent-order init
agent-order check
agent-order doctor

Common options:

agent-order ./scenario.md --agents codex,claude
agent-order ./scenario.md --max-turns 10
agent-order ./scenario.md --human-input never
agent-order ./scenario.md --out ./runs

Human Input

Human input is part of the protocol, not a side channel.

Use grill mode when the scenario needs clarification before the Order starts:

agent-order grill "Should we move our frontend to a monorepo?"

This produces human and orchestrator turns:

0001-human.seed.md
0002-codex.intake-question.md
0003-human.intake-answer.md
0004-orchestrator.scenario-freeze.md
0005-codex.initial-position.md

During a run, agents can also emit structured questions for the user. The orchestrator deduplicates them and pauses only when configured.

human_input:
  mode: on_blocking_questions
  max_questions_per_pause: 3

Configuration

Create a starter config:

agent-order init

Default shape:

protocol: agent-order/v1

agents:
  - id: codex
    adapter: codex-cli
    command: codex

  - id: claude
    adapter: claude-cli
    command: claude

limits:
  max_turns: 12

output:
  dir: ./agent-order-runs

synthesis:
  agent: codex

intake:
  enabled: false
  mode: off
  facilitator: codex
  max_questions: 6

human_input:
  mode: on_blocking_questions
  max_questions_per_pause: 3
  ask_before_final: false

final_review:
  enabled: true

If no config sets limits.max_turns, The Order uses max(12, agents * 4 + 4) and reserves room for a synthesis turn.

Adding Another Agent

Codex and Claude are built in. Any scriptable CLI can participate through generic-cli:

agents:
  - id: gemini
    adapter: generic-cli
    command: gemini
    args:
      - -p
      - "{{prompt}}"
    output:
      mode: stdout

The generic adapter can pass prompts through stdin, a prompt file, or templated args like {{prompt}}, then reads either JSON matching the agent-turn schema or plain Markdown from stdout.

Product Positioning

The Order of the Agents is for senior developers, tech leads, staff engineers, and AI-heavy builders who already use terminal AI tools and want better review for consequential decisions:

  • architecture choices
  • build-vs-buy calls
  • migration plans
  • security and reliability reviews
  • PRD/RFC critique
  • incident remediation reviews
  • developer-tool product strategy

Use it when the decision is worth a few minutes of critique. Do not use it for every prompt.