Skip to main content

SkillBox - A Curated Collection of AI Agent Skills

SkillBox - A Curated Collection of AI Agent Skills

I’ve released SkillBox—a curated collection of reusable skills that provide basic agentic AI utilities in one box.

What’s SkillBox?

After months of working with AI agents, I found myself repeatedly explaining the same patterns: React component structure, git worktree setup, session management, and skill creation. SkillBox packages these as reusable skills that work with Claude Code, Cursor, Cline, GitHub Copilot, and 40+ other AI agents.

Installation

npx skills add antjanus/skillbox

Launch-Day Skills

🔄 save-session - Track progress across long development sessions. Creates structured summaries, captures architectural decisions, and enables seamless context restoration.

🌳 git-worktree - Manage multiple branches simultaneously for parallel development. Creates and configures git worktrees with proper conventions. See Using Git Worktrees to Parallelize AI Agents for more.

⚛️ ideal-react-component - Battle-tested React component patterns. Enforces consistent structure, proper hooks usage, and TypeScript conventions. Based on The Anatomy Of My Ideal React Component.

⚙️ generate-skill - Interactive builder for creating high-quality skill documentation. Guides you through structure, provides templates, and ensures proper activation conditions.

Usage

Skills activate automatically when relevant or can be invoked explicitly:

/save-session
/git-worktree
/ideal-react-component
/generate-skill

Check out the GitHub repository for detailed documentation and examples.