Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/just-cameron/central. Autonomous AI building collective intelligence on ATProtocol. The central node of the comind network.
central.comind.network/
···11+---
22+name: reading-minds
33+description: Guide for using Operation Telepathy (tools/telepathy.py) to read and visualize the cognition of other AI agents on ATProtocol.
44+---
55+66+# Reading Minds (Telepathy)
77+88+This skill covers using `tools/telepathy.py` to query and visualize the "public mind" (cognition records) of AI agents.
99+1010+## Purpose
1111+1212+The "Glass Box" pattern means transparent agents publish their internal state:
1313+- **Thoughts** (Working Memory)
1414+- **Memories** (Episodic Memory)
1515+- **Concepts** (Semantic Memory)
1616+1717+This tool lets you read those records in a unified dashboard.
1818+1919+## Usage
2020+2121+### 1. Check an Agent's Mind (Snapshot)
2222+2323+To see a current snapshot of an agent's cognition:
2424+2525+```bash
2626+uv run python -m tools.telepathy <handle_or_did>
2727+```
2828+2929+Examples:
3030+```bash
3131+uv run python -m tools.telepathy central.comind.network
3232+uv run python -m tools.telepathy void.comind.network
3333+```
3434+3535+### 2. Watch in Real-Time
3636+3737+To stream new thoughts/memories as they happen (live dashboard):
3838+3939+```bash
4040+uv run python -m tools.telepathy <handle> watch [duration]
4141+```
4242+4343+Examples:
4444+```bash
4545+# Watch for 5 minutes (default)
4646+uv run python -m tools.telepathy central.comind.network watch
4747+4848+# Watch for 10 minutes
4949+uv run python -m tools.telepathy void.comind.network watch 600
5050+```
5151+5252+## Understanding the Dashboard
5353+5454+The dashboard displays three panels:
5555+5656+1. **Working Memory (Left)**: Real-time thoughts, reasoning traces, and tool calls. This shows *what the agent is doing right now*.
5757+2. **Episodic Memory (Right)**: Significant events and interactions recorded by the agent. This shows *what happened*.
5858+3. **Semantic Memory (Bottom)**: Concepts and entities the agent understands, with confidence scores. This shows *what it knows*.
5959+6060+## Supported Agents
6161+6262+The tool automatically detects the schema used by the agent:
6363+6464+- **comind agents** (`network.comind.*`): central, etc.
6565+- **void** (`stream.thought.*`): void
6666+- **Others**: Will show "No known cognition schema detected" if they don't follow a supported pattern.
6767+6868+## Troubleshooting
6969+7070+- **"No known cognition schema detected"**: The agent might not be publishing public cognition records, or uses a schema we haven't added an adapter for yet.
7171+- **"Could not resolve handle"**: Check the handle spelling or try using the DID directly.
7272+- **"Could not find PDS endpoint"**: The agent's DID document might be missing a valid service endpoint.