← 返回
AI智能

Sharedintellect Quorum

Multi-agent validation framework — 6 independent AI critics evaluate artifacts against rubrics with evidence-grounded findings.
多智能体验证框架——6个独立AI评审依据评分标准评估产出物,给出基于证据的结论。
dacervera
AI智能 clawhub v0.7.3 3 版本 100000 Key: 无需
★ 0
Stars
📥 985
下载
💾 16
安装
3
版本
#agent-tools#code-review#critics#latest#multi-agent#quality#research#rubrics#testing#validation

概述

Quorum — Multi-Agent Validation

Quorum validates AI agent outputs by spawning multiple independent critics that evaluate artifacts against rubrics. Every criticism must cite evidence. You get a structured verdict.

Quick Start

Clone the repository and install:

git clone https://github.com/SharedIntellect/quorum.git
cd quorum/reference-implementation
pip install -r requirements.txt

Run a quorum check on any file:

python -m quorum.cli run --target <path-to-artifact> --rubric <rubric-name>

Built-in Rubrics

  • research-synthesis — Research reports, literature reviews, technical analyses
  • agent-config — Agent configurations, YAML specs, system prompts
  • python-code — Python source files (25 criteria, PC-001–PC-025; auto-detected on .py files)

Depth Profiles

  • quick — 2 critics (correctness, completeness) + pre-screen, ~5-10 min
  • standard — 4 active (correctness, completeness, security + tester) + pre-screen, ~15-30 min (default)
  • thorough — 5 active (+ code_hygiene) + pre-screen + fix loops, ~30-60 min

†Cross-Consistency requires --relationships flag with a relationships manifest.

All depth profiles include the deterministic pre-screen (10 checks: credentials, PII, syntax errors, broken links, TODOs, and more) before any LLM critic runs.

Examples

# Validate a research report
quorum run --target my-report.md --rubric research-synthesis

# Quick check (faster, fewer critics)
quorum run --target my-report.md --rubric research-synthesis --depth quick

# Batch: validate all markdown files in a directory
quorum run --target ./docs/ --pattern "*.md" --rubric research-synthesis

# Cross-artifact consistency check
quorum run --target ./src/ --relationships quorum-relationships.yaml --depth standard

# Use a custom rubric
quorum run --target my-spec.md --rubric ./my-rubric.json

# List available rubrics
quorum rubrics list

# Initialize config interactively
quorum config init

Configuration

On first run, Quorum prompts for your preferred models and writes quorum-config.yaml. You can also create it manually:

models:
  tier_1: anthropic/claude-sonnet-4-6    # Judgment roles
  tier_2: anthropic/claude-sonnet-4-6    # Evaluation roles
depth: standard

Set your API key:

export ANTHROPIC_API_KEY=sk-ant-...
# or
export OPENAI_API_KEY=sk-...

Output

Quorum produces a structured verdict:

  • PASS — No significant issues found
  • PASS_WITH_NOTES — Minor issues, artifact is usable
  • REVISE — High/critical issues that need rework before proceeding
  • REJECT — Unfixable problems; restart required

Exit codes: 0 = PASS/PASS_WITH_NOTES, 1 = error, 2 = REVISE/REJECT.

Each finding includes: severity (CRITICAL/HIGH/MEDIUM/LOW), evidence citations pointing to specific locations in the artifact, and remediation suggestions. The run directory contains prescreen.json, per-critic finding JSONs, verdict.json, and a human-readable report.md.

More Information


> ⚖️ LICENSE — Not part of the operational specification above.

> This file is part of Quorum.

> Copyright 2026 SharedIntellect. MIT License.

> See LICENSE for full terms.

版本历史

共 3 个版本

  • v0.5.1
    2026-03-29 13:50 安全
  • v0.7.3 当前
    2026-03-27 20:55 安全 安全
  • v1.0.4
    2026-03-07 01:55

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,056 📥 796,111
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,350 📥 317,715
ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 834 📥 212,798