e008c53966
Adopts the v0.9/v1.0 PRD (.ciagent/PRD_v0.9.md) that supersedes the shipped v0.1-v0.8 architecture. The re-architecture is justified by a six-part evidence basis recorded in the PROJECT.md Supersession Table: operational daemon failure, external step-ca mandate, multi-tenancy requirement, WASM workload requirement, SSH-push deployment target, and vision correction. Appends 30 net-new requirements (REQ-061..REQ-090) to REQUIREMENTS.md, the v0.9 (13 phases) + v1.0 (19 phases) reordered plan to ROADMAP.md, the AD-series supersession table to PROJECT.md + ARCHITECTURE.md, and reactivates security-engineer + network-engineer + devops-engineer personas (implements grill C-05). ---ci--- project: orca phase: 0 milestone: v0.9 status: specify ---/ci---
16 KiB
16 KiB
active, deactivated, phase_specific, reason
| active | deactivated | phase_specific | reason | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Orca v0.9 is the first DIRECTION-CHANGE milestone in the project's history. It supersedes the shipped v0.1–v0.8 architecture per the adopted PRD (.ciagent/PRD_v0.9.md). The re-architecture deprecates the daemon/ transport/internal-CA/HCL/single-namespace stack and builds a CLI-only/ SSH-push/step-ca/Markdown-frontmatter/multi-namespace stack plus 8 net-new subsystems. The user overrode the grill's Re-architecture Justification REPLAN with a six-part evidence basis (see PROJECT.md Supersession Table). The ci-griller's 19 binding conditions (C-01..C-19) and 10 phase challenges (PC-01..PC-10) are adopted as execution gates (see GRILL_v0.9.md). Roster changes vs v0.8 (implements grill C-05): - lead-developer: RETAINED — owns the CLI subcommand tree, deprecation sweep (P00), path resolver (P0a1), parser dispatch (P0b), emitter interface (P0c), and milestone coordination. - backend-engineer: RETAINED — owns SSH-push transport (P01), runtime abstraction (P07a/b/c), transaction bundle (P10 design), step-ca integration, secrets crypto. Frameworks updated: golang.org/x/crypto/ssh (existing), golang.org/x/crypto/ssh/knownhosts (existing); pending deps: bytecodealliance/wasmtime-go (C-01 gate), smallstep/cli (I-B-004). - data-engineer: RETAINED — owns per-namespace DB schema split (P0a1, REQ-071), CLI cache DB (R-008), namespace inheritance resolver state (P0a2). Frameworks: modernc/sqlite. - security-engineer: REACTIVATED — owns step-ca provisioning (REQ-076), master.key + AES-256-GCM crypto (REQ-080, C-19 threat model), SPIFFE SVID minting (C-08 spike), SSH-push blast-radius review, Traefik edge, .env.secrets threat model. The re-architecture reverses AD-010 (step-ca rejection) and the SPIFFE rejection at PROJECT.md:94; both reversals are justified in the Supersession Table. - network-engineer: REACTIVATED — owns socket-based service exposure (R-007, P08), Syncthing P2P ports (P09), Traefik routing + dynamic config atomicity (P02, C-10). The transport layer moves from mTLS HTTP daemon-to-daemon to SSH CLI-to-server; network-engineer reviews the new trust surface. - devops-engineer: REACTIVATED — owns bash scripts (scripts/orca-*.sh, C-15..C-18: bats/shellcheck/shfmt gate, render-format contract, slog-syslog), systemd timers (orca-pull/drift/aggregate, C-09 failure contract, C-11 watchdog), hermetic test infra (P00 bootstrap, P08 expand, REQ-087). - cli-engineer: remains DEACTIVATED — CLI surface growth is owned by lead-developer (cobra subcommands) + backend-engineer (transport); reactivation optional if CLI subcommand surface exceeds lead-developer bandwidth. - frontend-engineer: remains DEACTIVATED — no web UI (unchanged from v0.1 onward; R-014 makes Markdown canonical, not a web UI). |
Personas: Orca
v0.9 persona assessment (supersedes v0.8)
The v0.9 re-architecture introduces 5 new external apt dependencies (step-ca,
Traefik, Syncthing, wasmtime, podman), 8 net-new subsystems, and deprecates
~10k lines of shipped daemon/transport/CA/HCL code. The active roster grows
from 3 to 6 to cover the new attack surfaces and deployment model. Territory
enforcement remains in warn mode per config.json.
lead-developer
- Domain: coordination
- Frameworks:
cobra,net/http/httptest,testing - Constraints:
boundary-enforcement,offline-first,no-redundant-implementations,coverage-floor-70 - Territory:
cmd/**,internal/cli/**,cmd/verify-reqs/**,Makefile,.coreci.yml,.ciagent/** - Active: true
- Reason: Owns P01 coverage for
cmd/orca(smoke test ofmain()/cli.Execute()),internal/clicoverage for the non-node, non-daemon subcommands (cert *,doctor *,audit list,status,version), and the P03cmd/verify-reqs/main.goGo program +make verify-reqsMakefile target +.coreci.ymlvalidate-pipeline hook. Addedcoverage-floor-70constraint (D-047 tiered floor: 70% for the 6 under-50% packages, 50% for the 3 zero-test packages). Addedtesting+net/http/httptestto frameworks (test-only phase).
backend-engineer
- Domain: backend
- Frameworks:
cobra,net/http,net/http/httptest,golang.org/x/crypto/ssh,golang.org/x/crypto/ssh/knownhosts,testing - Constraints:
API-first,error-handling,minimal-dependencies,security-first,tofu-host-key-pinning,pinned-host-key-fail-closed,atomic-file-rewrite,coverage-floor-70 - Territory:
internal/transport/**,internal/engine/**,internal/proxmox/**,internal/cli/node.go,internal/daemon/**(tests only) - Active: true
- Reason: Owns P01 coverage for
internal/transport(httptest.NewTLSServer for mTLS + stubDispatcher for DispatchClient) andinternal/engine(LocalExecutor stubs + PeerRegistry in-memory tests). Owns P02 SSH trust hardening:--host-key-fingerprintpinned callback ininternal/proxmox/bootstrap.go(D-045 OpenSSH SHA256:base64 format, AD-027/AD-028), the TOFU capture-fix (knownhosts.New returns KeyError{Want:[]} on first connect — must capture-and-persist via knownhosts.Line, AD-029 atomic rewrite), thesessionRunnerseam refactor (P01 enabler for proxmox coverage), andinternal/cli/node.go--host-key-fingerprintflag +key-resetsubcommand (D-046 local known_hosts only). Frameworks updated:connectrpcREMOVED (not in go.mod per AD-014 — config.json still lists it but it's a stale entry),golang.org/x/crypto/ssh+knownhostsADDED (direct dep since v0.6 D-030). Addedpinned-host-key-fail-closed+atomic-file-rewrite+coverage-floor-70constraints.
data-engineer
- Domain: data
- Frameworks:
modernc/sqlite,iter,hashicorp/hcl/v2,testing - Constraints:
schema-first,migration-safe,local-storage-only,no-goroutine-leak,nullable-column-handling,coverage-floor-70 - Territory:
internal/store/**,internal/audit/**,internal/certpaths/**,internal/jobspec/**,internal/model/**,internal/store/migrations/** - Active: true
- Reason: Owns P01 coverage for
internal/store(including the missingcert_repo_test.go— a v0.7 P01 leftover; Insert/Get/List/ListByNode/LatestForKind/PruneOlderThan/Delete + N=3 rotation history per REQ-025),internal/audit(sqlite-backed audit_log row asserts viaengine.Audit+store.AuditRepo, slog capture via test handler),internal/certpaths(path-join asserts with temp dir + ORCA_HOME/ORCA_DB env), andinternal/jobspec(golden-file HCL fixtures in a newtestdata/dir + error-path table for Parse/Validate/ParseFile). Frameworks updated:iter+hashicorp/hcl/v2added (matches actual go.mod — jobspec uses hclsimple; store Watch uses iter.Seq). Addedcoverage-floor-70constraint.
cli-engineer
- Active: false (v0.8)
- Reason: Deactivated — merged into lead-developer. The cli coverage work is test-only;
--host-key-fingerprintandkey-resetare a 1-flag and 1-subcommand addition to the existinginternal/cli/node.go, not a new CLI subsystem.
security-engineer
- Active: false (v0.8)
- Reason: Deactivated — v0.8 refines the existing proxmox SSH trust surface (pinned host-key callback, key-reset known_hosts rewrite) but does NOT add new security architecture (no new CA, no new X.509, no new crypto). The trust work is backend-engineer territory (SSH dialer + known_hosts file manipulation). The
internal/security/sshkey.gois unchanged in v0.8. Was active in v0.6 (SSH keygen + sudoers), deactivated in v0.7, remains deactivated in v0.8.
devops-engineer
- Active: false (v0.8)
- Reason: Deactivated —
verify-reqsis a Go program (cmd/verify-reqs/main.go), not a CI/packaging change. The.coreci.ymledit is a 3-line validate-pipeline hook (lead-developer territory). No install.sh, Dockerfile, or release-pipeline surface in v0.8.
network-engineer
- Active: false (v0.8)
- Reason: Deactivated — no transport/mTLS surface change.
internal/transportcoverage is test-only on the existing mTLS layer (httptest.NewTLSServer, no new TLS config). The SSH trust work is point-to-point bootstrap, not the mTLS mesh network-engineer owns.
frontend-engineer
- Active: false (v0.8)
- Reason: No web UI in Orca (unchanged from v0.1 onward).
Territory Enforcement
- Mode:
warn(perconfig.json) - Behavior: Out-of-territory file changes log a warning but do not block.
- Key overlaps in v0.8 (lead-developer adjudicates):
internal/cli/node.go— backend-engineer (--host-key-fingerprintflag +key-resetsubcommand + proxmox pass-through) vs lead-developer (cli coverage tests). Boundary: backend owns the command implementation; lead owns the test files (node_test.go).internal/proxmox/bootstrap.go— backend-engineer (pinned callback, TOFU fix, sessionRunner seam) vs data-engineer (no overlap — proxmox has no store/audit code). Clean boundary.cmd/verify-reqs/main.go— lead-developer (Go program + Makefile + .coreci.yml) vs data-engineer (no overlap — verify-reqs parses markdown, not DB). Clean boundary.internal/store/cert_repo_test.go— data-engineer (test file) vs backend-engineer (no overlap — cert_repo is data territory). Clean boundary.
v0.8 vs v0.7 Persona Diff
| Change | Rationale |
|---|---|
lead-developer retained |
Owns cmd/orca smoke test, internal/cli coverage (non-node subcommands), cmd/verify-reqs Go program. |
backend-engineer retained |
Owns internal/transport + internal/engine tests + SSH trust-surface in proxmox + cli/node. Frameworks corrected: connectrpc removed (not in go.mod), x/crypto/ssh added. |
data-engineer retained |
Owns internal/store (cert_repo gap) + internal/audit + internal/certpaths + internal/jobspec tests. Frameworks corrected: iter + hcl/v2 added. |
security-engineer remains deactivated |
v0.8 refines existing SSH trust surface, no new security architecture. |
cli-engineer remains deactivated |
Merged into lead-developer (test-only + 1 flag + 1 subcommand). |
devops-engineer remains deactivated |
verify-reqs is a Go program, not CI/packaging. |
network-engineer remains deactivated |
No transport/mTLS surface change (test-only). |
frontend-engineer remains deactivated |
No web UI. |
v0.7 baseline (preserved for traceability)
active_personas:
- lead-developer
- backend-engineer
- data-engineer deactivated_personas:
- cli-engineer
- security-engineer
- devops-engineer
- network-engineer
- frontend-engineer phase_specific: [] reason: | Orca v0.7 is an NFR hardening & completion milestone. The work is CLI registration (cert command), a new internal/config package, test coverage uplift across engine/transport/proxmox/audit, and an opt-in pprof endpoint on the daemon. No schema changes, no new security surface, no packaging/distribution, no UI.
Roster changes vs v0.6:
- data-engineer: RETAINED — owns cert_repo tests + store coverage.
- security-engineer: DEACTIVATED — v0.7 adds no new security surface (pprof is operator-only, addr-gated; cert registration exposes existing security code, does not add new).
- cli-engineer: DEACTIVATED — merged into lead-developer for v0.7 (the cert registration is a 1-line AddCommand; config --config flag is root-command wiring, not a new CLI subsystem).
- devops-engineer: DEACTIVATED — no packaging/distribution in v0.7.
lead-developer (v0.7)
- Domain: coordination
- Frameworks:
cobra - Constraints:
boundary-enforcement,offline-first,no-redundant-implementations - Territory:
**/*.go,cmd/**,internal/** - Active: true
- Reason: Coordination across P01/P02/P03. SSH/bootstrap touches security + cli + store + doctor — territory overlaps need adjudication (proxmox package boundary, doctor Proxmox check scaffolding).
backend-engineer (v0.7)
- Domain: backend
- Frameworks:
cobra,net/http,golang.org/x/crypto/ssh - Constraints:
API-first,error-handling,minimal-dependencies,security-first,idempotent-bootstrap - Territory:
**/api/**,**/*_handler*,**/*_handler.go,internal/daemon/**,internal/proxmox/**,internal/cli/init.go - Active: true
- Reason: Owns the
orca initfull-bootstrap orchestration (CA + cert + db + localhost node, idempotent) and theinternal/proxmox/bootstrap.goSSH session sequence (dial, deploy pubkey, useradd, pveum, sudoers, visudo validate). Addedidempotent-bootstrapconstraint (D-036 — re-run must be skip-and-refresh) andgolang.org/x/crypto/sshto frameworks.
data-engineer (v0.7)
- Domain: data
- Frameworks:
modernc/sqlite,iter - Constraints:
schema-first,migration-safe,local-storage-only,no-goroutine-leak,nullable-column-handling - Territory:
**/store/**,**/model.go,**/migration*,migrations/**,internal/store/migrations/**,internal/model/node.go - Active: true
- Reason: Reactivated for v0.6. Owns migration
0006_node_kind_os.sql(REQ-049 — nullablekind/oscolumns, backward-compatible) andNodeReposchema extension (Insert/Get/List/Watch/scanNode column additions + newGetByName/UpdateLastSeenAndOShelpers). Addednullable-column-handlingconstraint (NULL →""in Go struct, not nil-deref).
cli-engineer (v0.7)
- Domain: CLI/UX
- Frameworks:
cobra,pflag - Constraints:
discoverable-help,consistent-flag-naming,human-readable-output,machine-readable-json-flag,signal-handling,password-flag-redaction - Territory:
cmd/**,internal/cli/**,internal/commands/** - Active: true
- Reason: Owns
orca initmulti-step bootstrap output UX (progress lines per step),orca node join --type/--host/--user/--password/--proxmox-user/--proxmox-roleflag wiring, anddoctor os/doctor proxmoxsubcommand wiring. Addedpassword-flag-redactionconstraint (D-031 —--passwordnever echoed, prefer$ORCA_PROXMOX_PASSWORD, zero after use).
security-engineer (v0.7)
- Domain: security
- Frameworks:
crypto/tls,crypto/x509,crypto/ed25519,golang.org/x/crypto/ssh,slog - Constraints:
no-panic-in-production,structured-audit-logging,no-secret-in-logs,input-validation,least-privilege,tofu-host-key-pinning,noexec-sudoers - Territory:
**/auth/**,**/audit/**,internal/security/**,internal/transport/**(TLS config only),internal/proxmox/**(SSH + sudoers + PVE role) - Active: true
- Reason: Reactivated for v0.6. Owns
internal/security/sshkey.go(Ed25519 keygen, 0600/0644 mode enforcement per REQ-033 spirit), TOFU host-key pinning viaknownhosts.New, sudoers least-privilege design (NOEXEC on pct/qm, exclude pvesh, no NOEXEC on apt-get/dpkg), password redaction (D-031), and audit logging of all bootstrap/join actions (REQ-052). Addedtofu-host-key-pinningandnoexec-sudoersconstraints. Co-ownsinternal/proxmox/**with backend-engineer (security owns SSH auth + sudoers content; backend owns the session orchestration).
devops-engineer (v0.7)
- Active: false (v0.6)
- Reason: Deactivated — v0.6 has no install.sh, Dockerfile, .coreci.yml, or release-pipeline surface. The Proxmox SSH bootstrap is backend + security work, not devops. Was active in v0.5 (distribution milestone).
network-engineer (v0.7)
- Active: false (v0.6)
- Reason: v0.6 has no transport/mTLS surface. SSH is point-to-point bootstrap, not the mTLS mesh network-engineer owns.
frontend-engineer (v0.7)
- Active: false (v0.6)
- Reason: No web UI in Orca (unchanged from v0.1 onward).
v0.6 vs v0.5 Persona Diff (v0.7 baseline reference)
| Change | Rationale |
|---|---|
data-engineer reactivated |
Owns migration 0006 + NodeRepo schema extension (kind/os columns). |
security-engineer reactivated |
Owns SSH keygen, TOFU host-key, sudoers, PVE role — first-class security surface. |
devops-engineer deactivated |
v0.6 has no packaging/distribution surface. |
network-engineer remains deactivated |
No transport/mTLS surface. |
frontend-engineer remains deactivated |
No web UI. |