100x visual upgrade: consistent YAML frontmatter, hero block, schema docs, provenance, cross-links, citation — Doctrine v6
Browse files
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
- governance
|
| 4 |
- dsse
|
|
@@ -10,153 +11,67 @@ tags:
|
|
| 10 |
- ai-governance
|
| 11 |
- receipt-chain
|
| 12 |
- lean4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# amaru — Cardano-Anchored Governance Receipt Minting
|
| 16 |
|
| 17 |
-
[](https://doi.org/10.5281/zenodo.20434276)
|
| 19 |
-
[](https://github.com/szl-holdings/amaru/actions/workflows/ci.yml)
|
| 20 |
-
[](https://github.com/szl-holdings/amaru/actions/workflows/codeql.yml)
|
| 21 |
-
[](https://github.com/szl-holdings/amaru/actions/workflows/sbom.yml)
|
| 22 |
-
[](https://github.com/szl-holdings/amaru/actions/workflows/slsa.yml)
|
| 23 |
-
[](https://github.com/szl-holdings/amaru/actions/workflows/dco.yml)
|
| 24 |
-
[](https://orcid.org/0009-0001-0110-4173)
|
| 25 |
-
[](https://huggingface.co/spaces/SZLHOLDINGS/amaru-platform)
|
| 26 |
|
| 27 |
-
|
| 28 |
-
Cardano-anchored receipts that satisfy Doctrine v6 audit requirements and IETF SCITT
|
| 29 |
-
multi-receipt transparency.
|
| 30 |
|
| 31 |
-
---
|
| 32 |
-
|
| 33 |
-
## What is real today
|
| 34 |
-
|
| 35 |
-
All counts are grep-verifiable from this repository.
|
| 36 |
-
|
| 37 |
-
| Metric | Count | How to verify |
|
| 38 |
-
|--------|-------|---------------|
|
| 39 |
-
| Chakra kernel modules | 7 | `find src/chakras -name "kernel.py" \| wc -l` |
|
| 40 |
-
| Python modules (total) | 45 | `find . -name "*.py" -not -path './.git/*' \| wc -l` |
|
| 41 |
-
| Python source lines | 2,883 | `find . -name "*.py" -not -path './.git/*' -exec wc -l {} + \| tail -1` |
|
| 42 |
-
| Test files | 5 | `find . -name "test_*.py" -not -path './.git/*' \| wc -l` |
|
| 43 |
-
| Test assertions | 40 | `grep -r "def test_" . --include="*.py" \| wc -l` |
|
| 44 |
-
| Total source files | 254 | `find . -not -path './.git/*' -type f \| wc -l` |
|
| 45 |
-
| Zenodo DOI | 10.5281/zenodo.20434276 | resolves at https://doi.org/10.5281/zenodo.20434276 |
|
| 46 |
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
## Architecture
|
| 50 |
|
| 51 |
-
```
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
C2-YACHAY (Sacral · Retrieve context)
|
| 59 |
-
│
|
| 60 |
-
▼
|
| 61 |
-
C3-RIMAY (Solar · Propose actions)
|
| 62 |
-
│
|
| 63 |
-
▼
|
| 64 |
-
C4-YUYAY (Heart · Score via 9 AXES)
|
| 65 |
-
│
|
| 66 |
-
▼
|
| 67 |
-
C5-RUWAY (Throat · Execute)
|
| 68 |
-
│
|
| 69 |
-
▼
|
| 70 |
-
C6-NAWI (Third-eye · Correlate tool calls)
|
| 71 |
-
│
|
| 72 |
-
▼
|
| 73 |
-
C7-HATUN (Crown · Mint SHA-256 receipt)
|
| 74 |
-
│
|
| 75 |
-
▼
|
| 76 |
-
RECEIPT → Cardano anchor (SCITT multi-receipt)
|
| 77 |
-
|
| 78 |
-
All kernels communicate via the YAWAR event bus (replay buffer · audit fiber)
|
| 79 |
-
```
|
| 80 |
-
|
| 81 |
-
---
|
| 82 |
-
|
| 83 |
-
## How to use
|
| 84 |
-
|
| 85 |
-
```bash
|
| 86 |
-
# Clone and install
|
| 87 |
-
git clone https://github.com/szl-holdings/amaru.git
|
| 88 |
-
cd amaru
|
| 89 |
-
|
| 90 |
-
# Run the sidecar receipt API
|
| 91 |
-
cd sidecar
|
| 92 |
-
pip install -e .
|
| 93 |
-
python -m amaru.overwatch # starts receipt API on :8080
|
| 94 |
-
|
| 95 |
-
# Run the chakra pipeline
|
| 96 |
-
cd ..
|
| 97 |
-
python src/amaru_scheduler.py
|
| 98 |
-
|
| 99 |
-
# Run tests
|
| 100 |
-
python -m pytest tests/ sidecar/tests/ -v
|
| 101 |
```
|
| 102 |
|
| 103 |
-
-
|
| 104 |
|
| 105 |
-
|
|
|
|
|
|
|
|
|
|
| 106 |
|
| 107 |
-
|
| 108 |
-
- Not a token or DeFi protocol — no token is minted, no economic incentive structure
|
| 109 |
-
- Not production-hardened for high-volume without additional rate limiting and authn hardening
|
| 110 |
-
- Not a general-purpose audit log — receipts carry YUYAY 9-AXES scores and chakra provenance specific to governed AI decisions
|
| 111 |
-
|
| 112 |
-
---
|
| 113 |
-
|
| 114 |
-
## Sibling repositories
|
| 115 |
-
|
| 116 |
-
| Repo | Role |
|
| 117 |
-
|------|------|
|
| 118 |
-
| [a11oy-platform](https://huggingface.co/spaces/SZLHOLDINGS/a11oy-platform) | Governed agentic execution fabric — calls amaru for receipt minting |
|
| 119 |
-
| [sentra](https://github.com/szl-holdings/sentra) | Threat telemetry adapter — publishes to Yawar bus |
|
| 120 |
-
| [rosie](https://github.com/szl-holdings/rosie) | Khipu receipt DAG — produces byte-strings amaru anchors |
|
| 121 |
-
| [vsp-otel](https://github.com/szl-holdings/vsp-otel) | Lambda-signed OTel spans — receipt hashes registered in amaru chain |
|
| 122 |
-
| [agi-forecast](https://github.com/szl-holdings/agi-forecast) | AI safety gauges — benchmark receipts anchored via amaru |
|
| 123 |
-
| [szl-cookbook](https://github.com/szl-holdings/szl-cookbook) | Patterns and recipes — reference impl for amaru TypeScript bindings |
|
| 124 |
-
|
| 125 |
-
---
|
| 126 |
-
|
| 127 |
-
## How to cite
|
| 128 |
|
| 129 |
```bibtex
|
| 130 |
-
@
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
year
|
| 134 |
-
doi
|
| 135 |
-
url
|
| 136 |
-
license = {Apache-2.0}
|
| 137 |
}
|
| 138 |
```
|
| 139 |
|
| 140 |
-
|
| 141 |
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
- IETF SCITT Architecture (draft-ietf-scitt-architecture-22): https://www.ietf.org/archive/id/draft-ietf-scitt-architecture-22.txt
|
| 147 |
-
- Urton, G. (2003). Signs of the Inka Khipu. UT Press. https://doi.org/10.7560/703442
|
| 148 |
-
- SZL Holdings Doctrine v6: https://doi.org/10.5281/zenodo.19944926
|
| 149 |
-
- Bar-Natan, D. (1995). On the Vassiliev knot invariants. Topology 34(2), 423–472. https://doi.org/10.1016/0040-9383(95)93441-4
|
| 150 |
|
| 151 |
---
|
| 152 |
-
|
| 153 |
-
## License + DCO
|
| 154 |
-
|
| 155 |
-
Licensed under [Apache License 2.0](./LICENSE).
|
| 156 |
-
|
| 157 |
-
All commits require Developer Certificate of Origin sign-off (`git commit -s`).
|
| 158 |
-
SLSA provenance level 3, SBOM generation, and CodeQL static analysis are enforced on CI.
|
| 159 |
-
|
| 160 |
-
ORCID: [0009-0001-0110-4173](https://orcid.org/0009-0001-0110-4173) · Doctrine v6 compliant
|
| 161 |
-
|
| 162 |
-
Signed-off-by: Stephen Paul Lutar JR <stephen@szlholdings.com>
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
| 3 |
tags:
|
| 4 |
- governance
|
| 5 |
- dsse
|
|
|
|
| 11 |
- ai-governance
|
| 12 |
- receipt-chain
|
| 13 |
- lean4
|
| 14 |
+
size_categories:
|
| 15 |
+
- n<1K
|
| 16 |
+
task_categories:
|
| 17 |
+
- other
|
| 18 |
+
language:
|
| 19 |
+
- en
|
| 20 |
+
pretty_name: amaru — Cardano-Anchored Memory Attestation Source
|
| 21 |
---
|
| 22 |
|
| 23 |
# amaru — Cardano-Anchored Governance Receipt Minting
|
| 24 |
|
| 25 |
+
[](https://huggingface.co/datasets/SZLHOLDINGS/amaru-source)
|
| 26 |
[](https://doi.org/10.5281/zenodo.20434276)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
+
Source mirror of [github.com/szl-holdings/amaru](https://github.com/szl-holdings/amaru). amaru is the Brain organ of the SZL anatomy: Cardano-anchored memory attestation with a 7-chakra serpentine scheduler and Shor-encoded provenance.
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
**License note:** Currently proprietary (LicenseRef-SZL-Proprietary). Relicense to Apache-2.0 pending founder decision (PR #46, DRAFT).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
+
| Signal | Value |
|
| 33 |
+
|--------|-------|
|
| 34 |
+
| Role in anatomy | Brain (yuyay) |
|
| 35 |
+
| Anchor | Cardano blockchain |
|
| 36 |
+
| Scheduler | 7-chakra serpentine |
|
| 37 |
+
| Provenance | Shor-encoded |
|
| 38 |
+
| Receipt format | DSSE-signed |
|
| 39 |
|
| 40 |
## Architecture
|
| 41 |
|
| 42 |
+
```mermaid
|
| 43 |
+
flowchart TD
|
| 44 |
+
A[Memory Input] --> B[7-Chakra Scheduler]
|
| 45 |
+
B --> C[Shor Encoder]
|
| 46 |
+
C --> D[Cardano Anchor]
|
| 47 |
+
D --> E[DSSE Receipt]
|
| 48 |
+
E --> F[uds-mesh → rosie]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
```
|
| 50 |
|
| 51 |
+
## Cross-links
|
| 52 |
|
| 53 |
+
- **Live demo:** [SZLHOLDINGS/amaru-memory-attestation](https://huggingface.co/spaces/SZLHOLDINGS/amaru-memory-attestation)
|
| 54 |
+
- **Platform:** [SZLHOLDINGS/amaru-platform](https://huggingface.co/spaces/SZLHOLDINGS/amaru-platform)
|
| 55 |
+
- **Source:** [github.com/szl-holdings/amaru](https://github.com/szl-holdings/amaru)
|
| 56 |
+
- **Anatomy map:** [SZLHOLDINGS/szl-anatomy](https://huggingface.co/spaces/SZLHOLDINGS/szl-anatomy)
|
| 57 |
|
| 58 |
+
## Citation (BibTeX)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
```bibtex
|
| 61 |
+
@misc{lutar2026ouroboros,
|
| 62 |
+
title = {Ouroboros: Formal Verification of Agentic AI Governance — v18.0},
|
| 63 |
+
author = {Lutar, Stephen P.},
|
| 64 |
+
year = {2026},
|
| 65 |
+
doi = {10.5281/zenodo.20434276},
|
| 66 |
+
url = {https://doi.org/10.5281/zenodo.20434276}
|
|
|
|
| 67 |
}
|
| 68 |
```
|
| 69 |
|
| 70 |
+
## Contact
|
| 71 |
|
| 72 |
+
**Stephen P. Lutar** · stephen@szlholdings.com
|
| 73 |
+
[](https://orcid.org/0009-0001-0110-4173)
|
| 74 |
+
[github.com/szl-holdings](https://github.com/szl-holdings) · [huggingface.co/SZLHOLDINGS](https://huggingface.co/SZLHOLDINGS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
|
| 76 |
---
|
| 77 |
+
*Doctrine v6 strict — no marketing superlatives — every claim verifiable.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|