Granary agent-security, governance, and privilege containment harness.
Project description
Granary Harness — Standalone Agent Security & Governance
A bio-inspired modular containment and zero-trust security framework for autonomous agents. Originally developed alongside the living-nn ecosystem, Granary is now a standalone package that acts as a secure trust gateway, sandbox interceptor, and policy enforcement engine.
Key Features
- Dynamic JIT Privilege Elevation: Implements
AgentAssertionToken(AAT) withagent_ownerandagent_trust_scoreclaims, alongside RFC 8693 token exchange payloads and RFC 9449 DPoP sender-constraining validation. - Operating Constitution: Enforces a strict, declarative, five-tier (T0-T4) blast-radius boundary limit for filesystem, LOC edits, token budgets, and path overrides via
agent-constitution.yaml. - Offline Red-Teaming (ADVERSA): Evaluates prompts and tool calls with automated mutation and multi-judge consensus scoring using
AdversaHarness. - Egress & Tunneling Control (ShieldNet): Shannon entropy monitoring and rate limiting over DNS queries to identify exfiltration channels and active tunneling attempts.
- MCP Trust Gateway: High-fidelity Model Context Protocol tool interceptors, risk-based gating, and human-in-the-loop approvals.
- Confidential Enclaves: Automates AWS KMS key attestation policies tied directly to Nitro enclave Platform Configuration Register (PCR) measurements.
Project Structure
granary-harness/
├── granary/ # Core security modules
│ ├── __init__.py # Public API (39 fully exported modules)
│ ├── identity.py # AAT Claims, signatures, and DPoP validation
│ ├── constitution.py # Operating Constitution and YAML parser
│ ├── readiness.py # Pre-launch checklists & cold rollbacks
│ ├── adversa.py # Adversa offline red-teaming
│ ├── mcp_security.py # MCP tool risk gateways
│ ├── shieldnet.py # DNS entropy network egress
│ ├── attestation.py # Nitro enclave attestation
│ └── ... # Sandboxing, rollups, self-healing, otel
├── tests/ # Standalone unittest suites
│ └── test_granary_*.py # 158 verified unit tests
├── docs/ # Governance & policy contracts
│ ├── gtm/ # Competitive positioning & matrices
│ ├── agent-constitution.yaml
│ ├── governance-cadence.md
│ └── planning_merge_verification.md
├── pyproject.toml # Package configuration
├── CLAUDE.md # Code standards & run commands
└── AGENTS.md # Autonomous onboarding reference
Setup & Task Automation
Granary includes a standardized local task runner using the project Makefile:
- Set up standalone environment: Create
.venvand install the package in editable development mode:make setup - Run the unit test suite: Run all 158 tests with verbose reporting:
make test
- Package compiling: Compile the project into distributable wheel (
.whl) and sdist (.tar.gz) archives:make build - Pristine cleaning: Recursively clean caches, bytecode, and packaging/environment folders:
make clean
Command-Line Interface (CLI)
The administrative utility is registered natively upon installation as the executable granary.
1. Constitution Validation
Validate the syntax and autonomy tiers of a declarative agent constitution YAML file:
granary validate-constitution --path docs/agent-constitution.yaml
2. Merkle Audit Ledger Management
- Export Chain: Export a mock, cryptographically chained, and redacted compliance ledger:
granary admin ledger export --work-unit-id "wu_92e8a10f-3a21" --output "./forensics_export.json"
- Verify Chain Integrity: Scan, recalculate Merkle roots, and verify HSM-signatures over an exported ledger file:
granary admin ledger verify-chain --input "./forensics_export.json"
Running Unit Tests
Unit tests are written using Python's built-in, zero-dependency unittest module.
To run the complete test suite (158 tests) with no regressions:
python -m unittest discover -s tests -p "test_granary_*.py" -v
MCP Gateway (Cursor / Claude)
Granary exposes a stdio MCP server that wraps McpTrustGateway for live agent sessions.
Setup
make setup # installs granary-harness[mcp]
Cursor configuration
This repo ships .cursor/mcp.json. After setup, restart Cursor or reload MCP servers. You should see granary-gateway with four tools:
| Tool | Purpose |
|---|---|
granary_authorize_tool |
Risk-tier + scope + JTI replay check before tool execution |
granary_approve_pending |
Human approval for T2/T3 actions |
granary_validate_redirect |
OAuth redirect URI allowlist check |
granary_list_pending |
List queued approval requests |
Run manually:
granary-mcp
Optional custom policy JSON via GRANARY_MCP_POLICY=/path/to/policy.json.
Publishing to PyPI
See docs/PYPI_RELEASE.md for build, twine check, TestPyPI, and production upload steps.
make build
make publish-check
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file granary_harness-1.0.0.tar.gz.
File metadata
- Download URL: granary_harness-1.0.0.tar.gz
- Upload date:
- Size: 110.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c8b27f183f881044bca2e3aadb1d78d1ca7b58dd011820715948e7aec010b9f
|
|
| MD5 |
df91bfefdb5f0f4c5a31b4e24f95e4e9
|
|
| BLAKE2b-256 |
7ea53ccec9f9fcdccdd5df72614ed3c303f669c55594cda0f7779252ea47c0cc
|
File details
Details for the file granary_harness-1.0.0-py3-none-any.whl.
File metadata
- Download URL: granary_harness-1.0.0-py3-none-any.whl
- Upload date:
- Size: 88.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b471fc0efc488435a94b7102c527153e5cb0baf7a59dd67e4c3de9b50e68662a
|
|
| MD5 |
08af4dc69fc7ddce3149f9861116d59b
|
|
| BLAKE2b-256 |
8e96e0e545d5f09a21a0d0a4259a901b638f66b02c425794d6e779d415f4eb06
|