A comprehensive plugin collection designed to accelerate product development through AI-driven automation, context engineering, and systematic validation.
Rapid Shipping provides a powerful plugin for Claude Code:
PRP (Product Requirement Prompt) - Transform user stories into executable implementation plans with one-pass success rates
The plugin emphasizes context completeness, deterministic validation, and parallel processing to achieve rapid, high-quality output.
- Claude Code installed and running
- Git installed
- Basic familiarity with command-line interfaces
/plugin marketplace add rpiplewar/rapid-shipping/plugin install prp@rapid-shippingCheck available commands:
/helpYou should see new commands prefixed with /prp-.
Agentic coding framework that bridges Product Requirements Documents (PRDs) and prompt engineering.
- Context Engineering: Precise file paths, library versions, code snippets, and AI_docs references
- Task Decomposition: Break down user stories into executable tasks with dependency ordering
- Implementation Strategies: Multiple PRP types for different development scenarios
- Validation Gates: Deterministic checks with pytest, ruff, type checking
- Multi-Agent Coordination: Parallel analysis with specialized sub-agents
| Command | Description |
|---|---|
/prp-base-create |
Create comprehensive PRP for major features |
/prp-base-execute |
Execute base PRP with full implementation |
/prp-story-create |
Convert user stories to tactical PRPs |
/prp-story-execute |
Execute story-based PRPs |
- @codebase-analyst - Deep pattern analysis and convention discovery
- @library-researcher - External documentation and best practices research
User Story: "Add OAuth authentication to the login page"
↓
/prp-story-create
├─ @codebase-analyst analyzes auth patterns
├─ @library-researcher fetches OAuth library docs
└─ Generates Story PRP with context + tasks
↓
/prp-story-execute
├─ Task 1: CREATE OAuth provider config
├─ Task 2: UPDATE login component
├─ Task 3: ADD integration tests
└─ Validation: pytest + type checks
↓
✓ Feature implemented with passing tests
Located in prp/PRPs/templates/:
prp_base.md- Major featuresprp_base_typescript.md- TypeScript projectsprp_planning.md- Planning phaseprp_poc_react.md- React POCsprp_spec.md- Technical specificationsprp_story_task.md- Sprint storiesprp_task.md- Granular tasks
For a user story:
/prp-story-create
# Provide your user story when prompted
# Review the generated PRP
/prp-story-execute
# Implementation with validationFor a major feature:
/prp-base-create
# Provide feature requirements
# Review comprehensive PRP
/prp-base-execute
# Full implementation- Concept Guide:
prp/PRPs/README.md - Story Workflow:
prp/PRPs/STORY_WORKFLOW_GUIDE.md - Templates:
prp/PRPs/templates/ - AI Reference Docs:
prp/PRPs/ai_docs/(13 Claude Code reference documents)
Provide Claude with precise context to eliminate guesswork:
- Exact file paths and line numbers
- Library versions and documentation
- Integration points and patterns
- Testing strategies
Break down complex features into clear, executable tasks:
- CREATE: Brand new functionality
- UPDATE: Modify existing code
- ADD: Extend current features
- REMOVE: Delete obsolete code
- REFACTOR: Improve without changing behavior
- MIRROR: Replicate existing patterns
shipfaster/
├── .claude-plugin/
│ └── marketplace.json # Main plugin manifest
└── prp/ # PRP Plugin
├── .claude-plugin/
│ └── plugin.json
├── agents/ # 2 specialized agents
├── commands/ # 15 command definitions
└── PRPs/
├── README.md
├── templates/ # 7 PRP templates
├── scripts/
└── ai_docs/ # 13 Claude Code reference docs
- Claude Code with agent support
- Python (for pytest validation)
- Optional: TypeScript/Node.js (for TS PRPs)
Contributions are welcome! Please follow these guidelines:
- Fork the repository
- Create a feature branch
- Test your changes thoroughly
- Submit a pull request with clear description
# Clone the repository
git clone https://github.com/rpiplewar/rapid-shipping.git
cd shipfaster
# Add as local marketplace for development
/plugin marketplace add file:///path/to/shipfaster
# Install plugin
/plugin install prp@rapid-shippingSee LICENSE file for details.
Rajat Piplewar
- GitHub: @rpiplewar
For issues, questions, or suggestions:
- Open an issue on GitHub
- Check the documentation in
prp/PRPs/README.md - Review Claude Code docs in
prp/PRPs/ai_docs/
- Built with Claude Code
- Inspired by systematic software engineering
Ship faster. Build better.