Analyzes implementation plans the way Hari Seldon analyzed civilizations — by checking structural assumptions against reality before things go wrong.
Slides •
Install •
Usage •
Focus Modes •
External Judges •
Output Schema
Feed Seldon a plan, spec, or proposal. It reads the document, inspects your codebase for evidence, and returns a verdict: approve, approve with changes, or request major revision. Every finding includes severity, evidence from your workspace, and file references with line numbers.
Works out of the box as an inline skill for Claude Code. Plug in Codex, OpenAI, or Anthropic as an external judge for true model independence. Or write your own.
Works with Claude Code (CLI) and Claude Desktop (Cowork). No API keys or config needed for inline review.
Option A — Download from GitHub:
- Go to the Releases page
- Download the latest
seldon-*.zip - Install it:
claude plugin install ./seldon-1.1.0.zipOption B — One-liner with gh:
gh release download --repo degrammer/seldon --pattern '*.zip' && claude plugin install ./seldon-*.zipOption C — Claude Desktop (non-technical users):
- Download the zip from Releases
- Open Claude Desktop
- Go to Settings → Plugins → Install from file
- Select the downloaded zip
- Type
/seldon my-plan.mdin any conversation
After installing, the /seldon command is available in all your Claude sessions.
Via skills.sh:
npx skills add degrammer/seldonManual (clone):
# Global — available in all projects
git clone https://github.com/degrammer/seldon.git ~/.claude/skills/seldon
# Project-level — shared with your team via git
git clone https://github.com/degrammer/seldon.git .claude/skills/seldon/seldon my-plan.md
/seldon --focus architecture docs/migration-plan.md
/seldon --focus safety spec.md supporting-context.md
- Seldon reads your plan file (and any supporting files)
- Inspects the workspace to verify claims — file paths, APIs, dependencies, config, schema
- Evaluates against a rubric: repo fit, correctness, sequencing, evaluation, safety
- Returns a structured verdict with a visual confidence bar:
🟡 Confidence ████████████████░░░░ 0.82 (moderate)
Judge: codex via judge-runner.sh
Verdict: approve_with_changes
Summary: Plan is sound but assumes a migration path that doesn't exist yet.
🟡 Confidence ████████████████░░░░ 0.82 (moderate)
Strengths:
- Clear phasing with realistic scope per step
- Good rollback strategy for the data migration
Blocking findings:
high — Migration depends on schema v3 which hasn't been created
Why: Step 2 cannot begin without this prerequisite
Evidence: No v3 migration file exists in prisma/migrations/
Refs: prisma/schema.prisma:42, docs/plan.md:18
Open questions:
- Is the external billing API rate limit sufficient for the proposed batch size?
Focus modes weight the review toward specific concerns. Default is balanced.
| Mode | Emphasis |
|---|---|
balanced |
All rubric dimensions evenly |
architecture |
Service boundaries, dependencies, migration risk, hidden integration work |
evaluation |
Success criteria, regression detection, testability of quality claims |
product |
User-visible failure modes, sequencing, scope realism |
operations |
Rollout, alerting, rollback, failure handling, maintenance burden |
safety |
Privacy, security, hallucination controls, access assumptions |
/seldon --focus safety docs/auth-redesign.mdBy default, Seldon runs inline — the current agent performs the review. For true model independence, plug in an external judge.
- Pick a judge from the
judges/directory - Copy it to
judge-runner.shin the skill root - That's it — Seldon auto-detects it
cd ~/.claude/skills/seldon # or .claude/skills/seldon
# Option A: Codex (requires @openai/codex CLI)
cp judges/codex.sh judge-runner.sh
# Option B: OpenAI API (requires OPENAI_API_KEY)
cp judges/openai.sh judge-runner.sh
# Option C: Anthropic API (requires ANTHROPIC_API_KEY)
cp judges/anthropic.sh judge-runner.shTo switch back to inline review, remove judge-runner.sh.
Uses the OpenAI Codex CLI with full workspace access (read-only sandbox) and schema-enforced structured output.
Prerequisites:
npm install -g @openai/codex| Environment Variable | Default | Description |
|---|---|---|
JUDGE_MODEL |
gpt-5.4 |
Codex model |
JUDGE_REASONING |
xhigh |
Reasoning effort |
JUDGE_WEB_SEARCH |
cached |
Web search mode |
Direct API call to OpenAI Chat Completions. Sends plan content in the prompt (no workspace access).
Prerequisites:
export OPENAI_API_KEY=sk-...| Environment Variable | Default | Description |
|---|---|---|
JUDGE_MODEL |
gpt-4o |
Model to use |
Uses a separate Claude instance for a second opinion within the Anthropic ecosystem.
Prerequisites:
export ANTHROPIC_API_KEY=sk-ant-...| Environment Variable | Default | Description |
|---|---|---|
JUDGE_MODEL |
claude-sonnet-4-6-20250514 |
Model to use |
Create a judge-runner.sh that:
- Accepts
[--focus <mode>] <plan-file> [supporting-files...] - Outputs JSON matching
seldon.schema.jsonto stdout - Exits 0 on success, non-zero on failure (errors to stderr)
See judges/codex.sh for a full reference implementation.
See seldon.schema.json for the complete JSON Schema. Structure:
{
"verdict": "approve | approve_with_changes | request_major_revision",
"summary": "1-3 sentence assessment",
"confidence": 0.82,
"strengths": ["..."],
"blocking_findings": [
{
"severity": "critical | high | medium | low",
"title": "Short description of the issue",
"why_it_matters": "Impact if unaddressed",
"evidence": "What was found in the workspace",
"references": ["src/api.ts:42", "docs/plan.md:18"]
}
],
"non_blocking_findings": [],
"open_questions": ["Things that couldn't be verified locally"]
}| Range | Label |
|---|---|
| 0.90 - 1.00 | 🟢 High confidence |
| 0.70 - 0.89 | 🟡 Moderate confidence |
| 0.50 - 0.69 | 🟠 Low confidence |
| 0.00 - 0.49 | 🔴 Very low confidence |
Seldon works with any agent that supports SKILL.md skills:
- Claude Code
- Gemini CLI
- Any agent supporting the skills.sh ecosystem
Named after Hari Seldon from Isaac Asimov's Foundation series. Seldon developed psychohistory — a science that predicted the future of civilizations by analyzing structural assumptions against reality. At critical decision points, a holographic Seldon would appear and say: "If you're seeing this, here's what you got wrong."
That's what /seldon does for your implementation plans.
MIT