一键导入
t81-model-loader
Load external AI models into T81 with secure conversion and immutable storage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Load external AI models into T81 with secure conversion and immutable storage
用 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_model_loader |
| description | Load external AI models into T81 with secure conversion and immutable storage |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill loads external AI models into T81's ecosystem with secure conversion, deterministic validation, and immutable CanonFS storage.
When the user needs to import external AI models (Hugging Face, GGUF, etc.) into T81, use this skill for secure model conversion and storage.
Load Hugging Face model:
load-hf <model_name_or_path> [--output <output_file>] [--canonfs-root <path>] [--policy <policy_file>]
Load GGUF model:
load-gguf <gguf_file> [--output <output_file>] [--canonfs-root <path>] [--validate]
Load SafeTensors model:
load-safetensors <safetensors_file> [--output <output_file>] [--canonfs-root <path>]
Probe model structure:
probe-model <model_file> [--detailed] [--layer-info] [--output <probe_file>]
Validate model integrity:
validate-model <model_file> [--check-determinism] [--security-scan] [--output <report_file>]
Convert model format:
convert-model <input_file> [--to-format t81w|safetensors|gguf] [--output <output_file>]
Batch model processing:
batch-load <model_directory> [--recursive] [--output-dir <dir>] [--canonfs-root <path>]
# Load Hugging Face model with policy
load-hf "bert-base-uncased" --output bert.t81w --policy model_import.apl
# Load GGUF model with validation
load-gguf llama-2-7b.gguf --canonfs-root ~/.t81_canonfs --validate
# Probe model structure
probe-model model.t81w --detailed --layer-info --output model_structure.json
# Validate model integrity and determinism
validate-model weights.t81w --check-determinism --security-scan
# Convert between formats
convert-model model.safetensors --to-format t81w --output model.t81w
# Batch process model directory
batch-load ./models/ --recursive --output-dir ./converted/ --canonfs-root ./canonfs/
Input Formats:
Output Formats:
1. Model Analysis:
2. Security Validation:
3. Deterministic Conversion:
4. CanonFS Storage:
Model Loading Result:
{
"status": "success",
"model_name": "bert-base-uncased",
"input_format": "huggingface",
"output_file": "bert.t81w",
"canonfs_hash": "CanonHash81_ABC123...",
"timestamp": "2026-04-04T15:30:00Z",
"model_info": {
"architecture": "BERT",
"parameters": 110000000,
"layers": 12,
"hidden_size": 768,
"vocab_size": 30522
},
"conversion": {
"precision_preserved": true,
"determinism_verified": true,
"ternary_optimized": true,
"compression_ratio": 0.85
},
"security": {
"scanned": true,
"threats_detected": 0,
"policy_compliant": true,
"signature_verified": true
},
"provenance": {
"source": "huggingface_hub",
"import_version": "1.9.0",
"conversion_hash": "CanonHash81_CONV...",
"policy_hash": "CanonHash81_POLICY..."
}
}
Model Probe Result:
{
"model_file": "bert.t81w",
"timestamp": "2026-04-04T15:30:00Z",
"architecture": "BERT",
"layers": [
{
"name": "embeddings.word_embeddings",
"type": "embedding",
"shape": "[30522, 768]",
"dtype": "ternary_float",
"parameters": 23440896
},
{
"name": "encoder.layer.0.attention.self.query",
"type": "linear",
"shape": "[768, 768]",
"dtype": "ternary_float",
"parameters": 589824
}
],
"total_parameters": 110000000,
"model_size_mb": 420,
"ternary_optimized": true,
"determinism_guaranteed": true
}
Model Scanning:
Policy Enforcement:
Access Control:
Conversion Determinism:
Execution Determinism:
Large Model Handling:
Optimization Features:
This skill wraps T81's model loading and conversion pipeline:
t81 model load <source> --format <format> --output <file> --canonfs-root <path> --policy <policy>