No description
Find a file
2026-08-13 20:39:10 +09:00
.claude
agent-client fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
agent-contract fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
agent-ops test(openai): 관리형 용량 검증을 보강한다 2026-08-13 16:55:48 +09:00
agent-roadmap Merge remote-tracking branch 'origin/dev' into feature/iop-one-shot-agent-model-comparison 2026-08-13 19:57:33 +09:00
agent-spec fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
agent-task fix(benchmark): 복구 qualification 경계를 고정한다 2026-08-13 20:24:08 +09:00
agent-test Merge remote-tracking branch 'origin/dev' into feature/iop-one-shot-agent-model-comparison 2026-08-13 19:57:33 +09:00
agent-ui
apps fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
configs fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
docs fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
packages fix(runtime): provider stall 재시도를 단일 종료로 제한한다 2026-08-13 20:39:10 +09:00
proto feat(agent): 단일 요청 실행 경로를 완성한다 2026-08-08 23:35:13 +09:00
scripts fix(benchmark): 복구 qualification 경계를 고정한다 2026-08-13 20:24:08 +09:00
.aiexclude
.clineignore
.clinerules
.codex
.cursorignore
.cursorrules
.env.dev-corp.example
.env.dev.example
.env.example
.geminiignore
.gitignore test(openai): 관리형 용량 검증을 보강한다 2026-08-13 16:55:48 +09:00
AGENTS.md
CLAUDE.md
docker-compose.yml
GEMINI.md
go.mod
go.sum
go.work
go.work.sum
HANDOFF.md
Makefile feat(benchmark): 비교 파이프라인 기반을 구축한다 2026-08-09 23:49:04 +09:00
opencode.json
README.md fix(benchmark): 원샷 비교 실행 실패를 해소한다 2026-08-12 14:37:17 +09:00

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/execution contains 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.

Operator and client setup guides: