一键导入
t81-bundle-validator
Validate and verify T81 decision bundles for deterministic execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validate and verify T81 decision bundles for deterministic execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Execute bounded AI task chains (assess-fixed, route-fixed, classify-fixed) with deterministic guarantees
Create T81 decision bundles with complete provenance and cryptographic verification
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_validator |
| description | Validate and verify T81 decision bundles for deterministic execution |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill validates T81 decision bundles, ensuring they meet deterministic execution requirements and policy compliance.
When the user needs to verify the integrity and validity of T81 decision bundles, use this skill to perform comprehensive validation.
Validate a single bundle:
validate <bundle_file> [--strict] [--policy <policy_file>] [--output json|summary]
Verify bundle provenance:
verify-provenance <bundle_file> [--canonfs-root <path>]
Check bundle determinism:
check-determinism <bundle_file> [--replay-count <count>]
Batch validation:
validate-batch <bundle_dir> [--recursive] [--strict]
# Basic bundle validation
validate decision_bundle.v1.json
# Strict validation with custom policy
validate critical_bundle.v1.json --strict --policy security.apl
# Verify complete provenance chain
verify-provenance bundle.v1.json --canonfs-root /secure/canonfs
# Test determinism with multiple replays
check-determinism bundle.v1.json --replay-count 5
# Validate all bundles in directory
validate-batch ./bundles/ --recursive --strict
The skill performs these validations:
Structural Validation:
Integrity Validation:
Policy Validation:
Determinism Validation:
Success Output:
{
"status": "valid",
"bundle_id": "CanonHash81...",
"validation_timestamp": "2026-04-04T15:30:00Z",
"checks": {
"structural": "passed",
"integrity": "passed",
"policy": "passed",
"determinism": "passed"
},
"provenance": {
"created": "2026-04-04T14:15:00Z",
"creator": "t81_vm_v1.9.0",
"policy_hash": "CanonHash81..."
}
}
Error Output:
{
"status": "invalid",
"error_type": "policy_violation",
"error_message": "Bundle violates security policy: unauthorized resource access",
"bundle_id": "CanonHash81...",
"validation_timestamp": "2026-04-04T15:30:00Z",
"failed_checks": ["policy"]
}
This skill integrates with T81's bundle consumption contract and validation APIs.