Update code map with RPC directory structure

This commit is contained in:
Mario Zechner 2025-12-09 14:14:05 +01:00
parent 3559a43ba0
commit 1194fb8afa

View file

@ -110,11 +110,14 @@ packages/coding-agent/src/
├── modes/ # Run mode implementations
│ ├── index.ts # Mode exports
│ ├── print-mode.ts # Non-interactive print mode
│ ├── rpc-mode.ts # RPC/JSON mode for programmatic use
│ └── interactive/ # Interactive TUI mode
│ ├── interactive-mode.ts # InteractiveMode class
│ ├── components/ # TUI components
│ └── theme/ # Theme definitions
│ ├── interactive/ # Interactive TUI mode
│ │ ├── interactive-mode.ts # InteractiveMode class
│ │ ├── components/ # TUI components
│ │ └── theme/ # Theme definitions
│ └── rpc/ # RPC/JSON mode for programmatic use
│ ├── rpc-mode.ts # RPC server (stdin/stdout JSON protocol)
│ ├── rpc-types.ts # RpcCommand, RpcResponse types
│ └── rpc-client.ts # RpcClient class for embedding
└── utils/ # Generic utilities
├── changelog.ts # Changelog parsing