buildmind 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- buildmind-0.1.0/PKG-INFO +182 -0
- buildmind-0.1.0/README.md +156 -0
- buildmind-0.1.0/buildmind/__init__.py +3 -0
- buildmind-0.1.0/buildmind/cli.py +686 -0
- buildmind-0.1.0/buildmind/config/__init__.py +12 -0
- buildmind-0.1.0/buildmind/config/settings.py +146 -0
- buildmind-0.1.0/buildmind/core/__init__.py +7 -0
- buildmind-0.1.0/buildmind/core/decision_classifier.py +136 -0
- buildmind-0.1.0/buildmind/core/decision_engine.py +292 -0
- buildmind-0.1.0/buildmind/core/executor.py +97 -0
- buildmind-0.1.0/buildmind/core/explanation_engine.py +74 -0
- buildmind-0.1.0/buildmind/core/export_engine.py +69 -0
- buildmind-0.1.0/buildmind/core/file_writer.py +31 -0
- buildmind-0.1.0/buildmind/core/task_decomposer.py +127 -0
- buildmind-0.1.0/buildmind/llm/__init__.py +2 -0
- buildmind-0.1.0/buildmind/llm/client.py +378 -0
- buildmind-0.1.0/buildmind/models/__init__.py +10 -0
- buildmind-0.1.0/buildmind/models/decision.py +87 -0
- buildmind-0.1.0/buildmind/models/project.py +63 -0
- buildmind-0.1.0/buildmind/models/task.py +90 -0
- buildmind-0.1.0/buildmind/prompts/__init__.py +2 -0
- buildmind-0.1.0/buildmind/prompts/classifier_system.txt +29 -0
- buildmind-0.1.0/buildmind/prompts/classifier_user.txt +7 -0
- buildmind-0.1.0/buildmind/prompts/decision_card_system.txt +30 -0
- buildmind-0.1.0/buildmind/prompts/decision_card_user.txt +13 -0
- buildmind-0.1.0/buildmind/prompts/decomposer_system.txt +20 -0
- buildmind-0.1.0/buildmind/prompts/decomposer_user.txt +10 -0
- buildmind-0.1.0/buildmind/prompts/executor_system.txt +15 -0
- buildmind-0.1.0/buildmind/prompts/executor_user.txt +13 -0
- buildmind-0.1.0/buildmind/prompts/explainer_system.txt +29 -0
- buildmind-0.1.0/buildmind/prompts/explainer_user.txt +17 -0
- buildmind-0.1.0/buildmind/prompts/loader.py +50 -0
- buildmind-0.1.0/buildmind/server/mcp_server.py +452 -0
- buildmind-0.1.0/buildmind/storage/__init__.py +18 -0
- buildmind-0.1.0/buildmind/storage/audit_log.py +103 -0
- buildmind-0.1.0/buildmind/storage/project_store.py +180 -0
- buildmind-0.1.0/buildmind/ui/__init__.py +15 -0
- buildmind-0.1.0/buildmind/ui/decision_ui.py +318 -0
- buildmind-0.1.0/buildmind/ui/graph_ui.py +78 -0
- buildmind-0.1.0/buildmind/ui/terminal.py +313 -0
- buildmind-0.1.0/buildmind.egg-info/PKG-INFO +182 -0
- buildmind-0.1.0/buildmind.egg-info/SOURCES.txt +49 -0
- buildmind-0.1.0/buildmind.egg-info/dependency_links.txt +1 -0
- buildmind-0.1.0/buildmind.egg-info/entry_points.txt +2 -0
- buildmind-0.1.0/buildmind.egg-info/requires.txt +18 -0
- buildmind-0.1.0/buildmind.egg-info/top_level.txt +1 -0
- buildmind-0.1.0/pyproject.toml +48 -0
- buildmind-0.1.0/setup.cfg +4 -0
- buildmind-0.1.0/tests/test_0_preflight.py +102 -0
- buildmind-0.1.0/tests/test_2_fake_session.py +105 -0
- buildmind-0.1.0/tests/test_6_stdio_clean.py +78 -0
buildmind-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: buildmind
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI Thinking Infrastructure — orchestrate human decisions and AI execution in your IDE
|
|
5
|
+
License: MIT
|
|
6
|
+
Keywords: ai,orchestration,cli,mcp,llm
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: typer>=0.12.0
|
|
10
|
+
Requires-Dist: rich>=13.7.0
|
|
11
|
+
Requires-Dist: prompt-toolkit>=3.0.43
|
|
12
|
+
Requires-Dist: pydantic>=2.6.0
|
|
13
|
+
Requires-Dist: pydantic-settings>=2.2.0
|
|
14
|
+
Requires-Dist: httpx>=0.27.0
|
|
15
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
16
|
+
Requires-Dist: pyyaml>=6.0.1
|
|
17
|
+
Requires-Dist: anthropic>=0.25.0
|
|
18
|
+
Requires-Dist: openai>=1.20.0
|
|
19
|
+
Requires-Dist: mcp>=0.9.0
|
|
20
|
+
Requires-Dist: anyio>=4.0.0
|
|
21
|
+
Provides-Extra: dev
|
|
22
|
+
Requires-Dist: pytest>=8.0; extra == "dev"
|
|
23
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
|
|
24
|
+
Requires-Dist: black; extra == "dev"
|
|
25
|
+
Requires-Dist: ruff; extra == "dev"
|
|
26
|
+
|
|
27
|
+
# 🧠 BuildMind
|
|
28
|
+
|
|
29
|
+
> **AI Thinking Infrastructure** — the operating system for human-AI collaborative engineering, running directly in your IDE terminal.
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
Human = Strategy (you make decisions, in your terminal)
|
|
33
|
+
AI = Execution (models already in your IDE — no API keys)
|
|
34
|
+
BuildMind = Orchestrator (runs the pipeline, enforces rules)
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## 🖥️ How You Use It (IDE-Native, Zero Setup)
|
|
40
|
+
|
|
41
|
+
BuildMind is a **Python CLI tool + MCP server** that runs in your IDE's terminal and uses the models already available in your IDE (Antigravity has Claude Haiku, Sonnet, Opus, Gemini Pro, and more — no API keys needed).
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# Install
|
|
45
|
+
pip install buildmind
|
|
46
|
+
|
|
47
|
+
# Run inside any project
|
|
48
|
+
buildmind start "Build a task management API with authentication"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**Works for any project type:**
|
|
52
|
+
```bash
|
|
53
|
+
buildmind start "Build a REST API with authentication"
|
|
54
|
+
buildmind start "Build a React dashboard with charts"
|
|
55
|
+
buildmind start "Build a CLI tool for file compression"
|
|
56
|
+
buildmind start "Build a Stripe payment integration"
|
|
57
|
+
buildmind start "Build a real-time chat system"
|
|
58
|
+
buildmind start "Build a web scraper with rate limiting"
|
|
59
|
+
buildmind start "Build a microservice for email sending"
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## 🤖 Uses Your IDE's Models — No API Keys
|
|
65
|
+
|
|
66
|
+
BuildMind connects to your IDE's AI (Antigravity) via MCP. Your IDE already has access to:
|
|
67
|
+
|
|
68
|
+
| Model | Used For |
|
|
69
|
+
|-------|---------|
|
|
70
|
+
| `claude-opus` | Task decomposition (deep reasoning) |
|
|
71
|
+
| `claude-sonnet` | Code generation, decision cards, explanations |
|
|
72
|
+
| `claude-haiku` | Classification, validation (fast + cheap) |
|
|
73
|
+
| `gemini-pro` | Fallback / alternative reasoning |
|
|
74
|
+
| `gemini-flash` | Fast classification fallback |
|
|
75
|
+
|
|
76
|
+
**No `.env` file. No API key configuration. Your IDE handles all of that.**
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 🧩 Human Decisions — All In Terminal, All Options Listed
|
|
81
|
+
|
|
82
|
+
When BuildMind needs your input, it surfaces **every realistic option with honest tradeoffs** — all inline in your terminal, no browser needed:
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
86
|
+
🧩 DECISION: Choose Authentication Strategy
|
|
87
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
88
|
+
|
|
89
|
+
WHY YOU: Auth strategy shapes your entire security model.
|
|
90
|
+
This is hard to change later without major refactoring.
|
|
91
|
+
|
|
92
|
+
[1] JWT (stateless) — APIs, mobile, SPAs
|
|
93
|
+
[2] Session-based — web apps, admin tools ← AI recommends
|
|
94
|
+
[3] OAuth / OpenID — social login, SSO
|
|
95
|
+
[4] API Keys — machine-to-machine APIs
|
|
96
|
+
[5] Custom — describe your approach
|
|
97
|
+
|
|
98
|
+
> explain 1 ← type to get a deep dive on any option
|
|
99
|
+
> compare 1 2 ← side-by-side comparison
|
|
100
|
+
|
|
101
|
+
Enter choice [1-5] or command:
|
|
102
|
+
>
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
All explanations generated inline by your IDE's AI. No ChatGPT. No browser tabs.
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## ⚙️ AI Tasks — Written Directly to Your Project
|
|
110
|
+
|
|
111
|
+
```
|
|
112
|
+
your-project/
|
|
113
|
+
├── src/
|
|
114
|
+
│ └── auth/
|
|
115
|
+
│ ├── jwt_service.py ← Written by AI (used your decision: JWT)
|
|
116
|
+
│ └── routes.py ← Written by AI
|
|
117
|
+
├── .buildmind/
|
|
118
|
+
│ ├── decisions.json ← Every choice you made
|
|
119
|
+
│ └── audit_log.jsonl ← Complete history
|
|
120
|
+
└── BUILDMIND_SUMMARY.md ← What was built + why
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## 📚 Documentation
|
|
126
|
+
|
|
127
|
+
| Doc | Description |
|
|
128
|
+
|-----|-------------|
|
|
129
|
+
| [**IDE Integration** ⭐ START HERE](./docs/15-ide-integration.md) | Setup, full terminal demo, CLI commands |
|
|
130
|
+
| [Vision & Positioning](./docs/01-vision-and-positioning.md) | Product philosophy + differentiation |
|
|
131
|
+
| [System Architecture](./docs/02-system-architecture.md) | Full system design — generic, any project type |
|
|
132
|
+
| [Task Decomposer](./docs/03-task-decomposer.md) | How any project gets broken into atomic tasks |
|
|
133
|
+
| [Decision Engine](./docs/04-decision-engine.md) | Terminal decision cards — options, `explain <num>` |
|
|
134
|
+
| [Compulsion Layer](./docs/05-compulsion-layer.md) | Anti-autonomy enforcement |
|
|
135
|
+
| [Router & Model Strategy](./docs/06-router-and-model-strategy.md) | IDE models (Haiku/Sonnet/Opus/Gemini) — no keys |
|
|
136
|
+
| [Graph Engine](./docs/07-graph-engine.md) | ASCII terminal graph + JSON for visualization |
|
|
137
|
+
| [Explanation Engine](./docs/08-explanation-engine.md) | Code → plain English, inline in terminal |
|
|
138
|
+
| [Database Schema](./docs/09-database-schema.md) | File-based storage in `.buildmind/` |
|
|
139
|
+
| [Prompt Templates](./docs/10-prompt-templates.md) | All LLM prompt templates |
|
|
140
|
+
| [Tech Stack](./docs/11-tech-stack.md) | Python CLI (Typer + Rich), MCP server, IDE model access |
|
|
141
|
+
| [MVP Build Plan](./docs/12-mvp-build-plan.md) | 7-day sprint plan |
|
|
142
|
+
| [Product Tiers](./docs/13-product-tiers.md) | Free / Pro / Enterprise |
|
|
143
|
+
| [Implementation Roadmap](./docs/14-implementation-roadmap.md) | MVP → Scale |
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## 🚀 Quick Start
|
|
148
|
+
|
|
149
|
+
**Option A: IDE-Native (Zero Config, No API Keys)**
|
|
150
|
+
Connect BuildMind to your IDE's AI (like Cursor or Antigravity):
|
|
151
|
+
```bash
|
|
152
|
+
pip install buildmind
|
|
153
|
+
buildmind serve --mcp
|
|
154
|
+
```
|
|
155
|
+
*(See [IDE Integration Guide](./docs/15-ide-integration.md) for setup instructions)*
|
|
156
|
+
|
|
157
|
+
**Option B: Standalone CLI**
|
|
158
|
+
Run directly in your terminal (requires your own API key):
|
|
159
|
+
```bash
|
|
160
|
+
pip install buildmind
|
|
161
|
+
export ANTHROPIC_API_KEY="sk-ant-..."
|
|
162
|
+
|
|
163
|
+
# Initialize in your project
|
|
164
|
+
buildmind init
|
|
165
|
+
|
|
166
|
+
# Start building
|
|
167
|
+
buildmind start "Build whatever you're working on"
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## 🏗️ Project Status
|
|
173
|
+
|
|
174
|
+
**Current Phase:** MVP Feature Complete!
|
|
175
|
+
**Next Phase:** IDE Specific Plugin Wrappers / Beta Testing
|
|
176
|
+
|
|
177
|
+
See [IDE Integration Guide](./docs/15-ide-integration.md) for the full experience.
|
|
178
|
+
See [MVP Build Plan](./docs/12-mvp-build-plan.md) for the 7-day build sprint.
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
*Built with 🧠 by Mukul Prasad*
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# 🧠 BuildMind
|
|
2
|
+
|
|
3
|
+
> **AI Thinking Infrastructure** — the operating system for human-AI collaborative engineering, running directly in your IDE terminal.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
Human = Strategy (you make decisions, in your terminal)
|
|
7
|
+
AI = Execution (models already in your IDE — no API keys)
|
|
8
|
+
BuildMind = Orchestrator (runs the pipeline, enforces rules)
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 🖥️ How You Use It (IDE-Native, Zero Setup)
|
|
14
|
+
|
|
15
|
+
BuildMind is a **Python CLI tool + MCP server** that runs in your IDE's terminal and uses the models already available in your IDE (Antigravity has Claude Haiku, Sonnet, Opus, Gemini Pro, and more — no API keys needed).
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Install
|
|
19
|
+
pip install buildmind
|
|
20
|
+
|
|
21
|
+
# Run inside any project
|
|
22
|
+
buildmind start "Build a task management API with authentication"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Works for any project type:**
|
|
26
|
+
```bash
|
|
27
|
+
buildmind start "Build a REST API with authentication"
|
|
28
|
+
buildmind start "Build a React dashboard with charts"
|
|
29
|
+
buildmind start "Build a CLI tool for file compression"
|
|
30
|
+
buildmind start "Build a Stripe payment integration"
|
|
31
|
+
buildmind start "Build a real-time chat system"
|
|
32
|
+
buildmind start "Build a web scraper with rate limiting"
|
|
33
|
+
buildmind start "Build a microservice for email sending"
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## 🤖 Uses Your IDE's Models — No API Keys
|
|
39
|
+
|
|
40
|
+
BuildMind connects to your IDE's AI (Antigravity) via MCP. Your IDE already has access to:
|
|
41
|
+
|
|
42
|
+
| Model | Used For |
|
|
43
|
+
|-------|---------|
|
|
44
|
+
| `claude-opus` | Task decomposition (deep reasoning) |
|
|
45
|
+
| `claude-sonnet` | Code generation, decision cards, explanations |
|
|
46
|
+
| `claude-haiku` | Classification, validation (fast + cheap) |
|
|
47
|
+
| `gemini-pro` | Fallback / alternative reasoning |
|
|
48
|
+
| `gemini-flash` | Fast classification fallback |
|
|
49
|
+
|
|
50
|
+
**No `.env` file. No API key configuration. Your IDE handles all of that.**
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## 🧩 Human Decisions — All In Terminal, All Options Listed
|
|
55
|
+
|
|
56
|
+
When BuildMind needs your input, it surfaces **every realistic option with honest tradeoffs** — all inline in your terminal, no browser needed:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
60
|
+
🧩 DECISION: Choose Authentication Strategy
|
|
61
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
62
|
+
|
|
63
|
+
WHY YOU: Auth strategy shapes your entire security model.
|
|
64
|
+
This is hard to change later without major refactoring.
|
|
65
|
+
|
|
66
|
+
[1] JWT (stateless) — APIs, mobile, SPAs
|
|
67
|
+
[2] Session-based — web apps, admin tools ← AI recommends
|
|
68
|
+
[3] OAuth / OpenID — social login, SSO
|
|
69
|
+
[4] API Keys — machine-to-machine APIs
|
|
70
|
+
[5] Custom — describe your approach
|
|
71
|
+
|
|
72
|
+
> explain 1 ← type to get a deep dive on any option
|
|
73
|
+
> compare 1 2 ← side-by-side comparison
|
|
74
|
+
|
|
75
|
+
Enter choice [1-5] or command:
|
|
76
|
+
>
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
All explanations generated inline by your IDE's AI. No ChatGPT. No browser tabs.
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## ⚙️ AI Tasks — Written Directly to Your Project
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
your-project/
|
|
87
|
+
├── src/
|
|
88
|
+
│ └── auth/
|
|
89
|
+
│ ├── jwt_service.py ← Written by AI (used your decision: JWT)
|
|
90
|
+
│ └── routes.py ← Written by AI
|
|
91
|
+
├── .buildmind/
|
|
92
|
+
│ ├── decisions.json ← Every choice you made
|
|
93
|
+
│ └── audit_log.jsonl ← Complete history
|
|
94
|
+
└── BUILDMIND_SUMMARY.md ← What was built + why
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## 📚 Documentation
|
|
100
|
+
|
|
101
|
+
| Doc | Description |
|
|
102
|
+
|-----|-------------|
|
|
103
|
+
| [**IDE Integration** ⭐ START HERE](./docs/15-ide-integration.md) | Setup, full terminal demo, CLI commands |
|
|
104
|
+
| [Vision & Positioning](./docs/01-vision-and-positioning.md) | Product philosophy + differentiation |
|
|
105
|
+
| [System Architecture](./docs/02-system-architecture.md) | Full system design — generic, any project type |
|
|
106
|
+
| [Task Decomposer](./docs/03-task-decomposer.md) | How any project gets broken into atomic tasks |
|
|
107
|
+
| [Decision Engine](./docs/04-decision-engine.md) | Terminal decision cards — options, `explain <num>` |
|
|
108
|
+
| [Compulsion Layer](./docs/05-compulsion-layer.md) | Anti-autonomy enforcement |
|
|
109
|
+
| [Router & Model Strategy](./docs/06-router-and-model-strategy.md) | IDE models (Haiku/Sonnet/Opus/Gemini) — no keys |
|
|
110
|
+
| [Graph Engine](./docs/07-graph-engine.md) | ASCII terminal graph + JSON for visualization |
|
|
111
|
+
| [Explanation Engine](./docs/08-explanation-engine.md) | Code → plain English, inline in terminal |
|
|
112
|
+
| [Database Schema](./docs/09-database-schema.md) | File-based storage in `.buildmind/` |
|
|
113
|
+
| [Prompt Templates](./docs/10-prompt-templates.md) | All LLM prompt templates |
|
|
114
|
+
| [Tech Stack](./docs/11-tech-stack.md) | Python CLI (Typer + Rich), MCP server, IDE model access |
|
|
115
|
+
| [MVP Build Plan](./docs/12-mvp-build-plan.md) | 7-day sprint plan |
|
|
116
|
+
| [Product Tiers](./docs/13-product-tiers.md) | Free / Pro / Enterprise |
|
|
117
|
+
| [Implementation Roadmap](./docs/14-implementation-roadmap.md) | MVP → Scale |
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## 🚀 Quick Start
|
|
122
|
+
|
|
123
|
+
**Option A: IDE-Native (Zero Config, No API Keys)**
|
|
124
|
+
Connect BuildMind to your IDE's AI (like Cursor or Antigravity):
|
|
125
|
+
```bash
|
|
126
|
+
pip install buildmind
|
|
127
|
+
buildmind serve --mcp
|
|
128
|
+
```
|
|
129
|
+
*(See [IDE Integration Guide](./docs/15-ide-integration.md) for setup instructions)*
|
|
130
|
+
|
|
131
|
+
**Option B: Standalone CLI**
|
|
132
|
+
Run directly in your terminal (requires your own API key):
|
|
133
|
+
```bash
|
|
134
|
+
pip install buildmind
|
|
135
|
+
export ANTHROPIC_API_KEY="sk-ant-..."
|
|
136
|
+
|
|
137
|
+
# Initialize in your project
|
|
138
|
+
buildmind init
|
|
139
|
+
|
|
140
|
+
# Start building
|
|
141
|
+
buildmind start "Build whatever you're working on"
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## 🏗️ Project Status
|
|
147
|
+
|
|
148
|
+
**Current Phase:** MVP Feature Complete!
|
|
149
|
+
**Next Phase:** IDE Specific Plugin Wrappers / Beta Testing
|
|
150
|
+
|
|
151
|
+
See [IDE Integration Guide](./docs/15-ide-integration.md) for the full experience.
|
|
152
|
+
See [MVP Build Plan](./docs/12-mvp-build-plan.md) for the 7-day build sprint.
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
*Built with 🧠 by Mukul Prasad*
|