Surgical corrections only; the file is deliberately NOT restructured (deferred). Deleted the expired TEMPORARY block. It read "felhom-pve is at a remote site (until ~2026-08-02) ... Delete this block on return" and was still being read as current fact on 2026-08-06, four days past its own deadline, while felhom-controller/CLAUDE.md asserted the opposite. The location-independence fact worth keeping (localapi binds 169.254.253.1:8443 on vmbr9 since the R-50 island migration) moved to an HTML comment. Every component version literal is gone from effective text, including the --version reading and the go.mod Go directive. Versions change several times a day; ask the hub's /hosts + /configs or the box. The drill-VM claim and the host addresses now point at documentation/operations/nodes.md, which already stated both correctly. This file's drill-VM claim was the correct one -- confirmed by qm list on demo-hp. The R-115/R-188/R-186 release narratives moved to an HTML comment and to the felhom-build-deploy skill; the directives stayed (never hand-roll the build; the build -> tag -> publish -> push order; reproducible -trimpath -buildvcs=false). The health-check block-I/O rule became .claude/rules/health-checks.md, scoped to the five packages where health checks are written. It had been duplicated from felhom.eu/CLAUDE.md with a note explaining that that file does not load in an agent-only session -- correct reasoning, made obsolete by path-scoped rules. agent_gates.py registers the shared instructions gate. Docs only -- no Go, no version bump, nothing built or deployed. Ledger: felhom.eu/documentation/audits/LEDGER-instruction-trim-2026-08-06.md Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JJc8sAGRWmavP3rMtdpkr2
14 KiB
CLAUDE.md — felhom-agent
Loads when Claude Code touches this repo. Stable orientation only — current state lives in
CONTEXT.mdand the top ofCHANGELOG.md, never here. Cross-repo orientation: workspace-root/mnt/5_hdd/felhom.eu/git/CLAUDE.md.
What this repo is
felhom-agent is the operator-tier host agent that runs on each Proxmox host and owns all
Proxmox interaction: provision/restore guests, host storage, backup/restore orchestration, the hub
control loop, and a narrow per-guest local API. It is the most privilege-sensitive component.
- Renamed former
proxmox-controllerrepo. - Distinct from
felhom-controller— that is the in-guest controller (Docker-only, no Proxmox creds). Do not confuse them. - Control plane, not data plane: if the agent dies, apps keep serving; only management degrades.
Read before writing code
REUSE.md— canonical helpers, format-safety guards, traps, seams. Check it first; update it in the same commit that changes a shared helper or pattern.CONTEXT.md(current state + open threads) and the topCHANGELOG.mdentry (authoritative history).- Design doc:
felhom.eu/documentation/architecture/03-host-agent.md(locked). Platform facts:felhom.eu/documentation/proxmox-platform.md+tests/phase{0,1-2,3,4}-findings.md.
Layout (verified against the tree)
cmd/felhom-agent/ main + flags + --selftest modes + the daemon entry
cmd/felhom-opsign/ offline operator signing CLI (SSHSIG)
internal/authz/ operator signed-op verifier (SSHSIG) + durable FileNonceStore
internal/backup/ vzdump backup runner + restore-test scheduler + report store
internal/capability/ live sudo-policy capability probe (degradation visibility)
internal/config/ JSON config + FELHOM_AGENT_* env overlay; secrets redacted (Redacted())
internal/desired/ hub desired-state syncer (envelope observer)
internal/escrow/ PBS-key escrow (zero-knowledge recovery code)
internal/guesthook/ pre-start self-heal hookscript install
internal/hub/ daemon: HostReport collector + Bearer client + resilient Loop
internal/lanresolver/ split-horizon DNS on guest IP change (dnsmasq RESTART, not reload)
internal/localapi/ per-guest local API: token store, disks/format, guest binds, controller swap,
stale-lock recovery, pinned self-signed leaf
internal/log/ slog setup
internal/pbs/ PBS-API client (fingerprint-pinned) + verify maintenance loop
internal/provision/ guest bootstrap back-half (token mint → bootstrap.json → pct bind)
internal/proxmox/ API-first Client + fenced root-CLI Privileged + UPID WaitTask
internal/reconcile/ reconcile engine + reversibility gate + op journal + crash recovery
internal/signedjobs/ operator-signed destructive executors (wipe, decommission)
internal/storage/ storage observer + durable ids + role/claim classifiers + SudoHostOps + watchdog
Build / run
- Module
gitea.dooplex.hu/admin/felhom-agent; binaryfelhom-agent(cmd/felhom-agent/). - Pure Go stdlib +
golang.org/x/cryptoonly — no web frameworks. The Go version isgo.mod's business, not this file's. DooPlex (where CC runs) has the toolchain — build and run live tests locally. - Version via
-ldflags "-X main.version=<v>";--versionflag. Bump on meaningful changes + CHANGELOG entry. - Full build/deploy/publish runbook: use the
felhom-build-deployskill. Summary:
Clean-tree gate before any build:
git status --porcelainmust be empty andgit rev-parse HEADmust equalgit rev-parse origin/mainin the repo being built. An unpushed change does not exist — never build a dirty or unpushed tree. Thegit pullin the build step stays (it is a no-op when you work in this tree, and load-bearing if anything was pushed from elsewhere).
RELEASING IS ONE COMMAND, AND IT PUBLISHES (R-115). Never hand-roll the build. The release script also creates the
v<version>git TAG thatfelhom-host-install.shfetches that version's sixteen config files from (R-183), and verifies by an independent download rather than trusting the publish step's own output. The order is build → tag LOCALLY → publish → push tag, and each step protects something (R-188, R-186). A released binary is independently verifiable: the build uses-trimpath -buildvcs=false, so the same source produces the same bytes.The ordering rationale, the verification recipe and the
publish-agent.shflag-parity trap are in thefelhom-build-deployskill.
| Step | Where | One-liner |
|---|---|---|
| Release (build + tag + publish + verify) | DooPlex (local) | GITEA_USER=admin GITEA_TOKEN=<tok> scripts/release-agent.sh <ver> — refuses a dirty/unpushed tree and refuses to re-release an existing version |
| Copy | local → felhom-pve | scp /tmp/felhom-agent-<v> felhom-pve:/tmp/ (one hop) |
| Deploy | felhom-pve | backup .bak-<old> → install -m0755 → systemctl restart felhom-agent (non-root felhom-agent user, config /etc/felhom-agent/agent.json) |
| Ship configs | felhom-pve | sudoers (/etc/sudoers.d/felhom-agent) + guarded-mkfs wrapper WITH the binary when configs/ changed |
| Verify (anyone, any time) | anywhere with the repo + Go | git checkout v<ver> && go build -trimpath -buildvcs=false -ldflags "-X main.version=<ver>" -o /tmp/a ./cmd/felhom-agent && sha256sum /tmp/a — must equal curl -fsSL <pkg-url> | sha256sum |
| Vouch | hub operator UI | Configs → Day-0 artifacts. Deliberately NOT automated — vouching is what points machines at a version, and it stays your act (prove-then-vouch) |
| Verify | felhom-pve | felhom-agent --version + journal (clean ReassertGuestBinds, no capability degradation) |
Proxmox model (the load-bearing rules)
- API-first via a scoped
FelhomAgenttoken. Raw root-CLI is fenced to exactly 3 exceptions: keyctlpct create(golden image), USB mount/fstab, SMART/sensors.Clientnever shells out;Privilegednever makes HTTP calls (asserted byrouting_test.go). Keep that fence. - Every mutating op is async → returns a UPID →
WaitTaskassertsexitstatus == "OK". A 200 on the POST is not success; authorization can fail at task execution. - TLS: SHA-256 leaf-cert pinning (self-signed host cert). No insecure default.
- Privsep token gotcha: a
--privsep 1token's rights = intersection of the backing user's perms AND the token's ACLs — the role must be granted on both, or every call 403s. - Destructive ops go through the reconcile gate / signed-jobs path — never call
Client.DestroyLXC/Vzdump/SetConfigad-hoc (REUSE.md §3).
Demo host (for live tests)
Two demo nodes: demo-felhom (N100, ssh felhom-pve) and demo-hp (HP t740, ssh demo-hp,
no baked key — break-glass via the hub). Addresses, routes, node names, break-glass recipe and what
is provisioned on each: felhom.eu/documentation/operations/nodes.md — the single home; do not
restate them here, and re-check an address rather than trusting one written down.
Which box is safe to break, and what may be done to each:
felhom.eu/documentation/runbooks/target-selection.md — read it before any destructive test.
Drill and build VMs belong on demo-hp, not DooPlex (operator ruling 2026-07-25).
The agent pins the served leaf cert — verify the fingerprint still matches before a live run.
Selftest modes (run locally on DooPlex, pointed at the demo API):
--selftest[=read|task|hub|storage|backup|restore-test|pbs-verify]; no flag = the daemon.
Conventions
Trunk-based — no branches
All shippable work commits directly to main; main equals what is deployed.
- Report-only artifacts (audits, findings, fixspecs) →
felhom.eu/documentation/(audits/,backlog/). - Risky/supervised fixes are spec'd, then implemented during the supervised session, on
main. - Unattended escape hatch: if a fix can't be cleanly verified/shipped, revert + report — never park on a branch.
In every repository where you make a change, update both files in that repo:
CHANGELOG.md— cumulative log, newest on top.REPORT.md— overwrite with the most recent implementation/validation summary only.Never write secrets into any committed file — reference them as "stored out-of-band".
- Code quality: verify generated code for bugs/edge cases; add debug logging; ask rather than guess when you'd otherwise invent input/output.
- A health check issues no block I/O — full rule, measurement and scope:
.claude/rules/health-checks.md, which loads when you touch the packages that write them. - Update
REUSE.mdif you added/changed/deprecated a shared helper or pattern (same commit). - Run
python3 scripts/agent_gates.pyfrom the repo root after ANY change in this repo. It is the ONE entry point for this repo's gates. Today it runs one —reuse_refs_checkover this repo'sREUSE.md— and it exists at one gate on purpose: a census on 2026-08-02 found that every check aCLAUDE.mdnames was passing and two of the four nobody is told to run were failing, and this repo was the extreme case, with nothing running against it at all and 90 cited paths checked by no one. It grows when the agent grows a second check.--fastselects the gates that touch no network and no container runtime; today that is all of them. A missing gate is a FAILURE, never a skip. The sharedreuse_refs_check.pylives infelhom.eu/scripts/and is never copied here — a copy would recreate the drift it detects; an absent sibling clone FAILS the gate. The pre-push hook (.githooks/pre-push) runs it with--fastand refuses a failing push. It is per-clone — switch it on once withgit config core.hooksPath .githooks, and a manual run WARNS when this clone is unarmed.git push --no-verifybypasses it deliberately; say so in the session report when you use it. Both facts are why CI is still owed (OPEN-ITEMS.mdR-168). - Testing doctrine (non-hollow tests, red-proofs, seams): use the
felhom-testingskill. - Logging: the slog logger fans out to journald (configured level) + the always-DEBUG
applog.Ring(remote pulls) — English, keys-never-values, durations on outcomes; full rules infelhom.eu/documentation/runbooks/logging-conventions.md.
Live validation
Exercise the SERVER-SIDE PIPELINE a real user triggers, end-to-end. The forbidden shortcut is BYPASSING it (the F9 episode: raw guest-attach + hand-set state). Invoking the exact endpoint the UI invokes is an acceptable proxy when a browser isn't available — say which method was used. Low-level mechanism tests where the direct call IS the mechanism are exempt.
Workflow & artifacts
- Implement
TASK.md/TASK-*.mdspecs (when placed asTASK.mdor told to), then push + CHANGELOG + REPORT.md. RUNBOOK-*.md— an operational procedure. CC executes the steps it has access and capability for, including live validation on the demo Proxmox host (CC has root@felhom-pve SSH + the felhom-agent token). Mark a step HUMAN only when it genuinely needs physical presence, a real-world decision, or credentials CC truly lacks. Judgment still applies: confirm before irreversible ops on real customer data — demo scratch guests are fair game.