# Terminal 1
yarn build
yarn arrangent server# Terminal 2
yarn arrangent submit topologies/sample.yaml# Terminal 3
yarn arrangent monitor# List all instances
yarn arrangent list
# Inspect specific node
yarn arrangent inspect parallel-workers
# View instance logs
yarn arrangent logs <instance-id>
# Interact with agent
yarn arrangent interact <instance-id>
# Restart instance
yarn arrangent restart <instance-id>
# Show topology
yarn arrangent topologymemory/
├── {node-id}/
│ ├── config/
│ │ └── base.json # Layer 1: Base configuration
│ ├── instances/
│ │ └── {instance-id}.json # Layer 2: Instance state
│ └── runtime/
│ └── {instance-id}/
│ └── {exec-id}.md # Layer 3: Runtime memory
- 🔵 idle - Waiting for work
- 🔵 running - Executing
- 🟡 waiting - Needs user input
- ⏸️ paused - Paused by user
- 🔴 error - Error occurred
- 🟢 completed - Finished
See CLI_GUIDE.md for complete documentation.