用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FDU-INS/Insurance-Skills --skill t81-policy-checker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | t81_policy_checker |
| description | Check Axion policy compliance for T81 operations and decisions |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill evaluates Axion policies for T81 operations, providing deterministic policy validation and compliance checking.
When the user needs to validate operations against T81's Axion governance policies, use this skill to perform policy evaluation.
Check policy compliance:
check <operation> <resource> [--policy <policy_file>] [--context <context_file>]
Validate policy syntax:
validate-policy <policy_file> [--strict]
Test policy rules:
test-rule <policy_file> <rule_name> [--test-data <data_file>]
List available policies:
list-policies [--canonfs-root <path>]
Simulate policy decision:
simulate <operation> <resource> [--policy <policy_file>] [--dry-run]
# Check if import operation is allowed
check import model.t81w --policy security.apl
# Validate policy file syntax
validate-policy ./policies/secure_model.apl --strict
# Test specific rule with test data
test-rule security.apl allow_model_import --test-data test_cases.json
# List all policies in CanonFS
list-policies --canonfs-root ~/.t81_canonfs
# Simulate policy decision without execution
simulate inference neural_net.t81w --policy inference.apl --dry-run
Supported Operations:
import - Import files into CanonFSexport - Export files from CanonFSexecute - Run T81VM operationsinference - Perform AI inferencebundle_create - Create decision bundlesbundle_consume - Consume decision bundlesPolicy Context: Policy evaluation can include context from:
Policy Allow:
{
"decision": "allow",
"operation": "import",
"resource": "model.t81w",
"policy": "security.apl",
"reason": "approved_model_hash",
"timestamp": "2026-04-04T15:30:00Z",
"policy_hash": "CanonHash81..."
}
Policy Deny:
{
"decision": "deny",
"operation": "execute",
"resource": "untrusted_code.tisc",
"policy": "security.apl",
"reason": "unapproved_code_hash",
"timestamp": "2026-04-04T15:30:00Z",
"policy_hash": "CanonHash81...",
"suggestions": [
"Get code approved through security review",
"Use approved code from trusted repository"
]
}
Axion Policy Syntax:
# Allow model inference for approved hashes
allow inference if model.hash in approved_models;
# Deny execution during maintenance windows
deny execute if time in maintenance_hours;
# Conditional resource access
allow export if user.role in ["admin", "auditor"]
and resource.classification <= "secret";
Policy Evaluation:
This skill wraps T81's Axion policy engine and provides standardized access to policy validation APIs.