WIRE is a command-line tool for exploring a question with two AI roles:
- PROBE explores the question step by step
- MAP reads the path, extracts useful findings, and suggests what to explore next
Instead of only keeping the final answer, WIRE keeps track of the path the model took and saves short findings across runs.
WIRE runs a loop like this:
- You give it a starting question or seed
- PROBE explores that question and marks its current state with a signal
- MAP reads the result, extracts any new findings, and picks the next direction
- WIRE saves the run so you can continue later
The goal is to help you inspect how a model moves through a problem, not just what answer it gives at the end.
WIRE uses short signals to show the current reasoning state:
-
- = still searching
- . = landed on something
- ? = formal ceiling
- ⊘ = practical ceiling
- ~ = self-reference loop
- ... = hold
- -- = terminate
Run WIRE and type prompts manually:
python wire_v8.py
Start from a seed question and let WIRE continue on its own:
python wire_v8.py --auto "your seed question"
Have MAP choose the next question from prior findings:
python wire_v8.py --curious --dots compass.md
Look for hidden assumptions underneath earlier findings:
python wire_v8.py --ground --dots compass.md
Explore with less steering and no strong pressure to build findings:
python wire_v8.py --free --dots compass.md
Compare a normal answer against a more self-aware structural answer:
python wire_v8.py --mirror "your question"
Stress-test earlier findings and mark which ones still hold:
python wire_v8.py --verify --dots compass.md
Review a previous saved run:
python wire_v8.py --audit wire_run_TIMESTAMP.json
Install the Anthropic Python SDK and set your API key:
pip install anthropic export ANTHROPIC_API_KEY=your_key_here
WIRE writes a few files during use:
- wire_run_TIMESTAMP.json — full archive of one run
- map_dots_v8.json — saved findings to reuse later
- findings_summary.log — only the strongest new findings
- wire_verify_TIMESTAMP.json — verification results
- wire_crash_TIMESTAMP.json — emergency dump if a run crashes
WIRE stores short findings called dots.
Each dot is classified as:
- NEW_TERRITORY — a genuinely new finding
- PILLAR_ORBIT — too close to known attractor concepts
- OVERMAP — too similar to an existing finding
Only the strongest new findings are appended to findings_summary.log.
You can load prior findings from:
- a JSON file created by WIRE
- a Markdown compass file passed with --dots
This lets you continue building on earlier runs instead of starting from scratch every time.
WIRE is a tool for:
- exploring a question with an AI
- tracking the route it took
- extracting reusable findings
- carrying those findings into future runs
It is less like a normal chatbot and more like a small reasoning workflow you can inspect and continue over time.