npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ai-agent-toolkit

v1.0.0

Published

A comprehensive toolkit of reusable skills for AI coding agents

Downloads

277

Readme

AI Agent Toolkit

A comprehensive toolkit of reusable skills for AI coding agents like Claude, Codex, and Gemini. These skills provide specialized instructions that enhance AI assistants' capabilities across various development tasks.

Overview

AI Agent Toolkit contains modular skill definitions that can be installed at user or project scope. Each skill provides specific guidance for AI agents to handle common development scenarios effectively.

Available Skills

Core Workflow

  • ai-pair-programming - Collaborative coding practices for AI and humans
  • commit-message - Clear, standardized commit messages (Conventional Commits)
  • git-workflow - Branching, rebasing, PRs, and clean history
  • code-review - Constructive reviews focusing on quality and maintainability
  • debugging - Systematic, evidence-driven bug investigation and resolution

Architecture & Design

Backend & Services

  • api-design - REST/GraphQL conventions, naming, pagination, errors
  • api-mocking - Contract-first mocks for dev/test (Prism/MSW)
  • database-design - Schema integrity, indexing, partitioning
  • database-management - Migrations, backups, tuning, monitoring
  • caching - Reduce latency and load with appropriate cache layers
  • messaging - Async processing and service communication with queues/streams

Frontend Web

  • react-web-development - Component architecture, hooks, patterns, and testing
  • vue - Composition API, components, and ecosystem best practices
  • angular - Modules, DI, RxJS, and enterprise app structure
  • web-accessibility - WCAG compliance and inclusive UX patterns
  • performance - Rendering, code-splitting, and lighthouse targets
  • state-management - Redux/Pinia/Zustand patterns and data flows

Mobile

Data & ML

DevOps & SRE

Security & Compliance

Testing & Quality

Performance & Reliability

Documentation & DX

  • business-context - Domain knowledge and requirements context for AI agents
  • adrs - Architecture Decision Records for transparent choices
  • changelogs - Human-friendly release summaries with automation
  • contributor-guide - Onboarding, workflow, and conventions for contributors
  • release-notes - User-facing change communication
  • code-comments - Intent-revealing comments only where needed

AI Agent Ops

  • optimize-prompt - Clear prompts, constraints, formats, and iterative refinement
  • tool-use - Safely invoking tools with plans, validation, idempotency, and verification
  • multi-agent-orchestration - Role design, structured messaging, handoffs, and coordination
  • memory-context - Managing context windows, recall, summarization, and caching

Installation Scopes

| CLI | User Scope | Project Scope | | ------ | ------------------- | ----------------- | | Claude | ~/.claude/skills/ | .claude/skills/ | | Codex | ~/.codex/skills/ | .codex/skills/ | | Gemini | ~/.gemini/skills/ | .gemini/skills/ |

User Scope

Install skills globally for all projects:

# Copy skills to user scope
cp -r src/skills/ai-pair-programming ~/.claude/skills/
cp -r src/skills/code-review ~/.claude/skills/

Skill Structure

Each skill follows a consistent format:

Keep SKILL.md under 500 lines for optimal performance. If your content exceeds this, split detailed reference material into separate files.

---
name: skill-name
description: Brief description of when to use this skill
---

When [triggering condition], always follow these steps:

1. **First step**: Clear action to take
2. **Second step**: Another specific action
3. **Third step**: Continue the process

## Key Principles

**Do:**

- Specific guideline
- Another guideline

**Don't:**

- Anti-pattern to avoid
- Another thing to avoid

CLI Tool

Install the CLI tool to easily manage and deploy skills:

# Install globally from npm
npm install -g ai-agent-toolkit

# Or install locally in development
npm link

CLI Commands

# List all available skills
aat list

# Show detailed info about a skill
aat info react

# Copy skills interactively (with prompts)
aat copy

# Copy all skills to user scope
aat copy --all --dest ~/.claude/skills/

# Copy specific skills
aat copy --skills react vue angular --dest ./.claude/skills/

Usage

Once installed, skills are automatically available to the AI agent when working within the configured scope. The agent will reference the skill instructions when appropriate for the task at hand.

Contributing

To add a new skill:

  1. Create a new folder in src/skills/ with a descriptive name
  2. Add a SKILL.md file following the standard format
  3. Include clear name, description, and actionable steps
  4. Provide Do's and Don'ts for clarity
  5. Test the skill with real-world scenarios

License

MIT License - Feel free to use and adapt these skills for your needs.