一键导入
t81-bundle-creator
Create T81 decision bundles with complete provenance and cryptographic verification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create T81 decision bundles with complete provenance and cryptographic verification
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Execute bounded AI task chains (assess-fixed, route-fixed, classify-fixed) with deterministic guarantees
Validate and verify T81 decision bundles for deterministic execution
Export files from T81 CanonFS with hash verification and integrity validation
Import files into T81 CanonFS for immutable, hash-verified storage
Demonstrate T81's policy-gated computation with educational examples
Load external AI models into T81 with secure conversion and immutable storage
| name | t81_bundle_creator |
| description | Create T81 decision bundles with complete provenance and cryptographic verification |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill creates T81 decision bundles that package AI decisions with complete provenance, cryptographic verification, and immutable audit trails.
When the user needs to create decision bundles from T81 execution results, use this skill to package decisions with complete provenance.
Create decision bundle:
create-bundle <execution_result> [--output <bundle_file>] [--policy <policy_file>] [--include-provenance]
Bundle from execution:
bundle-from-execution <program_file> [--input <input_data>] [--policy <policy_file>] [--bundle-output <bundle_file>]
Bundle information:
bundle-info <bundle_file> [--detailed] [--verify-integrity] [--output <info_file>]
Sign bundle:
sign-bundle <bundle_file> [--key <key_file>] [--certificate <cert_file>]
Verify bundle:
verify-bundle <bundle_file> [--check-signature] [--check-provenance] [--check-integrity]
Merge bundles:
merge-bundles <bundle1> <bundle2> [--output <merged_bundle>] [--conflict-resolution keep|merge|fail]
Extract from bundle:
extract-bundle <bundle_file> [--component result|provenance|metadata] [--output <output_file>]
# Create bundle from execution result
create-bundle execution_result.json --output decision.bundle --include-provenance
# Bundle directly from program execution
bundle-from-execution inference.t81 --input data.json --policy security.apl --bundle-output decisions.bundle
# Get detailed bundle information
bundle-info decision.bundle --detailed --verify-integrity --output bundle_info.json
# Sign bundle with cryptographic key
sign-bundle decision.bundle --key private_key.pem --certificate cert.pem
# Verify bundle integrity and signature
verify-bundle decision.bundle --check-signature --check-provenance --check-integrity
# Merge multiple bundles
merge-bundles bundle1.bundle bundle2.bundle --output merged.bundle --conflict-resolution merge
# Extract specific component from bundle
extract-bundle decision.bundle --component provenance --output provenance.json
Core Components:
Optional Components:
Bundle Directory Structure:
decision_bundle.v1/
├── bundle.json # Main bundle manifest
├── result.json # Decision result
├── provenance.json # Complete provenance
├── policy_evidence.json # Policy decisions
├── metadata.json # Bundle metadata
├── hashes.json # Component hashes
├── signature.sig # Cryptographic signature (optional)
└── components/ # Additional components
├── input_data/
├── execution_logs/
└── performance/
Bundle Manifest (bundle.json):
{
"bundle_version": "v1",
"bundle_id": "CanonHash81_BUNDLE...",
"created_at": "2026-04-04T15:30:00Z",
"creator": "t81_v1.9.0",
"components": {
"result": "result.json",
"provenance": "provenance.json",
"policy_evidence": "policy_evidence.json",
"metadata": "metadata.json",
"hashes": "hashes.json"
},
"integrity_hash": "CanonHash81_INTEGRITY...",
"policy_compliance": "verified",
"determinism_guaranteed": true
}
Bundle Creation Result:
{
"status": "success",
"bundle_file": "decision.bundle",
"bundle_id": "CanonHash81_BUNDLE...",
"timestamp": "2026-04-04T15:30:00Z",
"components": {
"result": "included",
"provenance": "included",
"policy_evidence": "included",
"metadata": "included"
},
"verification": {
"integrity_hash": "CanonHash81_INTEGRITY...",
"policy_compliance": "verified",
"determinism_guaranteed": true,
"cryptographic_secure": true
},
"size": {
"total_bytes": 1048576,
"compressed": false,
"components_count": 5
}
}
Bundle Verification Result:
{
"bundle_file": "decision.bundle",
"verification_status": "passed",
"timestamp": "2026-04-04T15:30:00Z",
"checks": {
"integrity": "passed",
"signature": "passed",
"provenance": "passed",
"policy_compliance": "passed",
"determinism": "verified"
},
"details": {
"bundle_id": "CanonHash81_BUNDLE...",
"creator": "t81_v1.9.0",
"created_at": "2026-04-04T15:30:00Z",
"components_verified": 5,
"hashes_valid": true
}
}
Content Hashing:
Digital Signatures:
Integrity Protection:
Policy Evidence:
Access Control:
Audit Requirements:
Creation Options:
Verification Features:
Merge Capabilities:
Regulatory Compliance:
Supply Chain Integrity:
Research Reproducibility:
This skill wraps T81's bundle creation and management:
t81 bundle create <result> --output <bundle> --policy <policy> --include-provenance