feat(platformctl): harden sacred path safety #157

Merged
pdurlej merged 1 commit from codex/issues/142-phase3-safety into main 2026-05-10 23:06:54 +02:00
Collaborator

Canary status: missing — fire canary 3+3 manually before merge

Canary Context Pack

Product story

Phase 3 needs platformctl to be allowed to inspect and eventually apply platform state without risking sacred runtime data. This PR hardens the deterministic safety layer before transport/apply work builds on it.

What changed

  • Split sacred path rules into exact, prefix, path-glob, name-glob, and allow-glob lists.
  • Added is_sacred_path() and check_command() for command-level mutation refusal.
  • Added coverage for charter §11 categories including env files, postgres/minio/vault/forgejo data, OpenClaw workspace/persona paths, backups, ssh/sudoers, and Mac baseline/session paths.
  • Added parser coverage for no-space redirects, fd append redirects, clobber redirects, >&, -t/--target-directory, sed --in-place, -- option terminators, shell flags before -c, shell positional arguments after -c, fail-closed command substitution/parse failure, common mutating file utilities, curl/wget output targets, scp remote-path targets, inherited cd/initial cwd context, semicolon separators, nested shells after cd, $HOME/tilde/$OPENCLAW_HOME expansion, shell-glob overlap, sacred-exact directory targets, and &&/|| mutation sequences.

Why it changed

Phase 3 Packet 3.5 requires a central sacred-path enforcer before any SSH transport or apply command can be trusted.

Files touched

  • control-plane/platformctl/safety.py
  • control-plane/platformctl/tests/test_safety_phase3.py

Relevant context

  • prompts/codex-cutover-flight/phase-3-operational.md Packet 3.5
  • PLATFORM_CHARTER.md §11 sacred paths
  • docs/forgejo-agent-operations.md
  • AGENTS.md security-sensitive class of service

Runtime evidence

No runtime mutation. Code-only PR.

Known constraints

policies/sacred-paths.yaml is referenced by the charter but does not exist on origin/main; this PR keeps enforcement in existing safety.py and tests the charter categories directly.

Explicit out-of-scope

  • No SSH transport implementation.
  • No platformctl apply implementation.
  • No production mutation.
  • No edit to sacred runtime paths.

Requested decision

Review as security-sensitive Phase 3 foundation. Merge only after full canary / operator process.

Merge blockers

  • Any sacred path category from charter §11 not blocked by tests.
  • Any normal platform repo path blocked as a false positive.
  • Any command parser behavior that would allow common sacred-path mutation patterns.

Spec sources read

  • prompts/codex-cutover-flight/dispatch.md — phase sequencing and gates
  • prompts/codex-cutover-flight/phase-3-operational.md — Packet 3.5 acceptance criteria
  • PLATFORM_CHARTER.md §11 — sacred path categories
  • docs/forgejo-agent-operations.md — Forgejo/identity protocol
  • AGENTS.md — security-sensitive class of service and PR rules
  • control-plane/platformctl/safety.py — implementation target
  • control-plane/platformctl/tests/test_smoke.py and test_validate.py — existing test conventions

