From context-engineering
Provides the standard structure and format for Prompt-Response-Plan (PRP) documents. Use when creating, formatting, or validating PRP documents for systematic problem-solving workflows.
npx claudepluginhub L-Sypniewski/claude-code-toolkit --plugin context-engineeringThis skill uses the workspace's default tool permissions.
This skill defines the standard structure for Prompt-Response-Plan (PRP) documents used in context engineering workflows.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
This skill defines the standard structure for Prompt-Response-Plan (PRP) documents used in context engineering workflows.
A well-formed PRP contains three main sections:
The initial problem statement or request that initiates the workflow:
## Prompt
[Clear, concise description of the problem or task]
### Context
- Background information
- Relevant constraints
- Success criteria
Analysis and proposed approach:
## Response
### Problem Analysis
- Key challenges identified
- Dependencies and prerequisites
- Risk factors
### Proposed Solution
- High-level approach
- Alternative approaches considered
- Rationale for chosen approach
Detailed execution plan with trackable steps:
## Plan
### Implementation Steps
1. [ ] Step 1: [Description]
- Sub-tasks if needed
- Expected outcome
2. [ ] Step 2: [Description]
- Dependencies: Step 1
- Expected outcome
3. [ ] Step 3: [Description]
### Testing Strategy
- Unit tests
- Integration tests
- Acceptance criteria
### Rollback Plan
- Contingency steps if issues arise
prp-[description]-[timestamp].md
Example: prp-refactor-auth-module-2025-11-21.md
This structure works seamlessly with:
context-engineering-prp-generator agent (generates PRPs)context-engineering-executor agent (executes plans)context-engineering-orchestrator agent (coordinates workflows)