No description
Find a file
2026-08-13 15:15:46 +09:00
.claude
agent-client feat(protocol-profile): 멀티 프로토콜 프로필을 추가한다 2026-08-01 10:33:10 +09:00
agent-contract fix(edge): Plan 구조 출력을 배열로 고정한다 2026-08-12 18:41:23 +09:00
agent-ops fix(agent-ops): release ref prune를 보강한다 2026-08-13 10:36:35 +09:00
agent-roadmap fix(benchmark): direct 진단 런타임을 안정화한다 2026-08-13 09:14:23 +09:00
agent-spec fix(benchmark): direct 진단 런타임을 안정화한다 2026-08-13 09:14:23 +09:00
agent-task/archive/2026 fix(benchmark): 종료 증거와 실행 경계를 정리한다 2026-08-13 08:43:34 +09:00
agent-test feat(benchmark): direct 연결 실행을 안정화한다 2026-08-11 04:46:29 +09:00
agent-ui docs(agent-ui): 설정 후보 등록 규칙을 정리한다 2026-08-03 15:53:39 +09:00
apps fix(openai): 스트림 정지 종료를 복구한다 2026-08-13 11:43:37 +09:00
configs feat(single_request): implement bounded Plan and Review Markdown templates 2026-08-09 08:41:03 +09:00
docs fix(openai): 스트림 정지 종료를 복구한다 2026-08-13 11:43:37 +09:00
packages fix(edge): Plan 구조 출력을 배열로 고정한다 2026-08-12 18:41:23 +09:00
proto feat(agent): 단일 요청 실행 경로를 완성한다 2026-08-08 23:35:13 +09:00
scripts fix(openai): 스트림 정지 종료를 복구한다 2026-08-13 11:43:37 +09:00
.aiexclude
.clineignore
.clinerules docs(agent-ops): 마일스톤과 설정 UI 기준을 갱신한다 2026-08-03 07:50:57 +09:00
.codex
.cursorignore
.cursorrules docs(agent-ops): 마일스톤과 설정 UI 기준을 갱신한다 2026-08-03 07:50:57 +09:00
.env.dev-corp.example
.env.dev.example
.env.example
.geminiignore
.gitignore sync: agent-ops from agentic-framework v1.1.178 2026-07-29 11:15:39 +09:00
AGENTS.md docs(agent-ops): 마일스톤과 설정 UI 기준을 갱신한다 2026-08-03 07:50:57 +09:00
CLAUDE.md docs(agent-ops): 마일스톤과 설정 UI 기준을 갱신한다 2026-08-03 07:50:57 +09:00
docker-compose.yml
GEMINI.md docs(agent-ops): 마일스톤과 설정 UI 기준을 갱신한다 2026-08-03 07:50:57 +09:00
go.mod Merge dev into feature/iop-hot-path-one-shot-execution 2026-08-04 16:11:49 +09:00
go.sum refactor(runtime): promote provider-only execution boundary 2026-08-02 20:28:45 +09:00
go.work
go.work.sum feat(credential): Provider Credential Slot 라우팅을 구현한다 2026-08-02 09:10:11 +09:00
HANDOFF.md docs(roadmap): Chronos 분리 마일스톤을 종료한다 2026-08-02 21:52:44 +09:00
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: