From replit-prompts
Creates iterative development plans for Replit Agent, breaking projects into phases with tasks, checkpoints, prompts, verification steps, and rollback strategies.
npx claudepluginhub sergio-bershadsky/ai --plugin replit-promptsThis skill uses the workspace's default tool permissions.
Break down projects into iterative development phases with checkpoints optimized for Replit Agent's workflow.
Generates structured, optimized prompts for Replit Agent from user requirements to build projects accurately with minimal iterations.
Generates atomic PLAN.md files for hierarchical project planning in solo agentic dev with Claude. Covers briefs, roadmaps, phases; includes tasks, verification, checkpoints, success criteria.
Creates detailed engineering implementation plans with team orchestration for multi-step projects requiring task dependencies and parallel execution. Uses specialized agents for Django, Python, FastAPI, React, and Playwright.
Share bugs, ideas, or general feedback.
Break down projects into iterative development phases with checkpoints optimized for Replit Agent's workflow.
Replit Agent creates checkpoints after each prompt. Effective planning means:
# [Project Name] - Development Plan
## Overview
**Project:** [Brief description]
**Total Phases:** [Number]
**Estimated Checkpoints:** [Number]
---
## Phase 1: [Phase Name]
**Goal:** [One sentence describing what's achieved]
**Dependencies:** None (starting point)
### Tasks
1. [Specific task 1]
2. [Specific task 2]
3. [Specific task 3]
### Deliverables
- [ ] [Testable outcome 1]
- [ ] [Testable outcome 2]
### Prompt for Replit Agent
[Phase goal description]. Specifically:
Stop after completing these tasks so I can review before continuing.
### Verification Steps
- [ ] [How to verify task 1]
- [ ] [How to verify task 2]
---
## Phase 2: [Phase Name]
**Goal:** [One sentence]
**Dependencies:** Phase 1 complete
### Tasks
[...]
### Prompt for Replit Agent
[...]
---
## Rollback Points
- After Phase 1: [What's safe to rollback to]
- After Phase 2: [What's safe to rollback to]
## Risk Mitigation
| Risk | Phase | Mitigation |
|------|-------|------------|
| [Risk] | [Phase #] | [How to handle] |
Gather from user:
Look for:
Phase 1: Foundation Always start with:
Phase 2-N: Core Features Group related functionality:
Final Phase: Polish Always end with:
Each prompt should:
Template:
Implement [Feature Name].
Requirements:
1. [Specific requirement with details]
2. [Specific requirement with details]
3. [Specific requirement with details]
Technical notes:
- [Relevant constraint or approach]
- [Relevant constraint or approach]
Create a checkpoint when complete so I can review before the next phase.
For each phase, include how to verify:
## Development Plan: [Project Name]
**Phases:** [Number]
**Approach:** [Brief strategy explanation]
---
[Full plan with all phases]
---
## How to Use This Plan
1. **Start with Plan Mode**: Copy Phase 1 prompt, select Plan Mode
2. **Review Agent's approach**: Ensure it aligns with expectations
3. **Switch to Build Mode**: Approve and let Agent implement
4. **Verify at checkpoint**: Test deliverables before continuing
5. **Proceed to next phase**: Copy next prompt and repeat
## Iteration Strategy
If issues arise:
- Minor issues: Describe and ask Agent to fix in current phase
- Major issues: Rollback to previous checkpoint, refine prompt, retry
Ready to start?
| Phase Size | Work Amount | Example |
|---|---|---|
| Small | 15-30 min | Add a single form with validation |
| Medium | 30-60 min | Full CRUD for one entity |
| Large | 60-90 min | Feature with UI + API + data |
Ideal phase: Medium (30-60 minutes)
Signs phase is too large:
Signs phase is too small:
Phase N: [Entity] Management
1. Database model and migrations
2. API endpoints (list, create, read, update, delete)
3. List view with table/cards
4. Create/edit form (modal or page)
5. Delete with confirmation
Deliverables:
- [ ] Can create new [entity]
- [ ] Can view list of [entities]
- [ ] Can edit existing [entity]
- [ ] Can delete [entity]
Phase 1: Authentication Setup
1. Configure auth provider (Supabase/Clerk/etc.)
2. Create signup page with form
3. Create login page with form
4. Add protected route wrapper
5. Add user context/hook
6. Add logout functionality
Deliverables:
- [ ] New user can sign up
- [ ] Existing user can log in
- [ ] Protected pages redirect to login
- [ ] User can log out
Phase N: Dashboard
1. Create dashboard layout
2. Add metric cards with data fetching
3. Add recent activity list
4. Add quick action buttons
5. Implement responsive grid
Deliverables:
- [ ] Dashboard loads with correct data
- [ ] Metrics update when data changes
- [ ] Recent activity shows latest items
- [ ] Layout works on mobile
Phase N: [Service] Integration
1. Set up environment variables for API keys
2. Create service wrapper/client
3. Implement core integration function
4. Add error handling for API failures
5. Connect to UI trigger point
Deliverables:
- [ ] API key configuration works
- [ ] Integration function returns expected data
- [ ] Errors handled gracefully
- [ ] UI reflects integration state
# Todo App - Development Plan
## Overview
**Project:** Todo app with categories, due dates, and search
**Total Phases:** 4
**Estimated Checkpoints:** 5
---
## Phase 1: Foundation
**Goal:** Set up project with database and basic structure
**Dependencies:** None
### Tasks
1. Initialize React + Vite project with TailwindCSS
2. Set up SQLite database with Prisma
3. Create Todo and Category models
4. Set up Express API with basic structure
5. Create app shell with header and main area
### Deliverables
- [ ] Project runs without errors
- [ ] Database creates successfully
- [ ] Empty app shell renders
### Prompt
Set up a Todo app with React, Vite, TailwindCSS, Express, and SQLite with Prisma.
Stop when the shell runs and database migrates successfully.
---
## Phase 2: Category Management
**Goal:** Full CRUD for categories
**Dependencies:** Phase 1
### Tasks
1. API endpoints for categories
2. Category list sidebar
3. Add/edit category modal
4. Delete category with confirmation
5. Color picker for categories
### Deliverables
- [ ] Can create category with name and color
- [ ] Categories display in sidebar
- [ ] Can edit category
- [ ] Can delete category
### Prompt
Implement category management for the Todo app.
Create API endpoints:
Create sidebar showing category list with colored dots
Add "New Category" button that opens modal
Modal has: name input, color picker (preset colors), save/cancel
Category item has edit and delete buttons
Delete shows confirmation before removing
Use a simple color picker with 8 preset colors.
Stop when categories can be created, edited, and deleted.
---
## Phase 3: Todo Management
**Goal:** Full todo functionality with categories and due dates
**Dependencies:** Phase 2
### Tasks
1. API endpoints for todos
2. Todo list component with checkboxes
3. Add todo form
4. Edit todo modal
5. Category assignment dropdown
6. Due date picker
7. Filter todos by category (click sidebar)
### Deliverables
- [ ] Can create todo with optional category and due date
- [ ] Can mark todo complete/incomplete
- [ ] Can edit todo details
- [ ] Can delete todo
- [ ] Clicking category filters todos
### Prompt
Implement todo management with category assignment and due dates.
Create API endpoints:
Main area shows todo list:
Add todo form at top:
Click category in sidebar to filter todos (highlight selected)
Edit todo opens modal with all fields editable
Sort todos: incomplete first, then by due date (soonest first).
Stop when todos can be fully managed with categories and dates.
---
## Phase 4: Search and Polish
**Goal:** Add search and polish UX
**Dependencies:** Phase 3
### Tasks
1. Search input in header
2. Search filters todos by title (client-side)
3. Empty states for no todos / no results
4. Loading states
5. Error handling with toast messages
6. Responsive design adjustments
### Deliverables
- [ ] Search filters todos in real-time
- [ ] Empty states display appropriately
- [ ] Errors show user-friendly messages
- [ ] Works on mobile screens
### Prompt
Add search functionality and polish the UX.
Add search input in header (right side)
Search filters todos by title (case-insensitive, client-side)
Add empty states:
Add loading spinner for initial data fetch
Add error toast for API failures
Responsive adjustments:
Test all flows and fix any visual issues.
This is the final phase - ensure everything works smoothly.
---
## Rollback Points
- After Phase 1: Clean slate with just structure
- After Phase 2: Categories work, can redo todo implementation
- After Phase 3: Full functionality, can redo polish
## Risk Mitigation
| Risk | Phase | Mitigation |
|------|-------|------------|
| Prisma schema issues | 1 | Test migration before proceeding |
| Filter state complexity | 3 | Use URL params for filter state |
| Mobile responsive issues | 4 | Test each breakpoint individually |
# Development Plan: [Project Name]
## Summary
| Metric | Value |
|--------|-------|
| Total Phases | [Number] |
| Estimated Build Time | [Range] |
| Checkpoint Strategy | [Brief] |
---
[Phase-by-phase breakdown with prompts]
---
## Quick Reference
### Phase Prompts (Copy-Paste Ready)
**Phase 1:**
[Prompt]
**Phase 2:**
[Prompt]
[Continue for all phases]
---
## Verification Checklist
After each phase, verify:
- [ ] Phase 1: [Key items]
- [ ] Phase 2: [Key items]
[...]
Ready to begin?