Welcome to Orchestatr — a structured, AI-assisted workflow for managing product documentation, feature development, and task iteration using markdown cursor rules (.mdc
files).
This repo streamlines the product lifecycle by guiding AI-powered interactions to generate and maintain documentation, requirements, task lists, and implementation progress — all version controlled in Markdown.
- Project Structure
- Getting Started — Project Initiation
- Ongoing Feature Development
- Documentation Context
- Contributing
- License
├── .cursor/rules/ # AI workflow rules (mdc files)
│ ├── app/
│ │ ├── 01_start/ # Project initiation rules (product brief, research, etc.)
│ │ └── features/ # Feature PRD, task generation, iteration rules
│ └── site/ # (Other site-specific rules)
├── library_docs/ # Supporting research docs (copywriting, UX, SEO, etc.)
│ ├── copywriting/
│ ├── design_ux/
│ └── seo/
├── docs/ # Generated documentation (product briefs, PRDs, etc.)
├── tasks/ # Generated task lists for features and setup
├── README.md # This file
Run the .mdc
rules in .cursor/rules/app/01_start
sequentially to build foundational docs:
01_create_product_brief.mdc
02_create_market_user_research.mdc
03_create_feature_spec.mdc
04_create_design_guidelines.mdc
05_create_architecture.mdc
06_create_metrics_risks.mdc
07_create_mvp_tasks.mdc
Each rule guides the AI to generate a specific foundational document. Output is saved in /docs
and /tasks
.
Use .cursor/rules/app/features/
:
create-prd.mdc
— Generate a PRD for a new feature.generate-tasks.mdc
— Create implementation tasks from a PRD.iterate-tasks.mdc
— Work through tasks, marking progress.
Example workflow:
- Use
create-prd.mdc
to generate a PRD from your feature idea. - Use
generate-tasks.mdc
to create tasks from the PRD. - Use
iterate-tasks.mdc
to execute and track tasks.
Supporting research and best practices are in library_docs/
:
copywriting/
— Copywriting guides, CTAs, headline formulas, etc.design_ux/
— UX/design principles, wireframing, font pairings, etc.seo/
— SEO processes, keyword research, on-page SEO, etc.
Reference these documents as needed for context and best practices.
- Add new
.mdc
rules to.cursor/rules/
as needed. - Update this README and comment your rules for clarity.
This project is licensed under the MIT License.
Empower your team with AI-guided, structured, and maintainable product delivery workflows.