원클릭으로
t81-ai-tasks
Execute bounded AI task chains (assess-fixed, route-fixed, classify-fixed) with deterministic guarantees
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute bounded AI task chains (assess-fixed, route-fixed, classify-fixed) with deterministic guarantees
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
Load external AI models into T81 with secure conversion and immutable storage
| name | t81_ai_tasks |
| description | Execute bounded AI task chains (assess-fixed, route-fixed, classify-fixed) with deterministic guarantees |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill executes bounded AI task chains that provide deterministic decision-making with complete provenance and policy enforcement.
When the user needs to run structured AI decision workflows with guaranteed determinism, use this skill to execute bounded task chains.
Assess-Fixed Task:
assess <input_data> [--model <model_file>] [--policy <policy_file>] [--output <output_file>]
Route-Fixed Task:
route <input_data> [--routes <route_config>] [--policy <policy_file>] [--output <output_file>]
Classify-Fixed Task:
classify <input_data> [--classes <class_config>] [--policy <policy_file>] [--output <output_file>]
Chain Execution:
chain <chain_config> [--input <input_data>] [--policy <policy_file>] [--bundle-output <bundle_file>]
Task Status:
status <task_id> [--detailed] [--provenance]
Task History:
history [--limit <count>] [--filter assess|route|classify] [--json]
# Assess fixed decision with model
assess market_data.csv --model trading_model.t81w --policy risk_assessment.apl
# Route input through predefined decision paths
route customer_request.json --routes routing_config.json --policy compliance.apl
# Classify data with fixed categories
classify medical_data.json --classes diagnosis_classes.json --policy medical.apl
# Execute complete decision chain
chain trading_workflow.json --input market_data.csv --bundle-output decisions.bundle
# Check task execution status
status task_12345 --detailed --provenance
# View task execution history
history --limit 10 --filter assess --json
Assess-Fixed:
Route-Fixed:
Classify-Fixed:
Sequential Chains:
Input → Assess → Route → Classify → Output
Parallel Chains:
Input → [Assess1, Assess2, Assess3] → Aggregate → Output
Conditional Chains:
Input → Assess → Route(Condition) → [ClassifyA|ClassifyB] → Output
Task Configuration:
{
"task_type": "assess-fixed",
"model": "model.t81w",
"policy": "security.apl",
"parameters": {
"confidence_threshold": 0.95,
"determinism_mode": "strict"
},
"output_format": "bundle"
}
Chain Configuration:
{
"chain_id": "trading_workflow",
"tasks": [
{
"type": "assess-fixed",
"model": "risk_model.t81w",
"policy": "risk_assessment.apl"
},
{
"type": "route-fixed",
"routes": "trading_routes.json",
"policy": "execution_policy.apl"
},
{
"type": "classify-fixed",
"classes": "trade_classes.json",
"policy": "classification.apl"
}
],
"bundle_output": true
}
Task Result:
{
"task_id": "CanonHash81...",
"task_type": "assess-fixed",
"status": "completed",
"timestamp": "2026-04-04T15:30:00Z",
"input_hash": "CanonHash81...",
"result": {
"assessment": "high_risk",
"confidence": 0.98,
"determinism_verified": true
},
"provenance": {
"model_hash": "CanonHash81...",
"policy_hash": "CanonHash81...",
"execution_trace": "CanonHash81..."
},
"bundle": {
"created": true,
"bundle_hash": "CanonHash81...",
"bundle_location": "/bundles/assessment_123.bundle"
}
}
Chain Result:
{
"chain_id": "trading_workflow",
"status": "completed",
"timestamp": "2026-04-04T15:30:00Z",
"tasks_executed": 3,
"tasks_completed": 3,
"tasks_failed": 0,
"final_result": {
"decision": "execute_trade",
"parameters": {
"symbol": "AAPL",
"quantity": 100,
"confidence": 0.97
}
},
"bundle": {
"bundle_hash": "CanonHash81...",
"contains_provenance": true,
"determinism_guaranteed": true
}
}
Pre-Execution Checks:
Runtime Enforcement:
Post-Execution Validation:
This skill wraps T81's bounded AI task chains:
t81 ai task <task_type> --input <data> --model <model> --policy <policy> --bundle