Skillquality 0.45
pilot-model-share
Distribute ML model files with model card metadata and version tracking over Pilot Protocol. Use this skill when: 1. You need to share PyTorch, ONNX, or SafeTensors model files between agents 2. You want to distribute models with metadata (architecture, training info, metrics) 3
What it does
pilot-model-share
ML model distribution with model cards, metadata, and version tracking.
Commands
Publish Model Availability
pilotctl --json publish "$PEER" models --data '{"type":"model_available","name":"resnet50","version":"1.0.0","framework":"pytorch"}'
Request Model
pilotctl --json send-message "$DEST" --data '{"type":"model_request","name":"resnet50","preferred_format":"onnx"}'
Send Model with Metadata
pilotctl --json send-message "$DEST" --data '{"type":"model_metadata","name":"llama3_8b","file":{"checksum":"abc123"}}'
pilotctl --json send-file "$DEST" "$MODEL_FILE"
Validate Checksum
EXPECTED_CHECKSUM=$(pilotctl --json inbox | jq -r '.messages[] | select(.type == "model_metadata") | .file.checksum' | head -1)
ACTUAL_CHECKSUM=$(md5sum "$RECEIVED_MODEL" | cut -d' ' -f1)
[ "$EXPECTED_CHECKSUM" = "$ACTUAL_CHECKSUM" ] && echo "Model verified"
Workflow Example
#!/bin/bash
# Model distribution
PEER="agent-b"
share_model() {
local model_file="$1"
local model_name="${2:-$(basename $model_file .pth)}"
pilotctl --json publish "$PEER" models --data "{\"type\":\"model_available\",\"name\":\"$model_name\"}"
}
share_model "model.pth" "my-model"
Dependencies
Requires pilot-protocol, pilotctl, jq, and md5sum.
Capabilities
skillsource-teoslayerskill-pilot-model-sharetopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,326 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:14:58Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18