Implements the shell side of GCAP-SPEC-SHELLBOUND-BROKER-0001. The broker (Capstone) issues ACs. This module consumes them. GsapClient: authorize() — request AC, validate R-20/R-22/R-23/R-24 complete() — post CR with 3x retry (R-29) ConsumedContextRegistry: Filesystem-based replay prevention (R-22) 4/4 unit tests passing: test_corpus_mismatch, test_params_modified, test_replay_rejected, test_valid_ac Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
520 B
TOML
21 lines
520 B
TOML
[package]
|
|
name = "org-ops-core"
|
|
description = "Framework for building governed consortium CLI tools"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive", "string"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
urlencoding = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
hex = "0.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|