library/specializations/network-programming/skills/serialization/SKILL.md
Expert skill for binary and text serialization formats, schema design, and optimization
npx skillsauth add a5c-ai/babysitter serializationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert skill for binary and text serialization formats, schema design, and performance optimization.
protoc - Protocol Buffer compilerflatc - FlatBuffers compilermsgpack-tools - MessagePack utilitiescbor-tools - CBOR utilitiescapnp - Cap'n Proto compileravro-tools - Apache Avro utilitiessyntax = "proto3";
package network;
message Packet {
uint32 sequence = 1;
bytes payload = 2;
int64 timestamp = 3;
map<string, string> headers = 4;
}
namespace Network;
table Packet {
sequence: uint32;
payload: [ubyte];
timestamp: int64;
headers: [KeyValue];
}
table KeyValue {
key: string;
value: string;
}
root_type Packet;
protoc --python_out=. --go_out=. packet.proto
flatc --python --go packet.fbs
hyperfine 'protoc-bench encode message.proto' 'msgpack-bench encode message.json'
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.