Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
A structured prompt pipeline that turns vague ideas into implementable RFCs — works with any AI assistant.
| Date | Stars |
|---|---|
| 2026-07-24 | 275 |
| 2026-07-25 | 275 |
| 2026-07-28 | 277 |
| 2026-07-30 | 277 |
| 2026-07-31 | 278 |
| 2026-08-06 | 278 |
Today
— stars today
This week
+1 stars this week
This month
— stars this month
Momentum
1.0
growth rate 0.36%/day
<div align="center">
# 📋 AI PRD Workflow
### RFC-driven development for AI coding agents
**Vague idea → verified PRD → features → rules → sequenced RFCs → reviewed, tested code**
[](LICENSE)
[](CONTRIBUTING.md)
[](https://github.com/nurettincoban/ai-prd-workflow/stargazers)
[](#quick-start)
[](#quick-start)
**[Quick Start](#quick-start)** · **[Workflow](#workflow)** · **[Commands](#available-prompts)** · **[Why RFCs?](#why-rfc-driven-development)** · **[Examples](#examples)**
<sub>RFC-driven since <b>March 2025</b> — before planning modes existed in any AI coding agent.</sub>
</div>
---
A lightweight RFC-driven development workflow for AI coding tools. Ten battle-tested prompts take you from a rough idea to a verified PRD, prioritized features, project rules, and sequenced RFCs — then guide implementation, code review, and testing, one RFC at a time.
Use it two ways:
- **Native slash commands** in Claude Code and Cursor — `/create-prd`, `/implement-rfc 001`, `/workflow-status`, …
- **Copy-paste prompts** into any AI assistant or IDE — ChatGPT, Gemini, Windsurf, Copilot, anything
No CLI to learn, no framework to adopt, no lock-in. Just markdown.
## Quick Start
### Option 1: Install as slash commands (Claude Code & Cursor)
```bash
curl -fsSL https://raw.githubusercontent.com/nurettincoban/ai-prd-workflow/main/install.sh | bash -s -- /path/to/your/project
```
Or from a clone:
```bash
git clone https://github.com/nurettincoban/ai-prd-workflow.git
cd ai-prd-workflow
./install.sh /path/to/your/project # both tools
./install.sh /path/to/your/project --claude # Claude Code only
./install.sh /path/to/your/project --cursor # Cursor only
```
> [!IMPORTANT]
> **Restart Claude Code or Cursor after installing.** A running session does not pick up newly written command files, so the first command you type fails with `Unknown skill` — which reads like a broken install but is just a stale session. Type `/` after restarting to confirm you see `create-prd`.
Then open your project and work through the pipeline:
```
/create-prd # guided interview → PRD.md
/verify-prd # gap analysis → improved PRD.md + PRD-REVIEW.md
/extract-features # PRD.md → FEATURES.md (MoSCoW prioritized)
/generate-rules # → RULES.md (project standards for the AI)
/generate-rfcs # → RFCs/ folder, in dependency order
/test-strategy # test plan — before the tests get written
/implement-rfc 001 # plan → your approval → implementation → verification
/review-rfc 001 # fresh session → reviews/REVIEW-RFC-001.md
/manage-changes # requirements changed mid-build? assess impact first
/workflow-status # lost? see what's done and what's next
```
> [!TIP]
> Cloning this repo and opening it in Claude Code or Cursor gives you the commands immediately — try them against the [example project](examples/url-shortener/).
### Option 2: Copy-paste into any AI assistant
1. Pick a prompt from [Available Prompts](#available-prompts) below
2. Copy its contents (or use `./copy-prompt.sh --list` to browse)
3. Paste into any AI assistant with your project context attached
## Workflow
```mermaid
flowchart LR
IDEA([💡 Idea]) --> PRD[Create PRD] --> VERIFY[Verify PRD] --> FEAT[Extract Features] --> RULES[Generate Rules] --> RFCS[Generate RFCs]
RFCS --> TEST[Test Strategy] --> IMPL[Implement RFC] --> REVIEW[Code Review]
REVIEW -.->|next RFC| IMPL
CHANGE([Change request]) -.-> CM[Change Management] -.-> RFCS
```
1. **Create PRD** — Start with a vague idea and develop it into a complete PRD through aExcerpt of 14,608 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:c4f35b91349cb5dc, topic:vibe-coding, readme:coding agent, readme:code review
matched fp:c4f35b91349cb5dc, topic:llm
matched fp:c4f35b91349cb5dc, topic:prompt-engineering