승격 이후 경계 정정으로, doc.go/types.go/main.go의 잔여 standalone Agent·terminal 소유권 문구를 provider 전용·run 단위 표현으로 바꾸고, CLI 설명을 검증하는 Node 회귀 테스트를 추가한다. 승격·복구 증거는 그대로 보존한다. |
||
|---|---|---|
| .claude | ||
| agent-client | ||
| agent-contract | ||
| agent-ops | ||
| agent-roadmap | ||
| agent-spec | ||
| agent-task | ||
| agent-test | ||
| agent-ui | ||
| apps | ||
| configs | ||
| docs | ||
| packages | ||
| proto | ||
| scripts | ||
| tmp/iop-review-followup.MreBOU | ||
| --check | ||
| .aiexclude | ||
| .clineignore | ||
| .clinerules | ||
| .codex | ||
| .cursorignore | ||
| .cursorrules | ||
| .env.dev-corp.example | ||
| .env.dev.example | ||
| .env.example | ||
| .geminiignore | ||
| .gitignore | ||
| agent | ||
| AGENTS.md | ||
| CLAUDE.md | ||
| debug_trace.py | ||
| docker-compose.yml | ||
| GEMINI.md | ||
| go.mod | ||
| go.sum | ||
| go.work | ||
| go.work.sum | ||
| HANDOFF.md | ||
| Makefile | ||
| model_catalog | ||
| opencode.json | ||
| README.md | ||
| streamgate.test | ||
IOP
IOP is a provider and device execution platform. It exposes OpenAI- and Anthropic-compatible inference APIs, routes work through Edge provider pools, executes against Node-owned adapters, and presents fleet operations through Control Plane and the Flutter Client.
Architecture
Client -> Control Plane -> Edge -> Node -> Provider
| |
| +-- normalized inference and provider tunnels
+-- model routing, queues, leases, API compatibility
- Edge owns model routing, provider-pool admission, leases, external APIs, Node readiness, and reconnect fencing.
- Node owns provider adapter construction and local execution.
- Control Plane owns connected Edge views and operation relay, not Edge runtime state.
- Client consumes Control Plane fleet, Node, provider, and operation views.
packages/go/executioncontains transport-neutral provider primitives.
Internal provider selection uses adapter + target. session_id is opaque correlation only, and cancellation targets a non-empty run_id. Provider commands are limited to capabilities, transport status, and the Ollama API tunnel.
IOP does not own interactive host programs, persistent conversations, terminal emulation, arbitrary host command execution, or local filesystem execution context.
Development
make proto
make proto-dart
go test -count=1 ./...
make client-test
make test-control-plane-edge-wire
make test-e2e
Start with agent-contract/index.md for protocol and runtime contracts, and agent-spec/index.md for living implementation summaries.