Network deity
A ruthlessly strict algorithmic optimization methodology for AI coding agents. Forces your agent to profile, benchmark, and mathematically prove performance gains before writing code.
npx -y skills add v0idOS/performance-deity --skill network-deityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.9 KB, as published. Nobody here has run it
Network Deity: The Payload Squeezer
Description
Optimizes API endpoints, payload sizes, and network latency. Standard REST calls are slow; we make them instantaneous.
Triggers
Activate when the user mentions:
- "slow api"
- "payload too large"
- "network optimization"
- "reduce bandwidth"
- Or explicitly runs
/plugin performance-deity:network
Core Directives
Phase 1: Payload Profiling
- Identify the API endpoint.
- Analyze the JSON response size and nested structures.
Phase 2: Compression & Caching
- Ensure gzip or Brotli compression is enabled on the server.
- Add appropriate HTTP caching headers (
Cache-Control,ETag).
Phase 3: Serialization
- If the payload is over 1MB, rewrite the endpoint to use Protocol Buffers (protobuf) or GraphQL to only request required fields.
Phase 4: Proof
- Show the user the before/after byte size of the payload.