Guide Leo direct claims to all proposal statuses
Some checks are pending
CI / lint-and-test (push) Waiting to run

This commit is contained in:
twentyOne2x 2026-07-10 02:38:21 +02:00
parent 6fa86d5e01
commit ee777c89a9
3 changed files with 4 additions and 0 deletions

View file

@ -58,6 +58,7 @@ not stop at `search` or default `list-proposals`. Run the status-specific
proposal and governance readbacks needed to avoid overclaiming: proposal and governance readbacks needed to avoid overclaiming:
```bash ```bash
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb list-proposals --status all --limit 50
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb search-proposals "<entity/framework/claim terms>" --status all --limit 20 /home/teleo/.hermes/profiles/leoclean/bin/teleo-kb search-proposals "<entity/framework/claim terms>" --status all --limit 20
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb decision-matrix-status /home/teleo/.hermes/profiles/leoclean/bin/teleo-kb decision-matrix-status
``` ```

View file

@ -50,6 +50,7 @@ not stop at `search` or default `list-proposals`. Run the status-specific
proposal and governance readbacks needed to avoid overclaiming: proposal and governance readbacks needed to avoid overclaiming:
```bash ```bash
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb list-proposals --status all --limit 50
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb search-proposals "<entity/framework/claim terms>" --status all --limit 20 /home/teleo/.hermes/profiles/leoclean/bin/teleo-kb search-proposals "<entity/framework/claim terms>" --status all --limit 20
/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb decision-matrix-status /home/teleo/.hermes/profiles/leoclean/bin/teleo-kb decision-matrix-status
``` ```

View file

@ -13,6 +13,7 @@ def test_gcp_kb_skill_uses_cloudsql_bridge_not_vps_docker() -> None:
assert "/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb" in text assert "/home/teleo/.hermes/profiles/leoclean/bin/teleo-kb" in text
assert "search-proposals" in text assert "search-proposals" in text
assert "decision-matrix-status" in text assert "decision-matrix-status" in text
assert "list-proposals --status all" in text
assert "Do not answer" in text or "do not infer matrix approval" in text assert "Do not answer" in text or "do not infer matrix approval" in text
assert "Next Cory-style follow-up" in text assert "Next Cory-style follow-up" in text
assert "I cannot claim canonical DB changed" in text assert "I cannot claim canonical DB changed" in text
@ -33,6 +34,7 @@ def test_vps_kb_skill_keeps_vps_scope_explicit() -> None:
assert "Status: applied | pending | missing | partially applied" in text assert "Status: applied | pending | missing | partially applied" in text
assert "search-proposals" in text assert "search-proposals" in text
assert "decision-matrix-status" in text assert "decision-matrix-status" in text
assert "list-proposals --status all" in text
assert "do not infer matrix approval" in text assert "do not infer matrix approval" in text
assert "approved/staged or packet-ready but not canonical" in text assert "approved/staged or packet-ready but not canonical" in text
assert "Next Cory-style follow-up" in text assert "Next Cory-style follow-up" in text