一键导入
t81-vm-runner
Execute T81 code with deterministic guarantees and policy enforcement
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute T81 code with deterministic guarantees and policy enforcement
用 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
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
| name | t81_vm_runner |
| description | Execute T81 code with deterministic guarantees and policy enforcement |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill executes T81Lang programs through the T81VM with deterministic guarantees, policy enforcement, and complete audit trails.
When the user needs to run T81 code with guaranteed determinism and governance, use this skill to execute programs through the T81VM.
Run a T81 program:
run <program_file> [--policy <policy_file>] [--weights-model <model_file>] [--trace] [--json]
Run with debug information:
debug <program_file> [--breakpoints <addr1,addr2>] [--policy <policy_file>]
Batch execution:
run-batch <program_dir> [--recursive] [--policy <policy_file>] [--output-dir <dir>]
Trace execution:
trace <program_file> [--trace-level basic|full|policy] [--output <trace_file>]
Inspect VM state:
inspect <program_file> [--state registers|memory|stack] [--address <addr>]
# Basic program execution
run hello_world.t81
# Run with policy enforcement and model weights
run inference.t81 --policy security.apl --weights-model model.t81w
# Debug with breakpoints
debug complex_program.t81 --breakpoints 0x1000,0x2000 --policy debug.apl
# Full execution trace
trace inference.t81 --trace-level full --output execution_trace.json
# Batch process all programs
run-batch ./programs/ --recursive --policy batch.apl --output-dir ./results/
# Inspect VM registers after execution
inspect program.t81 --state registers
Standard Mode:
Debug Mode:
Trace Mode:
Successful Execution:
{
"status": "completed",
"program": "inference.t81",
"execution_id": "CanonHash81...",
"timestamp": "2026-04-04T15:30:00Z",
"result": {
"output": "tensor_result_data",
"exit_code": 0,
"determinism_hash": "CanonHash81..."
},
"policy": {
"enforced": true,
"violations": 0,
"decisions_made": 1247
},
"performance": {
"instructions_executed": 5421,
"execution_time_ms": 23,
"memory_peak_bytes": 1048576
}
}
Policy Violation:
{
"status": "policy_violation",
"program": "unauthorized.t81",
"execution_id": "CanonHash81...",
"timestamp": "2026-04-04T15:30:00Z",
"error": {
"type": "policy_denial",
"instruction": 0x1234,
"reason": "unauthorized_resource_access",
"policy_rule": "deny_file_write"
},
"policy": {
"enforced": true,
"violations": 1,
"decision_point": "instruction_0x1234"
}
}
T81Lang Source (.t81):
TISC Bytecode (.tisc):
Bundle Files (.bundle):
This skill wraps the T81VM execution engine:
t81 vm run <program> --policy <policy> --trace --json