Tests

  • PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests/test_safety_phase3.py -q — 128 passed

  • PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests -q — 311 passed

  • PYTHONPATH=control-plane python3 -m platformctl.cli validate modules/honcho-redis --strict-v2 --json — exit 0

  • git diff --check — clean

  • Iteration note 1: amended after Ollama caught redirect-without-whitespace and env-dir deletion bypasses; added tests for cmd>path, &>, env dir, cp/install/ln/rsync/sed -i/bash -c/cd-then-rm.

  • Iteration note 2: amended after expensive review caught fd append redirects, -t target options, sed --in-place, -- option terminator handling, shell flags before -c, and cd flags.

  • Iteration note 3: amended after expensive review caught clobber redirect >|, $HOME expansion, cd + relative redirect, nested shell after outer cd, and missing direct postgres directory coverage.

  • Iteration note 4: amended after expensive review caught tilde remote-home bypass; also hardened semicolon separators, >&, touch, mkdir, zsh -c, and OPENCLAW_HOME expansion.

  • Iteration note 5: amended after expensive review caught shell-glob/direct directory-copy bypasses and unset $OPENCLAW_HOME remote expansion; added conservative glob overlap and sacred-exact directory target refusal, with cached rule normalization to keep tests fast.

  • Iteration note 6: amended after Kimi non-blocking review surfaced shell -c positional-argument hiding and parse-failure fallback risk; added fail-closed tokenization, shell-argument path checks, optional initial_cwd, and exact-prefix mkdir -p evidence tests.

  • Iteration note 7: amended after DeepSeek review found command-substitution bypass (rm $(echo /etc/ssh/sshd_config)); added fail-closed $(/backtick handling and tests.

  • Iteration note 8: amended after DeepSeek review found missing common mutators; added chattr, shred, rename, fallocate, setfacl, and setfattr coverage.

  • Iteration note 9: amended after Kimi analysis surfaced common file-write tools; added curl -o/--output, wget -O/--output-document, and scp host:/path target handling.

  • Iteration note 10: amended after DeepSeek review found $0 positional-argument bypass for bash -c; now all shell -c arguments are checked.

Refs #142

Canary status: missing — fire canary 3+3 manually before merge ## Canary Context Pack ### Product story Phase 3 needs `platformctl` to be allowed to inspect and eventually apply platform state without risking sacred runtime data. This PR hardens the deterministic safety layer before transport/apply work builds on it. ### What changed - Split sacred path rules into exact, prefix, path-glob, name-glob, and allow-glob lists. - Added `is_sacred_path()` and `check_command()` for command-level mutation refusal. - Added coverage for charter §11 categories including env files, postgres/minio/vault/forgejo data, OpenClaw workspace/persona paths, backups, ssh/sudoers, and Mac baseline/session paths. - Added parser coverage for no-space redirects, fd append redirects, clobber redirects, `>&`, `-t`/`--target-directory`, `sed --in-place`, `--` option terminators, shell flags before `-c`, shell positional arguments after `-c`, fail-closed command substitution/parse failure, common mutating file utilities, `curl`/`wget` output targets, `scp` remote-path targets, inherited `cd`/initial cwd context, semicolon separators, nested shells after `cd`, `$HOME`/tilde/`$OPENCLAW_HOME` expansion, shell-glob overlap, sacred-exact directory targets, and `&&/||` mutation sequences. ### Why it changed Phase 3 Packet 3.5 requires a central sacred-path enforcer before any SSH transport or apply command can be trusted. ### Files touched - `control-plane/platformctl/safety.py` - `control-plane/platformctl/tests/test_safety_phase3.py` ### Relevant context - `prompts/codex-cutover-flight/phase-3-operational.md` Packet 3.5 - `PLATFORM_CHARTER.md` §11 sacred paths - `docs/forgejo-agent-operations.md` - `AGENTS.md` security-sensitive class of service ### Runtime evidence No runtime mutation. Code-only PR. ### Known constraints `policies/sacred-paths.yaml` is referenced by the charter but does not exist on `origin/main`; this PR keeps enforcement in existing `safety.py` and tests the charter categories directly. ### Explicit out-of-scope - No SSH transport implementation. - No `platformctl apply` implementation. - No production mutation. - No edit to sacred runtime paths. ### Requested decision Review as security-sensitive Phase 3 foundation. Merge only after full canary / operator process. ### Merge blockers - Any sacred path category from charter §11 not blocked by tests. - Any normal platform repo path blocked as a false positive. - Any command parser behavior that would allow common sacred-path mutation patterns. ## Spec sources read - `prompts/codex-cutover-flight/dispatch.md` — phase sequencing and gates - `prompts/codex-cutover-flight/phase-3-operational.md` — Packet 3.5 acceptance criteria - `PLATFORM_CHARTER.md` §11 — sacred path categories - `docs/forgejo-agent-operations.md` — Forgejo/identity protocol - `AGENTS.md` — security-sensitive class of service and PR rules - `control-plane/platformctl/safety.py` — implementation target - `control-plane/platformctl/tests/test_smoke.py` and `test_validate.py` — existing test conventions ## Tests - `PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests/test_safety_phase3.py -q` — 128 passed - `PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests -q` — 311 passed - `PYTHONPATH=control-plane python3 -m platformctl.cli validate modules/honcho-redis --strict-v2 --json` — exit 0 - `git diff --check` — clean - Iteration note 1: amended after Ollama caught redirect-without-whitespace and env-dir deletion bypasses; added tests for `cmd>path`, `&>`, env dir, cp/install/ln/rsync/sed -i/bash -c/cd-then-rm. - Iteration note 2: amended after expensive review caught fd append redirects, `-t` target options, `sed --in-place`, `--` option terminator handling, shell flags before `-c`, and `cd` flags. - Iteration note 3: amended after expensive review caught clobber redirect `>|`, `$HOME` expansion, `cd` + relative redirect, nested shell after outer `cd`, and missing direct postgres directory coverage. - Iteration note 4: amended after expensive review caught tilde remote-home bypass; also hardened semicolon separators, `>&`, `touch`, `mkdir`, `zsh -c`, and `OPENCLAW_HOME` expansion. - Iteration note 5: amended after expensive review caught shell-glob/direct directory-copy bypasses and unset $OPENCLAW_HOME remote expansion; added conservative glob overlap and sacred-exact directory target refusal, with cached rule normalization to keep tests fast. - Iteration note 6: amended after Kimi non-blocking review surfaced shell `-c` positional-argument hiding and parse-failure fallback risk; added fail-closed tokenization, shell-argument path checks, optional `initial_cwd`, and exact-prefix `mkdir -p` evidence tests. - Iteration note 7: amended after DeepSeek review found command-substitution bypass (`rm $(echo /etc/ssh/sshd_config)`); added fail-closed `$(`/backtick handling and tests. - Iteration note 8: amended after DeepSeek review found missing common mutators; added `chattr`, `shred`, `rename`, `fallocate`, `setfacl`, and `setfattr` coverage. - Iteration note 9: amended after Kimi analysis surfaced common file-write tools; added `curl -o`/`--output`, `wget -O`/`--output-document`, and `scp host:/path` target handling. - Iteration note 10: amended after DeepSeek review found `$0` positional-argument bypass for `bash -c`; now all shell `-c` arguments are checked. Refs #142
feat(platformctl): harden sacred path safety
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 34s
python-ci / Python 3.12 (pull_request) Successful in 35s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
745d746587
codex force-pushed codex/issues/142-phase3-safety from 745d746587
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 34s
python-ci / Python 3.12 (pull_request) Successful in 35s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
to b99969e68c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 13s
2026-05-10 01:37:09 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from b99969e68c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 13s
to 42c5e8a6e1
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 13s
2026-05-10 01:49:33 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from 42c5e8a6e1
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 13s
to 26e8ef139c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 14s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 02:06:44 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from 26e8ef139c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 14s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 12s
to f1f43a1cc2
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 13s
2026-05-10 02:17:40 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from f1f43a1cc2
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 13s
to f3a2e17df2
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 02:34:42 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from f3a2e17df2
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
to 11fe3869c9
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 02:48:18 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from 11fe3869c9
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 12s
to b49bf7089c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 32s
python-ci / Python 3.13 (pull_request) Successful in 32s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 02:57:21 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from b49bf7089c
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 15s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 32s
python-ci / Python 3.13 (pull_request) Successful in 32s
canary-required / canary (pull_request) Successful in 12s
to 6a6f006332
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 17s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 03:02:51 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from 6a6f006332
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 17s
python-ci / Python 3.11 (pull_request) Successful in 33s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 12s
to 4e3e2370df
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 13s
2026-05-10 03:11:50 +02:00
Compare
codex force-pushed codex/issues/142-phase3-safety from 4e3e2370df
All checks were successful
canary-required / collect-diff (pull_request) Successful in 3s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 32s
python-ci / Python 3.12 (pull_request) Successful in 33s
python-ci / Python 3.13 (pull_request) Successful in 34s
canary-required / canary (pull_request) Successful in 13s
to cd59296be9
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 17s
python-ci / Python 3.11 (pull_request) Successful in 34s
python-ci / Python 3.12 (pull_request) Successful in 34s
python-ci / Python 3.13 (pull_request) Successful in 33s
canary-required / canary (pull_request) Successful in 12s
2026-05-10 03:17:55 +02:00
Compare
Author
Collaborator

Phase 3 safety status for final commit cd59296be91b05e321434acde14937819221de4f:

  • Local tests: PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests/test_safety_phase3.py -q — 128 passed
  • Local tests: PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests -q — 311 passed
  • Validate: PYTHONPATH=control-plane python3 -m platformctl.cli validate modules/honcho-redis --strict-v2 --json — pass
  • Whitespace: git diff --check — clean
  • Identity: commit author is codex <codex@noreply.git.pdurlej.com>
  • Runtime: no production mutation

Ollama Cloud expensive review, final counted pass:

  • deepseek-v4-pro:cloud — APPROVE, blocking findings: None
  • kimi-k2.6:cloud — APPROVE, blocking findings: None
  • minimax-m2.7:cloud — APPROVE, blocking findings: None

Earlier review iterations found real bypass classes and were fixed in this PR: shell globs, unset $OPENCLAW_HOME, directory-copy targets, shell -c positional args including $0, command substitution, common mutating utilities, and curl/wget/scp write targets.

Official canary status remains as the PR body says: missing — this PR still needs the normal platform canary/owner merge process before merge.

Phase 3 safety status for final commit `cd59296be91b05e321434acde14937819221de4f`: - Local tests: `PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests/test_safety_phase3.py -q` — 128 passed - Local tests: `PYTHONPATH=control-plane python3 -m pytest control-plane/platformctl/tests -q` — 311 passed - Validate: `PYTHONPATH=control-plane python3 -m platformctl.cli validate modules/honcho-redis --strict-v2 --json` — pass - Whitespace: `git diff --check` — clean - Identity: commit author is `codex <codex@noreply.git.pdurlej.com>` - Runtime: no production mutation Ollama Cloud expensive review, final counted pass: - `deepseek-v4-pro:cloud` — APPROVE, blocking findings: None - `kimi-k2.6:cloud` — APPROVE, blocking findings: None - `minimax-m2.7:cloud` — APPROVE, blocking findings: None Earlier review iterations found real bypass classes and were fixed in this PR: shell globs, unset `$OPENCLAW_HOME`, directory-copy targets, shell `-c` positional args including `$0`, command substitution, common mutating utilities, and `curl`/`wget`/`scp` write targets. Official canary status remains as the PR body says: `missing` — this PR still needs the normal platform canary/owner merge process before merge.
Sign in to join this conversation.
No reviewers
No labels
W6d-automerge-calibration
agent/claude-code
agent/codex
agent/hermes
agent/iskra
agent/ollama
agent/patchwarden
automerge-candidate
class/security-sensitive
cutover-gate
dependency/blocked
dependency/blocks-others
dependency/cross-repo
dependency/needs-confirmation
domain:agents
domain:ci
domain:docs
domain:forgejo
domain:infra
domain:memory
domain:runtime
domain:signal
domain:ux
flow/architecture
flow/blocked
flow/deployed
flow/done
flow/implementation
flow/intake
flow/maintained
flow/observed
flow/ready
flow/refining
flow/retired
flow/review
iterating
judge/codex-candidate
judge/hermes-candidate
judge/low-confidence
judge/needs-refinement
judge/operator-needed
judge/p0
judge/p1
judge/p2
judge/p3
judge/park
judge/patchwarden-candidate
judge/stale-priority
kind/adr
kind/bug
kind/chore
kind/feature
kind/infra
kind/ops
kind/refactor
kind/research
large-impact
merge/auto
merge/manual
merge/manual-dependency-conflict
merge/manual-failing-tests
merge/manual-merge-conflict
merge/manual-missing-review
merge/manual-operator-preference
merge/manual-red-zone
merge/manual-security-sensitive
merge/manual-unclear-scope
merge/manual-unknown
meta
mode:operator-only
mode:patchwarden-iskra-approved
mode:safe-auto
needs-operator-decision
needs-triage
not-ready
observed/erroring
observed/needs-followup
observed/pending
observed/retire-candidate
observed/unused
observed/used
operator-emotional
owner-attention
phase/02
phase/03
priority:p0
priority:p1
priority:p2
priority:p3
proposed
ready-for-agent
ready-for-operator
recovery
review:claude-reviewed
review:codex-reviewed
review:dziadek-reviewed
review:needs-human
risk/exposure
risk/process
risk/product
risk/runtime
safety:external-write
safety:no-prod-mutation
safety:prod-impact
safety:secret-touch
size/large
size/medium
size/small
size/tiny
size/unknown
source/adr
source/agent-generated
source/manual
source/operator-chat
source/voice-note
status:blocked
status:codex-ready
status:merged:pending-evidence
status:needs-evidence
status:operator-needed
status:parked
tier/full
tier/lite
tier/stacked
tier:0-platform-substrate
tier:1-iskra-value-layer
tier:2-tools-products-modules
type:bug
type:chore
type:docs
type:feat
type:policy
type:research
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
pdurlej/platform!157
No description provided.