Expert skill for binary and text serialization formats, schema design, and optimization
Designs and optimizes binary and text serialization formats with schema evolution support.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdExpert 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'
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.