원클릭으로
t81-canonfs-export
Export files from T81 CanonFS with hash verification and integrity validation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Export files from T81 CanonFS with hash verification and integrity validation
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
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_canonfs_export |
| description | Export files from T81 CanonFS with hash verification and integrity validation |
| metadata | {"openclaw":{"os":["darwin","linux"],"requires":{"bins":["t81"]}}} |
This skill exports files from T81's CanonFS (Canonical File System) with cryptographic hash verification and complete integrity validation.
When the user needs to retrieve files from CanonFS with guaranteed integrity and verification, use this skill to export immutable objects.
Export a single object:
export <canon_hash> [--output <output_file>] [--canonfs-root <path>] [--verify] [--json]
Export multiple objects:
export-batch <hash1> <hash2> <hash3> [--output-dir <dir>] [--canonfs-root <path>]
Verify export integrity:
verify-export <canon_hash> [--exported-file <file>] [--canonfs-root <path>]
List available objects:
list [--canonfs-root <path>] [--format json|table] [--filter <pattern>]
Search objects:
search <query> [--canonfs-root <path>] [--field name|hash|type] [--max-results <count>]
Export with metadata:
export-with-meta <canon_hash> [--output <file>] [--include-provenance] [--canonfs-root <path>]
# Export object by CanonHash81
export CanonHash81_ABC123... --output restored_model.t81w
# Export with verification
export CanonHash81_DEF456... --output data.bin --verify --canonfs-root /secure/canonfs
# Export multiple objects to directory
export-batch hash1 hash2 hash3 --output-dir ./exports/
# Verify exported file integrity
verify-export CanonHash81_ABC123... --exported-file restored_model.t81w
# List all objects in JSON format
list --canonfs-root ~/.t81_canonfs --format json
# Search for objects by name pattern
search "model.*\.t81w" --field name --max-results 10
# Export with complete provenance
export-with-meta CanonHash81_GHI789... --include-provenance --output bundle_with_meta.zip
Hash Verification:
Provenance Validation:
Integrity Checks:
Successful Export:
{
"status": "success",
"canon_hash": "CanonHash81_ABC123...",
"output_file": "restored_model.t81w",
"timestamp": "2026-04-04T15:30:00Z",
"verification": {
"hash_verified": true,
"integrity_check": "passed",
"provenance_valid": true
},
"metadata": {
"original_name": "model.t81w",
"import_time": "2026-04-04T14:15:00Z",
"file_size": 1048576,
"content_type": "t81_weights",
"policy_hash": "CanonHash789..."
},
"provenance": {
"importer": "t81_v1.9.0",
"source_location": "/models/original.t81w",
"policy_applied": "secure_import.apl",
"import_bundle": "CanonHash81_IMPORT..."
}
}
Verification Failure:
{
"status": "verification_failed",
"canon_hash": "CanonHash81_DEF456...",
"error": {
"type": "hash_mismatch",
"expected_hash": "CanonHash81_DEF456...",
"computed_hash": "CanonHash81_MISMATCH...",
"integrity_status": "corrupted"
},
"suggestions": [
"Verify CanonFS storage integrity",
"Check for storage corruption",
"Re-import original file if available"
]
}
Search Fields:
name - Original filename pattern matchinghash - CanonHash81 pattern matchingtype - Content type filteringsize - File size rangesdate - Import date rangesFilter Examples:
# Search by name pattern
search ".*\.t81w$" --field name
# Search by hash prefix
search "CanonHash81_ABC.*" --field hash
# Filter by content type
search "t81_weights" --field type
# Search by date range
search "2026-04-.*" --field date
Batch Export Features:
Batch Export Result:
{
"batch_id": "CanonHash81_BATCH...",
"status": "completed",
"total_objects": 10,
"successful_exports": 9,
"failed_exports": 1,
"output_directory": "./exports/",
"timestamp": "2026-04-04T15:30:00Z",
"results": [
{
"hash": "CanonHash81_ABC123...",
"status": "success",
"file": "model1.t81w"
},
{
"hash": "CanonHash81_DEF456...",
"status": "failed",
"error": "object_not_found"
}
]
}
Access Control:
Integrity Protection:
Audit Trail:
Large File Handling:
Concurrent Access:
This skill wraps T81's CanonFS export functionality:
t81 canonfs export <hash> --out <file> --canonfs-root <path> --verify --json