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

@hanhnd/agent-kit

v1.0.9

Published

Super Engineer - Team of AI Agents for software development (Claude Code Plugin)

Readme

Agent-Kit

Super Engineer — a team of specialized AI agents for software development. Brainstorm ideas, plan implementations, write code, and review PRs using a structured multi-agent workflow powered by Claude Code.

What It Does

Commands

| Command | Description | | -------------------------------- | ------------------------------------------------------------------ | | /ak:brainstorm [idea] | Strategic architectural analysis | | /ak:plan [file or idea] | Create an implementation blueprint | | /ak:code [file or task] | Implement from a plan | | /ak:code-simplify | Refactor modified code for readability | | /ak:research [topic] | Research a topic | | /ak:review-pr [PR URL] | Review a pull request | | /ak:review | Review uncommitted local changes | | /ak:debate [subject] | Run adversarial debate (Gilfoyle vs Dinesh vs Judge) | | /ak:ticket [ID] | Fetch a Jira ticket and plan from it | | /ak:git | Git commit, branch, and PR workflow | | /ak:init | Create the project overview file | | /ak:orchestrate [file or idea] | Orchestrate agents to solve problems span across multiple projects | | /ak:delegate <agent> <task> | Delegate a task to Gemini or Claude CLI |


Installation

Option 1: Install via GitHub (Recommended)

claude plugin marketplace add https://github.com/hanh-nd/agent-kit
claude plugin install ak

The plugin fetches from GitHub, registers the MCP server automatically, and makes all commands available immediately.

Add credentials to your shell profile (~/.zshrc or ~/.bashrc):

export ATLASSIAN_CLOUD_ID="your-atlassian-cloud-id"
export ATLASSIAN_USER_EMAIL="[email protected]"
export ATLASSIAN_API_TOKEN="your-atlassian-api-token"
export BITBUCKET_USER_EMAIL="[email protected]"
export BITBUCKET_API_TOKEN="your-atlassian-api-token"
export BITBUCKET_DEFAULT_WORKSPACE="your-default-workspace-slug"

To update: claude plugin update ak To uninstall: claude plugin uninstall ak


Option 2: Clone and Install Locally

Use this if you want to modify the plugin or develop against it.

1. Clone and build

git clone https://github.com/hanh-nd/agent-kit.git
cd agent-kit
npm install
npm run build

2. Register the plugin

claude plugin marketplace add /absolute/path/to/agent-kit
claude plugin install ak

This registers the MCP server automatically (pointing to your local build). Do not manually add a kit-agents entry to settings.json — the plugin handles that.

3. Add credentials to your shell profile (~/.zshrc or ~/.bashrc):

export ATLASSIAN_CLOUD_ID="your-atlassian-cloud-id"
export ATLASSIAN_USER_EMAIL="[email protected]"
export ATLASSIAN_API_TOKEN="your-atlassian-api-token"
export BITBUCKET_USER_EMAIL="[email protected]"
export BITBUCKET_API_TOKEN="your-atlassian-api-token"
export BITBUCKET_DEFAULT_WORKSPACE="your-default-workspace-slug"

4. Verify

/ak:brainstorm test idea

Option 3: Install as Gemini Extension (Optional)

If you want to reuse the commands with Gemini CLI (for /ak:delegate to Gemini), install it using:

gemini extension install https://github.com/hanh-nd/agent-kit

Development

# Build once
npm run build

# Watch mode (rebuilds on file changes)
npm run dev

The MCP server source is in src/. Agent personas are in agents/. Skill modules are in skills/.


Requirements

  • Node.js 18+
  • Claude Code (latest)

Integrations

Jira (via Atlassian REST API)

Used by /ak:ticket and /ak:review-pr.

| Variable | Description | | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | ATLASSIAN_CLOUD_ID | Your Atlassian Cloud ID — find it at admin.atlassian.com under your site settings | | ATLASSIAN_USER_EMAIL | Your Atlassian account email | | ATLASSIAN_API_TOKEN | API token — create at id.atlassian.com/manage-profile/security/api-tokens |

Bitbucket Cloud (via Bitbucket REST API)

Used by /ak:review-pr.

| Variable | Description | | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | BITBUCKET_USER_EMAIL | Your Atlassian account email (same as Jira) | | BITBUCKET_API_TOKEN | API token — create at id.atlassian.com/manage-profile/security/api-tokens | | BITBUCKET_DEFAULT_WORKSPACE | Default workspace slug — used when passing a numeric PR ID without a workspace param |