AI Coding Skills¶
Claude Code and OpenAI Codex skills for AI-assisted development with pico-pydantic.
Installation¶
curl -sL https://raw.githubusercontent.com/dperezcabrera/pico-skills/main/install.sh | bash -s -- pydantic
Or install all pico-framework skills:
Platform-specific¶
# Claude Code only
curl -sL https://raw.githubusercontent.com/dperezcabrera/pico-skills/main/install.sh | bash -s -- --claude pydantic
# OpenAI Codex only
curl -sL https://raw.githubusercontent.com/dperezcabrera/pico-skills/main/install.sh | bash -s -- --codex pydantic
Available Commands¶
/add-validation¶
Adds Pydantic validation to component methods via AOP. Use when you need automatic input validation on service methods without manual checking.
How it works: pico-pydantic's ValidationInterceptor inspects type hints with BaseModel parameters and validates them automatically before method execution.
/add-component¶
Creates a new pico-ioc component with dependency injection. Use when adding services, factories, or interceptors.
/add-tests¶
Generates tests for existing pico-framework components. Creates unit tests with validation error assertions.
More Information¶
See pico-skills for the full list of skills, selective installation, and details.