Skip to main content

Colony-based decision explorer — a second opinion for complex decisions via MCP

Project description

2ndOpinion

Because the journey tells the real story.

2ndOpinion extends how your AI reasons through complex decisions. It's not a replacement for AI judgment — it's a second opinion.

When you ask Claude or any AI a multi-factor question, it gives you one answer based on its training. 2ndOpinion adds a colony simulation that systematically explores the tradeoff landscape, finding strategies and tensions that pure reasoning might miss. You get your AI's take plus what a colony of cells discovered navigating the causal force field. Both together are stronger than either alone.

Powered by AFS (Atomata Field System) — a colony simulation engine that maps multi-dimensional tradeoff spaces.

Quick Start

1. Install

pip install 2ndopinion

Or from source:

git clone https://github.com/johnrezendes/datasphere
cd datasphere/afs-engine
pip install .

2. Configure

Add to your Claude Code MCP config:

VS Code or CLI — create or edit .mcp.json in your project root:

{
  "mcpServers": {
    "2ndOpinion": {
      "type": "stdio",
      "command": "2ndopinion"
    }
  }
}

If you installed from source and 2ndopinion isn't on your PATH:

{
  "mcpServers": {
    "2ndOpinion": {
      "type": "stdio",
      "command": "python3",
      "args": ["-m", "afs.mcp.cli"],
      "env": {
        "PYTHONPATH": "/path/to/datasphere/afs-engine"
      }
    }
  }
}

3. Use

Just ask Claude for a second opinion:

"Get me a second opinion on which laptop to buy — I'm comparing the MacBook Pro M4, ThinkPad X1 Carbon, and Framework 16"

"Use 2ndOpinion to explore the tradeoffs between hiring 3 junior devs vs 1 senior dev"

"Run AFS on my investment options — S&P 500 index fund vs rental property vs Treasury bonds"

Claude will:

  1. Identify the factors and causal relationships from your prompt
  2. Call the afs-decide tool (you'll see the tool call in the UI)
  3. Run a colony simulation (100 generations, ~20 seconds)
  4. Present the discovered strategies in plain English

What It Does

Traditional AI gives you one answer. AFS gives you a landscape of strategies.

When you compare 4 laptops across price, performance, portability, repairability, and resale value, those factors have causal relationships:

  • Higher price enables better build quality (+0.8)
  • Better performance trades off with battery life (-0.6)
  • Repairability enables better resale value (+0.5)

AFS encodes these relationships as forces in an N-dimensional space, then releases a colony of cells to explore it. Cells gain energy near viable regions, reproduce, and die in barren zones. After 100 generations, the surviving colony clusters around the stable strategies — the stable outcomes in the tradeoff landscape.

Some clusters match your input options. Others are emergent strategies the colony discovered that you didn't think to ask about.

Tools

The MCP server exposes 4 tools:

Tool Use When Input
afs-decide Most decisions Question, options, factors, relationships
afs-explore Full control needed Complete world model JSON
afs-compile Inspect before running World model JSON
afs-run Re-run with tweaks Pre-compiled field + config

afs-decide is the primary tool. It handles world model construction, calibration, simulation, and result interpretation. The other tools are for advanced use cases.

afs-decide Input Format

afs_decide(
    question="Which synthesizer should I buy?",
    options=[
        {"name": "Prophet 6", "price": 3500, "analog_warmth": 85},
        {"name": "Nord Stage 4", "price": 4000, "analog_warmth": 30},
    ],
    factors=[
        {"name": "price", "range": [2000, 6000], "unit": "$", "goal": "minimize"},
        {"name": "analog_warmth", "range": [0, 100], "unit": "score"},
        {"name": "versatility", "range": [0, 100], "unit": "score"},
    ],
    relationships=[
        {"from": "price", "to": "build_quality", "strength": 0.8,
         "why": "premium materials cost more"},
        {"from": "analog_warmth", "to": "versatility", "strength": -0.6,
         "why": "pure analog limits digital flexibility"},
    ],
    generations=100,
)

afs-decide Output

{
    "question": "Which synthesizer should I buy?",
    "strategies": [
        {
            "label": "Prophet 6",           # Matched to input option
            "cell_count": 195,              # Outcome strength
            "values": {                     # Real units, not normalized
                "price": 3515.95,
                "analog_warmth": 85.02,
                "versatility": 59.9,
            },
            "is_emergent": False,
        },
        {
            "label": "Emergent Strategy 2", # Colony discovered this
            "cell_count": 42,
            "values": { ... },
            "is_emergent": True,
        },
    ],
    "summary": {
        "total_strategies": 4,
        "emergent_strategies": 1,
        "strongest_outcome": "Prophet 6",
    },
}

How It Works

  1. You describe the problem — Claude identifies concepts, relationships, and options
  2. World model constructionafs-decide builds a causal force field from your factors and relationships
  3. Homeostasis calibration — 8-10 probe colonies test different parameter configurations, the best is selected automatically
  4. Colony simulation — 128 cells explore the N-dimensional space for 100+ generations (10,000 ticks)
  5. Cluster detection — Density-based clustering identifies where cells settled
  6. Interpretation — Clusters are mapped back to real units and labeled by nearest input option

Requirements

  • Python 3.10+
  • NumPy
  • mcp package (included automatically with pip install 2ndopinion)

Architecture

The MCP server is pure simulation — no LLM API keys needed. The LLM client (Claude, GPT, Cursor) acts as the domain analyzer, building the world model from natural language. The server runs the math.

User → LLM (domain analysis) → afs-decide (simulation) → LLM (interpretation) → User

This means AFS works with any MCP-compatible AI client.

Development

# Clone and install in development mode
git clone <repo>
cd afs-engine
pip install -e ".[openai]"

# Run tests
python3 tests/test_core.py
python3 tests/test_mcp_server.py

# Run MCP server directly
python3 -m afs.mcp.cli

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

2ndopinion-0.2.0.tar.gz (60.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

2ndopinion-0.2.0-py3-none-any.whl (57.6 kB view details)

Uploaded Python 3

File details

Details for the file 2ndopinion-0.2.0.tar.gz.

File metadata

  • Download URL: 2ndopinion-0.2.0.tar.gz
  • Upload date:
  • Size: 60.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for 2ndopinion-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d193f7e59cd267eb1cbae7f7c8e1c8b08b87f9ebb948a37c98771c2f54320335
MD5 2cfb41f23dc38c429b5d3f22cb816a40
BLAKE2b-256 5e060a41b1ed5411f58bfb94aca1ac8b00dcd14d2adb278b13c600006ecddef3

See more details on using hashes here.

File details

Details for the file 2ndopinion-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: 2ndopinion-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 57.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for 2ndopinion-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e9b1537c61675daaa4180319751c5998bdf908aa32eeb7d81b0373786de05a04
MD5 c2a63d777820e03606d1875b9a1a7069
BLAKE2b-256 6cb9a631bed2ebfd173b7549dd79b6c845ca6441345842bc18d3df79376c2278

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page