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

archon-agent-kit

v0.2.2

Published

Archon Agent Kit installer with embedded PRP templates and dual output generation (Cursor + Claude Code)

Readme

Archon Agent Kit (Cursor + Claude Code)

This kit integrates Archon MCP with Cursor and Claude Code to drive a full PRP workflow: research → plan (PRP) → implement → validate. It installs IDE-specific rules/commands that use Archon as the source of truth for tasks, documents, and research.

Scaffold agent-based PRP workflows for Archon in Cursor and Claude Code.

This tool bootstraps Archon-compatible rules, PRP scaffolds, and agent-ready templates using a simple interactive CLI. It’s designed to work with the official Archon MCP project and helps teams set up PRP development flows quickly and consistently.

Currently supports:

  • ✅ Cursor IDE (via .cursor/rules/*.mdc)
  • ✅ Claude Code (via .claude/commands/ArchonAgentKit/*.md)
  • ✅ Dynamic PRP base generation based on detected tech (e.g., Next.js, FastAPI)

Use this with a running Archon MCP instance for project-level research, planning, execution, and validation.


🚀 Why Archon Agent Kit?

This CLI helps you:

  • Set up project-specific rules for PRP generation and execution
  • Bootstrap reusable patterns into your IDE
  • Detect tech stack and generate matching base templates
  • Save and sync PRPs with Archon’s agent ecosystem

It replaces manual PRP setup and brings everything into a repeatable, IDE-native flow.


🛠️ What It Installs

| Component | Installed To | |---------------------------|-----------------------------------------------------------| | PRP base + quickstart | INITIAL.template.md, README-PRP.md | | Cursor rules | .cursor/rules/*.mdc | | Claude Code commands | .claude/commands/ArchonAgentKit/rules/*.md | | Vendored fallback assets | archon-agent-kit/assets/agent-kit/ (if bootstrap missing) |


⚙️ Requirements

  • Archon MCP server running (default: http://localhost:8051)
  • Cursor or Claude Code installed + configured to use MCP

📦 Installation

▶️ Interactive (Recommended)

# Local
node archon-agent-kit/bin/prp.js

# OR via npx:
npx archon-agent-kit
# or from GitHub
npx github:your-org/archon-agent-kit

Next steps:

  • Open your project in your IDE(s).
  • For Cursor, use the installed .mdc rules directly.
  • For Claude Code, open the Commands panel and look under ArchonAgentKit/rules.

Setup (Interactive Example)

Interactive setup example

You'll be prompted to:

  • Select IDE(s): Cursor and/or Claude Code
  • Choose a target directory
  • Inject PRP scaffolds and IDE rules

🧠 How It Works with Archon

This kit connects to your Archon MCP instance and maintains the current process in Archon:

  • Task Management: Create, track, and update PRP-based tasks
  • Document Creation: Generate and sync PRPs (document_type="prp")
  • RAG + Code Examples: Ask questions scoped to project context
  • Validation Flow: Automate execution checks in 4 progressive layers

🌀 PRP Workflow

  1. Prepare Context

    • Edit INITIAL.md: add project name, feature, docs, and tech hints
  2. Generate Base Template

    • Detects tech from INITIAL.md
    • Writes PRPs/templates/prp-base-{tech}.json
    • Saves a base PRP to Archon (document_type="prp")
  3. Create Feature PRP

    • Prompts or extracts implementation details
    • Outputs: PRP draft with paths, phases, gotchas, and validation stages
  4. Execute PRP

    • Uses execute-prp rule to run tasks in order
    • Auto-validates (syntax → unit → integration → security)
    • Updates task states via Archon
  5. Review + Reuse

    • View saved PRPs in Archon
    • Reuse and remix agent-generated patterns across projects

🧰 Using in IDEs

Cursor

# Example usage in `.cursor/rules/`
generate-base-template.mdc PRPs/INITIAL.md
create-prp.mdc PRPs/INITIAL.md
execute-prp.mdc PRPs/feature-prp.md

Requires Archon MCP connection.


🧠 Tech Stack Detection (PRP Tuning)

The base PRP adapts to your stack by analyzing:

  • Framework mentions (Next.js, FastAPI, Rust)
  • Docs links (nextjs.org/docs, docs.rs, etc.)
  • File structure hints (e.g., app/page.tsx, src/main.py)

Result:

  • PRPs/templates/prp-base-{tech}.json
  • Archon document saved for team reuse

📚 Supported PRP Base Templates

Generated files follow: PRPs/templates/prp-base-{tech}.json and use PRP JSON schema version 1.0.

Examples of {tech} identifiers this kit supports out‑of‑the‑box (selected by detection):

  • Frontend: nextjs, react, vue, svelte, remix, angular
  • Backend: fastapi, express, django, flask, spring, dotnet
  • Mobile: react-native, flutter, swift, kotlin
  • CLI: click, typer, commander, argparse, clap
  • Data layer: postgresql, mongodb, redis, sqlite, prisma, drizzle
  • Languages/Platforms: python, rust, node

For multi‑stack projects, the primary {tech} is chosen based on the strongest signals in INITIAL.md (framework mentions, docs links, and file patterns).

Detection Signals → Template Mapping

  • nextjs: triggered by any of:
    • Mentions: "Next.js", "App Router", React Server Components
    • Docs: nextjs.org/docs
    • Files: app/page.tsx, route handlers under app/api/*/route.ts
    • Example template: PRPs/examples/prp-base-nextjs.json
  • fastapi: triggered by any of:
  • express: triggered by any of:

Note: If multiple technologies are detected, signals are scored and the strongest match wins. You can steer detection by clarifying tech and docs in INITIAL.md.


📁 Project Notes

  • Supports Cursor and Claude only
  • Fully self-contained: vendored assets fallback if bootstrap folder is missing
  • Built specifically for the official coleam00/Archon repo

🔜 Coming Soon

  • Subagent scaffolding
  • Claude slash command builder
  • Custom rule injection via prompt

💻 Repo Setup (For Maintainers)

To publish:

  1. Push to GitHub as archon-agent-kit
  2. Ensure package.json includes bin field and correct name
  3. Users can run:
npx github:your-org/archon-agent-kit

👋 Get Involved

Want to contribute subagent templates or new rules?
Open an issue or PR at: github.com/9Mirrors-Lab/archon-agent-kit