Quick Start
Get from zero to running AI agent prompts in under 5 minutes.
1. Install
npm install -g prompts-gpt
2. Check prerequisites
prompts-gpt doctor
This shows which providers are available and flags any issues.
3. Interactive quickstart (recommended)
prompts-gpt quickstart
The quickstart wizard walks you through:
- Entering your project token (from prompts-gpt.com)
- Pulling prompt packs from your project library
- Setting up local configuration
- Running your first sweep
4. Manual setup (alternative)
Save your token
prompts-gpt init --token pgpt_your_token_here
Pull prompt packs
prompts-gpt sync
This downloads prompts and generates agent files (AGENTS.md, .cursor/rules/, etc.).
Set up orchestration config
prompts-gpt setup
Creates .prompts-gpt/config.json with provider settings.
5. Run your first prompt
Single prompt execution
prompts-gpt run -f .prompts-gpt/my-prompt.md
Multi-iteration sweep
prompts-gpt sweep -f .prompts-gpt/sweeps/my-audit.md -n 3
Interactive mode
prompts-gpt sweep
Without flags, the CLI opens an interactive picker where you choose the sweep file, iteration count, provider, and model.
6. View results
prompts-gpt list
Shows all available prompts, sweep files, and agent integrations with runnable commands.
Minimal Local-Only Setup
You don't need a prompts-gpt.com account for local-only workflows:
# Create a sweep file manually
mkdir -p .prompts-gpt/sweeps
cat > .prompts-gpt/sweeps/code-review.md << 'EOF'
# Code Review
Review the codebase for bugs, security issues, and code quality problems.
Fix every issue found. Do not just report — implement the fix.
## Checklist
- [ ] Check for SQL injection vulnerabilities
- [ ] Verify error handling is comprehensive
- [ ] Ensure no hardcoded secrets
- [ ] Check for race conditions
EOF
# Run it
prompts-gpt sweep -f .prompts-gpt/sweeps/code-review.md -n 2
What's Next?
| Goal | Command | Guide |
|---|---|---|
| Run one prompt | prompts-gpt run -f <file> | Run Command |
| Run multiple prompts | prompts-gpt run-batch --prompt-files a.md,b.md | Run-Batch Command |
| Multi-iteration deep dive | prompts-gpt sweep -f <file> -n 5 | Sweep Command |
| Compare providers | prompts-gpt orchestrate --mode parallel | Orchestrate Command |
| Sync agent files | prompts-gpt sync | Sync Command |
| Generate new prompts | prompts-gpt generate --goal "..." | Generate Command |