- A collection of prompts i use in my every day work
👉 https://www.youtube.com/watch?v=KVOZ9s1S9Gk&lc=UgzfwxvFjo6pKEyPo1R4AaABAg
Found value in these resources?
👉 Buy me a coffee: https://coff.ee/wirasm
I spent a considerable amount of time creating these resources and prompts. If you find value in this project, please consider buying me a coffee to support my work.
That will help me maintain and improve the resources available for free
Ready to move beyond toy demos to production-ready AI systems?
👉 Book a workshop: https://www.rasmuswiding.com/
✅ What you'll get:
- Put your team on a path to become AI power users
- Learn the exact PRP methodology used by top engineering teams
- Hands-on training with Claude Code, PRPs, and real codebases
- From beginner to advanced AI engineering workshops for teams and individuals
💡 Perfect for: Engineering teams, Product teams, and developers who want AI that actually works in production
Let's talk! Contact me directly at rasmus@widinglabs.com
A comprehensive library of assets and context engineering for Agentic Engineering, optimized for Claude Code. This repository provides the Product Requirement Prompt (PRP) methodology, pre-configured commands, and extensive documentation to enable AI-assisted development that delivers production-ready code on the first pass.
Product Requirement Prompt (PRP)
A PRP is PRD + curated codebase intelligence + agent/runbook—the minimum viable packet an AI needs to plausibly ship production-ready code on the first pass.
Product Requirement Prompt (PRP) is a structured prompt methodology first established in summer 2024 with context engineering at heart. A PRP supplies an AI coding agent with everything it needs to deliver a vertical slice of working software—no more, no less.
A traditional PRD clarifies what the product must do and why customers need it, but deliberately avoids how it will be built.
A PRP keeps the goal and justification sections of a PRD yet adds three AI-critical layers:
Precise file paths and content, library versions and library context, code snippets examples. LLMs generate higher-quality code when given direct, in-prompt references instead of broad descriptions. Usage of a ai_docs/ directory to pipe in library and other docs.
-
Copy the Claude commands to your project:
# From your project root cp -r /path/to/PRPs-agentic-eng/.claude/commands .claude/
-
Copy the PRP templates and runner:
cp -r /path/to/PRPs-agentic-eng/PRPs/templates PRPs/ cp -r /path/to/PRPs-agentic-eng/PRPs/scripts PRPs/ cp /path/to/PRPs-agentic-eng/PRPs/README.md PRPs/
-
Copy AI documentation (optional but recommended):
cp -r /path/to/PRPs-agentic-eng/PRPs/ai_docs PRPs/
-
Clone this repository:
git clone https://github.com/Wirasm/PRPs-agentic-eng.git cd PRPs-agentic-eng
-
Create your project structure:
# Example for a Python project mkdir -p src/tests touch src/__init__.py touch pyproject.toml touch CLAUDE.md
-
Initialize with UV (for Python projects):
uv venv uv sync
The .claude/commands/
directory contains 12 pre-configured commands that appear as slash commands in Claude Code.
-
PRP Creation & Execution:
/create-base-prp
- Generate comprehensive PRPs with research/execute-base-prp
- Execute PRPs against codebase/planning-create
- Create planning documents with diagrams/spec-create-adv
- Advanced specification creation/spec-execute
- Execute specifications
-
Code Review & Refactoring:
/review-general
- General code review/review-staged-unstaged
- Review git changes/refactor-simple
- Simple refactoring tasks
-
Git & GitHub:
/create-pr
- Create pull requests
-
Utilities:
/prime-core
- Prime Claude with project context/onboarding
- Onboarding process for new team members/debug
- Debugging workflow
- In Claude Code, type
/
to see available commands - Select a command and provide arguments when prompted
- Example usage:
/create-base-prp user authentication system with OAuth2
-
Use the template as a starting point:
cp PRPs/templates/prp_base.md PRPs/my-feature.md
-
Fill in the sections:
- Goal: What needs to be built
- Why: Business value and user impact
- Context: Documentation, code examples, gotchas
- Implementation Blueprint: Tasks and pseudocode
- Validation Loop: Executable tests
-
Or use Claude to generate one:
/create-base-prp implement user authentication with JWT tokens
-
Using the runner script:
# Interactive mode (recommended for development) uv run PRPs/scripts/prp_runner.py --prp my-feature --interactive # Headless mode (for CI/CD) uv run PRPs/scripts/prp_runner.py --prp my-feature --output-format json # Streaming JSON (for real-time monitoring) uv run PRPs/scripts/prp_runner.py --prp my-feature --output-format stream-json
-
Using Claude commands:
/execute-base-prp PRPs/my-feature.md
- Context is King: Include ALL necessary documentation, examples, and caveats
- Validation Loops: Provide executable tests/lints the AI can run and fix
- Information Dense: Use keywords and patterns from the codebase
- Progressive Success: Start simple, validate, then enhance
## Goal
Implement user authentication with JWT tokens
## Why
- Enable secure user sessions
- Support API authentication
- Replace basic auth with industry standard
## What
JWT-based authentication system with login, logout, and token refresh
### Success Criteria
- [ ] Users can login with email/password
- [ ] JWT tokens expire after 24 hours
- [ ] Refresh tokens work correctly
- [ ] All endpoints properly secured
## All Needed Context
### Documentation & References
- url: https://jwt.io/introduction/
why: JWT structure and best practices
- file: src/auth/basic_auth.py
why: Current auth pattern to replace
- doc: https://fastapi.tiangolo.com/tutorial/security/oauth2-jwt/
section: OAuth2 with Password and JWT
### Known Gotchas
# CRITICAL: Use RS256 algorithm for production
# CRITICAL: Store refresh tokens in httpOnly cookies
# CRITICAL: Implement token blacklist for logout
## Implementation Blueprint
[... detailed implementation plan ...]
## Validation Loop
### Level 1: Syntax & Style
ruff check src/ --fix
mypy src/
### Level 2: Unit Tests
uv run pytest tests/test_auth.py -v
### Level 3: Integration Test
curl -X POST http://localhost:8000/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "test@example.com", "password": "testpass"}'
your-project/
|-- .claude/
| |-- commands/ # Claude Code commands
| `-- settings.json # Tool permissions
|-- PRPs/
| |-- templates/ # PRP templates
| |-- scrips/ # PRP runner
| |-- ai_docs/ # Library documentation
| |-- completed/ # Finished PRPs
| `-- *.md # Active PRPs
|-- CLAUDE.md # Project-specific guidelines
|-- src/ # Your source code
`-- tests/ # Your tests
Create a CLAUDE.md
file in your project root with:
- Core Principles: KISS, YAGNI, etc.
- Code Structure: File size limits, function length
- Architecture: How your project is organized
- Testing: Test patterns and requirements
- Style Conventions: Language-specific guidelines
- Development Commands: How to run tests, lint, etc.
See the example CLAUDE.md in this repository for a comprehensive template.
Use Git worktrees for parallel development:
git worktree add -b feature-auth ../project-auth
git worktree add -b feature-api ../project-api
# Run Claude in each worktree
cd ../project-auth && claude
cd ../project-api && claude
Use the PRP runner in headless mode:
# GitHub Actions example
- name: Execute PRP
run: |
uv run PRPs/scripts/prp_runner.py \
--prp implement-feature \
--output-format json > result.json
Create your own commands in .claude/commands/
:
# .claude/commands/my-command.md
# My Custom Command
Do something specific to my project.
## Arguments: $ARGUMENTS
[Your command implementation]
cc_base.md
- Core Claude Code documentationcc_actions_sdk.md
- GitHub Actions and SDK integrationcc_best_practices.md
- Best practices guidecc_settings.md
- Configuration and securitycc_tutorials.md
- Step-by-step tutorials
prp_base.md
- Comprehensive PRP template with validationprp_spec.md
- Specification templateprp_planning_base.md
- Planning template with diagrams
example-from-workshop-mcp-crawl4ai-refactor-1.md
- Real-world refactoring example
MIT License
I spent a considerable amount of time creating these resources and prompts. If you find value in this project, please consider buying me a coffee to support my work.
👉 Buy me a coffee: https://coff.ee/wirasm
Remember: The goal is one-pass implementation success through comprehensive context. Happy coding with Claude Code!