96 lines
2.3 KiB
Markdown
96 lines
2.3 KiB
Markdown
# Prompt Catalog Development Checklist
|
|
|
|
## MVP Phases
|
|
|
|
This checklist outlines the phases for developing the Prompt Catalog MVP. Each phase includes specific tasks to complete.
|
|
|
|
### Phase 1: Planning & Setup
|
|
|
|
- [x] Review and finalize requirements from `Prompt Catalog Features.md`
|
|
- [x] Choose JavaScript framework (React, Vue, etc.)
|
|
- [x] Set up Supabase project
|
|
- [x] Create `prompts` table
|
|
- [x] Create `users` table (future)
|
|
- [x] Create `user_prompts` table (future)
|
|
- [x] Define JSON structure for import/export
|
|
- [x] Choose hosting platform (Vercel, Netlify, etc.)
|
|
|
|
---
|
|
|
|
### Phase 2: Database & API
|
|
|
|
- [x] Define and implement Supabase schema
|
|
- [x] Set up Supabase RLS rules (if applicable)
|
|
- [x] Connect frontend to Supabase using client API
|
|
|
|
---
|
|
|
|
### Phase 3: Front-End Interface
|
|
|
|
- [x] Build static UI from `Front End Interface.png`
|
|
- [x] Sidebar navigation (Search / filter prompts)
|
|
- [x] Prompt list display
|
|
- [x] Prompt detail view
|
|
- [x] Tags display and interaction
|
|
- [x] Integrate UI with Supabase for live data
|
|
- [x] Implement CRUD operations for prompts
|
|
|
|
---
|
|
|
|
### Phase 4: Search & Tagging
|
|
|
|
- [x] Implement keyword and full-text search
|
|
- [x] Add filter by:
|
|
- [x] Type (System, Task)
|
|
- [x] Tags (multi-select)
|
|
- [x] Create tag suggestion/autocomplete
|
|
|
|
---
|
|
|
|
### Phase 5: Import/Export
|
|
|
|
- [x] Implement prompt export to JSON
|
|
- [x] Implement prompt import from JSON with validation
|
|
|
|
---
|
|
|
|
### Phase 6: Deployment & QA
|
|
|
|
- [x] Set up frontend docker image and deployment compose file
|
|
- [x] Set up Supabase production environment
|
|
- [x] QA Testing:
|
|
- [x] UI functionality
|
|
- [x] Prompt CRUD operations
|
|
- [x] Search and filtering
|
|
- [x] Import/export behavior
|
|
- [ ] Write usage documentation
|
|
|
|
---
|
|
|
|
## Post-MVP Phases
|
|
|
|
### Phase 7: AI Integration
|
|
|
|
- [ ] Set up API key management (e.g., OpenAI, Together, Ollama)
|
|
- [ ] Add prompt suggestion UI for user input
|
|
- [ ] Integrate with AI API to return prompt suggestions
|
|
|
|
---
|
|
|
|
### Phase 8: Authentication & User Features (Future)
|
|
|
|
- [ ] Add Supabase Auth for login/register
|
|
- [ ] Create user profile UI
|
|
- [ ] Track user-owned prompts
|
|
- [ ] Enable user favorites system
|
|
|
|
---
|
|
|
|
### Phase 9: Future Enhancements
|
|
|
|
- [ ] Add prompt rating system
|
|
- [ ] Implement version history tracking
|
|
- [ ] Add social sharing (links, embed)
|
|
- [ ] Provide external API for prompt access
|
|
- [ ] Improve AI integration with context-aware suggestions
|