Files
mcp/PROGRESS_V1.md
Kyle Isom 3f23b14ef4 P0.2: Proto definitions and code generation
Full gRPC service definition with 12 RPCs: Deploy, StopService,
StartService, RestartService, SyncDesiredState, ListServices,
GetServiceStatus, LiveCheck, AdoptContainers, PushFile, PullFile,
NodeStatus. buf lint passes. Generated Go code compiles.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:14:43 -07:00

52 lines
1.5 KiB
Markdown

# MCP v1 Progress
## Phase 0: Project Scaffolding
- [x] **P0.1** Repository and module setup
- [x] **P0.2** Proto definitions and code generation
## Phase 1: Core Libraries
- [ ] **P1.1** Registry package (`internal/registry/`)
- [ ] **P1.2** Runtime package (`internal/runtime/`)
- [ ] **P1.3** Service definition package (`internal/servicedef/`)
- [ ] **P1.4** Config package (`internal/config/`)
- [ ] **P1.5** Auth package (`internal/auth/`)
## Phase 2: Agent
- [ ] **P2.1** Agent skeleton and gRPC server
- [ ] **P2.2** Deploy handler
- [ ] **P2.3** Lifecycle handlers (stop, start, restart)
- [ ] **P2.4** Status handlers (list, live check, get status)
- [ ] **P2.5** Sync handler
- [ ] **P2.6** File transfer handlers
- [ ] **P2.7** Adopt handler
- [ ] **P2.8** Monitor subsystem
- [ ] **P2.9** Snapshot command
## Phase 3: CLI
- [ ] **P3.1** CLI skeleton
- [ ] **P3.2** Login command
- [ ] **P3.3** Deploy command
- [ ] **P3.4** Lifecycle commands (stop, start, restart)
- [ ] **P3.5** Status commands (list, ps, status)
- [ ] **P3.6** Sync command
- [ ] **P3.7** Adopt command
- [ ] **P3.8** Service commands (show, edit, export)
- [ ] **P3.9** Transfer commands (push, pull)
- [ ] **P3.10** Node commands
## Phase 4: Deployment Artifacts
- [ ] **P4.1** Systemd units
- [ ] **P4.2** Example configs
- [ ] **P4.3** Install script
## Phase 5: Integration and Polish
- [ ] **P5.1** Integration test suite
- [ ] **P5.2** Bootstrap procedure test
- [ ] **P5.3** Documentation (CLAUDE.md, README.md, RUNBOOK.md)