Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .beads/issues.jsonl

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/daemon.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ Check status:
polylogued status
```

Raw-evidence authority is an ordinary daemon invariant. After bounded raw
materialization, the daemon records one complete accepted-frontier census,
applies only byte/provenance-safe plans, and leaves conflicts or missing bytes
as durable remediation references in status. Operators can inspect the same
ledger with `polylogue ops maintenance raw-authority-frontier`; its apply
options are break-glass controls for exact plan IDs, not routine maintenance.

## Auto-Discovery

The daemon watches these directories by default:
Expand Down
22 changes: 13 additions & 9 deletions docs/plans/topology-target.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions docs/topology-status.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 6 additions & 36 deletions polylogue/cli/commands/maintenance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@
"rebuild_index_command",
"Inspect or execute an authority-safe source-to-index rebuild.",
),
(
"raw-authority-frontier",
"_raw_identity",
"raw_authority_frontier_command",
"Inspect the complete raw-authority frontier; apply is break-glass only.",
),
(
"raw-authority-census",
"_raw_identity",
Expand All @@ -71,42 +77,6 @@
"raw_authority_blocker_resolve_command",
"Resolve one stale-plan blocker against current source evidence.",
),
(
"missing-raw-blob-cursors",
"_raw_identity",
"missing_raw_blob_cursors_command",
"Invalidate cursors hiding missing raw-blob re-acquisition debt.",
),
(
"quarantined-accepted-raws",
"_raw_identity",
"quarantined_accepted_raws_command",
"Repair a typed accepted full raw whose byte authority stayed quarantined.",
),
(
"browser-capture-origin-mismatches",
"_raw_identity",
"browser_capture_origin_mismatches_command",
"Copy mismatched browser captures forward under parsed origin authority.",
),
(
"legacy-browser-capture-missing-native-id",
"_raw_identity",
"legacy_browser_capture_missing_native_id_command",
"Copy forward the narrow legacy browser shape whose native ID is NULL.",
),
(
"browser-canonical-authority-conflicts",
"_raw_identity",
"browser_canonical_authority_conflicts_command",
"Show why a byte-proven-rekey actuator refuses these browser-capture raws.",
),
(
"duplicate-raw-identity",
"_raw_identity",
"duplicate_raw_identity_command",
"Reconcile a pre-#2729 duplicate raw pair onto its post-fix accepted head.",
),
("preview", "_preview", "preview_command", "Staleness inventory by model and scope. Read-only."),
("blob-gc", "_blob_gc", "blob_gc_command", "Preview or run lease-safe blob garbage collection."),
(
Expand Down
Loading