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

@dedesfr/prompter

v0.8.5

Published

Enhance prompts directly in your AI coding workflow

Readme

Prompter

Enhance prompts directly in your AI coding workflow. Transform rough ideas into polished, professional-grade specifications.

Installation

npm install -g @prompter/cli
# or
pnpm add -g @prompter/cli

Quick Start

# Initialize Prompter in your project
cd my-project
prompter init

# Use the workflow in your AI assistant
/prompter-enhance Create a netflix homepage clone

How It Works

  1. Initialize - Run prompter init to set up workflows for your AI tools
  2. Enhance - Use /prompter-enhance with a rough idea
  3. Review - Find the enhanced spec in prompter/<slug>/enhanced-prompt.md
  4. Build - Use the enhanced specification to guide implementation

Available Workflows

Prompter includes multiple workflow templates for different documentation needs:

/prompter-enhance - Prompt Enhancement

Transform rough ideas into clear, actionable specifications.

/prompter-enhance Build a user dashboard with analytics

Output: prompter/<slug>/enhanced-prompt.md

/prd-generator - Product Requirements Document

Generate comprehensive PRDs with objectives, user stories, and success metrics.

/prd-generator Feature: User authentication system

Output: prompter/<slug>/prd.md

/epic-single - Jira Epic Generation

Create well-structured Jira Epics from high-level requirements.

/epic-single Payment processing system for e-commerce

Output: prompter/<slug>/epic.md

/story-single - User Story Generation

Convert requirements or QA findings into actionable user stories.

/story-single Users need to reset their password via email

Output: prompter/<slug>/story.md

/qa-test-scenario - QA Test Scenarios

Generate focused test scenarios from PRDs or requirements.

/qa-test-scenario [paste your PRD content]

Output: prompter/<slug>/qa-test-scenarios.md

Supported AI Tools

Each tool gets workflow files for all commands (/prompter-enhance, /prd-generator, /epic-single, /story-single, /qa-test-scenario):

  • Antigravity - .agent/workflows/*.md
  • Claude Code - .claude/commands/prompter/*.md
  • Codex - .codex/prompts/*.md
  • GitHub Copilot - .github/prompts/*.md
  • OpenCode - .opencode/prompts/*.md
  • Kilo Code - .kilocode/workflows/*.md
  • Universal - AGENTS.md for any AGENTS.md-compatible tool

Commands

prompter init              # Initialize Prompter (or re-configure tools)
prompter update            # Update workflow files to latest version
prompter list              # List all enhanced prompts
prompter list --json       # Output as JSON
prompter prd-generator     # Generate PRD workflow files for configured tools

Re-configuring Tools

You can run prompter init again at any time to add, remove, or switch AI tools. See docs/reconfigure-tools.md for details.

# Add or remove tools interactively
prompter init

# Or specify tools directly
prompter init --tools github-copilot,claude

Output Structure

prompter/
├── project.md                    # Project context (edit this!)
├── <slug>/
│   ├── enhanced-prompt.md        # Enhanced specification
│   ├── prd.md                    # Product Requirements Document
│   ├── epic.md                   # Jira Epic
│   ├── story.md                  # Jira User Story
│   └── qa-test-scenarios.md      # QA Test Scenarios
└── ...

Configuration

Edit prompter/project.md to provide context about your project. This helps the AI assistant generate more relevant enhanced specifications.

License

MIT