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
6 changes: 3 additions & 3 deletions .machine_readable/contractiles/trust/Trustfile.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -231,16 +231,16 @@ artifacts:
- id: "2.1" ; name: "Lifecycle state-machine safety" ; system: "TLA+ (TLC)" ; file: "proofs/tla/Lifecycle.{tla,cfg}" ; status: "PROVEN"
- id: "2.2" ; name: "Concurrency safety" ; system: "TLA+" ; file: "(deferred: single-owner design, no shared concurrency)" ; status: "DESIGNED"
- id: "2.3" ; name: "Resource/affine lifecycle" ; system: "rustc (compile-fail)" ; file: "neurophone-core compile-fail doc-tests + android reset" ; status: "PROVEN"
- id: "3.1" ; name: "Data-egress / privacy" ; system: "arch + conative-gating" ; file: "claude-client (egress confined); veto external #103" ; status: "DESIGNED"
- id: "3.1" ; name: "Data-egress / privacy" ; system: "proptest + conative-gating" ; file: "crates/claude-client/src/egress_gate.rs (wired into create_message), egress_integration_tests" ; status: "TESTED"
- id: "3.2" ; name: "Bounded external interaction" ; system: "proptest/contract" ; file: "claude-client: capped backoff + bounded retries (backoff_is_bounded_and_monotonic, total_retry_budget_is_finite)" ; status: "TESTED"
open_obligations:
- "1.1 formal contraction proof (precondition holds; theorem pending)"
- "1.2 formal Dafny bound (property evidence exists)"
- "2.2 concurrency spec (N/A until shared concurrency exists)"
- "3.1 GO/NO-GO egress veto (blocked on conative-gating, #103)"
- "3.1 caller-declared classification honesty (EgressClass is asserted by the caller, not derived from an independent sensor-provenance tracker); no formal (non-property) proof yet"
non_claims:
- "neurophone does NOT yet claim a machine-checked Echo State Property (1.1)."
- "neurophone does NOT yet enforce a cryptographic egress veto (3.1)."
- "neurophone's egress veto (3.1) enforces policy on a caller-declared payload classification; it does NOT independently verify that classification against real sensor provenance, and it is NOT a formally-proven (only property-tested) guarantee."

---
### [CI_CD]
Expand Down
64 changes: 64 additions & 0 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions crates/claude-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ tracing = { workspace = true }
tokio = { workspace = true }
reqwest = { workspace = true }
futures = { workspace = true }
uuid = { version = "1", features = ["v4"] }
# conative-gating is pre-1.0 (0.1.0) and not published to crates.io, so it is
# consumed as a git dependency pinned to a specific commit SHA on the public
# hyperpolymath/conative-gating repo (issue #103 / proof obligation 3.1:
# egress GO/NO-GO veto). Do NOT float on a branch -- re-pin deliberately.
policy-oracle = { git = "https://github.com/hyperpolymath/conative-gating", rev = "7baaf25ecb20ec2a75f138ec69c1681e7677021a" }
gating-contract = { git = "https://github.com/hyperpolymath/conative-gating", rev = "7baaf25ecb20ec2a75f138ec69c1681e7677021a" }

[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
Expand Down
Loading
Loading