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

awesome-prompt-forge

v1.0.3

Published

2,592 lazy-loading AI system prompts & agents — Claude, Claude Code, ChatGPT, v0, Cursor, Grok & 226 AI agents

Downloads

63

Readme

awesome-prompt-forge

2,592 lazy-loading AI system prompts & agents — Claude, Claude Code, ChatGPT, v0, Cursor, Grok, Devin & 226 AI agent personalities

PyPI npm License: MIT

Real-world system prompts extracted from the world's top AI tools. Zero dependencies, lazy-loaded — only reads from disk when you ask for it.


Install

pip install awesome-prompt-forge
npm install awesome-prompt-forge

Python Usage

import prompt_forge as pf

# Load a prompt by name
p = pf.load("claude-5-06-2025")
print(p.content)

# Search by keyword
results = pf.search("linux terminal")
for r in results:
    print(r["name"], r["category"])

# List all Claude prompts
claude_prompts = pf.list_prompts(category="claude")
print(len(claude_prompts))

# Count per category
print(pf.categories())

JavaScript Usage

const pf = require('awesome-prompt-forge')

// Load a prompt
const p = pf.load('claude-5-06-2025')
console.log(p.content)

// Search
const results = pf.search('linux terminal')
results.forEach(r => console.log(r.name, r.category))

// List by category
const v0Prompts = pf.listPrompts('v0')

// Stats
console.log(pf.categories())

CLI

# Python CLI
promptforge stats
promptforge search "linux terminal"
promptforge list --category claude
promptforge load claude-5-06-2025

# Node CLI
npx awesome-prompt-forge stats
npx awesome-prompt-forge search "code review"

Categories

| Category | Description | Count | |----------|-------------|-------| | claude | Official Claude system prompts | 11 | | claude-code | Claude Code internal agent/skill/tool prompts | 340 | | chatgpt | GPT-4, ChatGPT, o3/o4 prompts | 18 | | v0 | Vercel v0 system prompts | 3 | | cursor | Cursor IDE prompts | 2 | | copilot | GitHub & Microsoft Copilot | 4 | | grok | Grok 1/2/3 prompts | 7 | | devin | Devin 2.0 prompt | 2 | | perplexity | Perplexity AI prompt | 2 | | llama | Meta Llama 4 prompt | 1 | | writing | Writing-focused system prompts | 87 | | general | Role-based personas (act as...) | 1,857 | | tools | Manus, Windsurf, Loveable, Replit, etc. | 32 | | agents | AI agent personalities (engineering, marketing, design, sales...) | 226 |


Data Sources


Made with ❤️ by Lord1Egypt