Skip to content

Latest commit

 

History

History
71 lines (54 loc) · 1.33 KB

File metadata and controls

71 lines (54 loc) · 1.33 KB

CLI Management System - Quick Reference

Starting the System

1. Start Server

# Terminal 1
yarn build
yarn arrangent server

2. Submit Topology

# Terminal 2
yarn arrangent submit topologies/sample.yaml

3. Monitor Activity

# Terminal 3
yarn arrangent monitor

Common Commands

# 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 topology

Memory Structure

memory/
├── {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

Agent States

  • 🔵 idle - Waiting for work
  • 🔵 running - Executing
  • 🟡 waiting - Needs user input
  • ⏸️ paused - Paused by user
  • 🔴 error - Error occurred
  • 🟢 completed - Finished

Full Documentation

See CLI_GUIDE.md for complete documentation.