build-and-compile
Building, compiling, and resolving dependency issues across languages
Writing efficient code that handles large data and tight constraints
$ npx -y skills add vstorm-co/pydantic-deepagents --skill performant-code --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/performant-codeContext preview
The summary Claude sees to decide when to auto-load this skill.
Writing efficient code that handles large data and tight constraints
name: performant-code description: "Writing efficient code that handles large data and tight constraints" tags: [performance, optimization, benchmark] version: "1.0.0"
How to write code that won't timeout on large inputs.
Before writing code, ask: how big is the data?
| Data size | Approach | |-----------|----------| | < 1 MB | Load into memory, any approach works | | 1-100 MB | Load into memory, but use efficient algorithms | | 100 MB - 1 GB | Stream/mmap, avoid loading entirely into memory | | > 1 GB | Streaming only, chunk-based processing |
Open-source, self-hosted Claude Code - a terminal AI assistant and the Python framework behind it. Tool-calling, sandboxed execution, multi-agent teams, skills, checkpoints, unlimited context - on Pydantic AI, any model.
Repo: vstorm-co/pydantic-deepagents
Building, compiling, and resolving dependency issues across languages
Working with diverse data formats: binary, text, structured, and custom
Systematic exploration of unknown environments before starting work