maestro-bundle 1.9.0 → 2.0.1
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.
- package/LICENSE +21 -0
- package/README.md +90 -90
- package/package.json +2 -2
- package/src/cli.mjs +72 -81
- package/templates/bundle-ai-agents/.spec/constitution.md +24 -24
- package/templates/bundle-ai-agents/AGENTS.md +71 -71
- package/templates/bundle-ai-agents/PRD_TEMPLATE.md +63 -63
- package/templates/bundle-ai-agents-deep/.spec/constitution.md +17 -17
- package/templates/bundle-ai-agents-deep/AGENTS.md +58 -58
- package/templates/bundle-ai-agents-deep/PRD_TEMPLATE.md +63 -63
- package/templates/bundle-ai-agents-deep/skills/deep-agent-memory/SKILL.md +158 -158
- package/templates/bundle-base/AGENTS.md +99 -99
- package/templates/bundle-data-pipeline/.spec/constitution.md +23 -23
- package/templates/bundle-data-pipeline/AGENTS.md +68 -68
- package/templates/bundle-data-pipeline/PRD_TEMPLATE.md +63 -63
- package/templates/bundle-frontend-spa/.spec/constitution.md +21 -21
- package/templates/bundle-frontend-spa/AGENTS.md +58 -58
- package/templates/bundle-frontend-spa/PRD_TEMPLATE.md +63 -63
- package/templates/bundle-jhipster-microservices/.spec/constitution.md +31 -31
- package/templates/bundle-jhipster-microservices/AGENTS.md +70 -70
- package/templates/bundle-jhipster-microservices/PRD_TEMPLATE.md +63 -63
- package/templates/bundle-jhipster-monorepo/.spec/constitution.md +22 -22
- package/templates/bundle-jhipster-monorepo/AGENTS.md +64 -64
- package/templates/bundle-jhipster-monorepo/PRD_TEMPLATE.md +63 -63
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Maestro
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,103 +1,103 @@
|
|
|
1
1
|
# maestro-bundle
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
One command. Full context for your AI agent. Any editor.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx maestro-bundle ai-agents claude
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## The problem
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
AI agents (Claude Code, Cursor, Codex) are powerful, but without context they don't know:
|
|
12
12
|
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
13
|
+
- What stack the project uses
|
|
14
|
+
- Which coding standards to follow
|
|
15
|
+
- What the application does (requirements)
|
|
16
|
+
- What tools to use and when
|
|
17
|
+
- That they should plan before coding
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
The result is **vibing code** — the agent generates code with no direction, no standards, no planning. Fine for prototypes, unacceptable for real projects with teams.
|
|
20
20
|
|
|
21
|
-
##
|
|
21
|
+
## The solution: layered context
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
maestro-bundle solves this by installing **4 layers of context** that work together:
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
┌─────────────────────────────────────────────────────────┐
|
|
27
27
|
│ │
|
|
28
|
-
│ PRD.md
|
|
29
|
-
│ (
|
|
30
|
-
│
|
|
28
|
+
│ PRD.md WHAT to build │
|
|
29
|
+
│ (requirements) User stories, API spec, data │
|
|
30
|
+
│ model, acceptance criteria │
|
|
31
31
|
│ │
|
|
32
32
|
├─────────────────────────────────────────────────────────┤
|
|
33
33
|
│ │
|
|
34
|
-
│ AGENTS.md
|
|
35
|
-
│ (
|
|
36
|
-
│
|
|
34
|
+
│ AGENTS.md HOW to build │
|
|
35
|
+
│ (standards) Stack, architecture, conventions, │
|
|
36
|
+
│ project structure, git flow │
|
|
37
37
|
│ │
|
|
38
38
|
├─────────────────────────────────────────────────────────┤
|
|
39
39
|
│ │
|
|
40
|
-
│ Skills
|
|
41
|
-
│ (
|
|
42
|
-
│ deploy,
|
|
40
|
+
│ Skills WITH WHAT to build │
|
|
41
|
+
│ (capabilities) RAG pipeline, clean architecture, │
|
|
42
|
+
│ deploy, testing, etc. │
|
|
43
43
|
│ │
|
|
44
44
|
├─────────────────────────────────────────────────────────┤
|
|
45
45
|
│ │
|
|
46
|
-
│ Spec Kit (SDD)
|
|
47
|
-
│ (
|
|
46
|
+
│ Spec Kit (SDD) IN WHAT ORDER to build │
|
|
47
|
+
│ (process) /speckit.specify → plan → tasks │
|
|
48
48
|
│ → implement │
|
|
49
49
|
│ │
|
|
50
50
|
└─────────────────────────────────────────────────────────┘
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
Each layer gives the agent a different type of context. Together, they make the agent work like a senior dev who knows the project, follows the standards, and plans before coding.
|
|
54
54
|
|
|
55
|
-
##
|
|
55
|
+
## What it installs
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
npx maestro-bundle ai-agents claude
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
|
|
|
61
|
+
| What | Purpose | Who fills it |
|
|
62
62
|
|---|---|---|
|
|
63
|
-
| **AGENTS.md** |
|
|
64
|
-
| **Skills** |
|
|
65
|
-
| **PRD.md** |
|
|
66
|
-
| **Spec Kit** |
|
|
67
|
-
| **Constitution** |
|
|
68
|
-
| **LangChain Skills** | 11
|
|
63
|
+
| **AGENTS.md** | Standards, stack, conventions | Bundle (automatic) |
|
|
64
|
+
| **Skills** | Specific capabilities (RAG, clean arch, tests...) | Bundle (automatic) |
|
|
65
|
+
| **PRD.md** | Product requirements, user stories, API spec | Analyst / Dev |
|
|
66
|
+
| **Spec Kit** | SDD process — spec → plan → tasks → implement | Agent + Dev |
|
|
67
|
+
| **Constitution** | Non-negotiable project principles | Bundle (automatic) |
|
|
68
|
+
| **LangChain Skills** | 11 official LangChain skills (AI bundles) | Bundle (automatic) |
|
|
69
69
|
|
|
70
|
-
|
|
70
|
+
The dev only needs to fill in `PRD.md`. Everything else comes ready.
|
|
71
71
|
|
|
72
|
-
##
|
|
72
|
+
## How it works in practice
|
|
73
73
|
|
|
74
74
|
```
|
|
75
|
-
1. Dev
|
|
75
|
+
1. Dev installs the bundle
|
|
76
76
|
$ npx maestro-bundle ai-agents claude
|
|
77
77
|
|
|
78
|
-
2.
|
|
78
|
+
2. Analyst/dev fills PRD.md with requirements
|
|
79
79
|
|
|
80
|
-
3. Dev
|
|
81
|
-
"
|
|
80
|
+
3. Dev opens the editor and requests a feature:
|
|
81
|
+
"Create the JWT authentication endpoint"
|
|
82
82
|
|
|
83
|
-
4.
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
83
|
+
4. The agent already knows:
|
|
84
|
+
- The requirements (PRD.md)
|
|
85
|
+
- The stack and standards (AGENTS.md)
|
|
86
|
+
- How to do JWT (authentication skill)
|
|
87
|
+
- That it needs to create a spec before coding (Spec Kit)
|
|
88
88
|
|
|
89
|
-
5.
|
|
89
|
+
5. Result: governed, consistent, planned code
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
-
##
|
|
92
|
+
## Available bundles
|
|
93
93
|
|
|
94
|
-
| Bundle |
|
|
94
|
+
| Bundle | Project type | Stack |
|
|
95
95
|
|---|---|---|
|
|
96
|
-
| `ai-agents` |
|
|
97
|
-
| `ai-agents-deep` | Deep Agent (
|
|
98
|
-
| `jhipster-monorepo` |
|
|
99
|
-
| `jhipster-microservices` |
|
|
100
|
-
| `data-pipeline` |
|
|
96
|
+
| `ai-agents` | Multi-agent AI systems | Python, LangChain, LangGraph, FastAPI, pgvector |
|
|
97
|
+
| `ai-agents-deep` | Deep Agent (Claude Code-like) | Python, Deep Agents SDK, LangGraph, Subagents |
|
|
98
|
+
| `jhipster-monorepo` | JHipster monolithic app | Java 21, Spring Boot, Angular, PostgreSQL |
|
|
99
|
+
| `jhipster-microservices` | JHipster microservices | Java 21, Spring Boot, Kafka, Consul, K8s |
|
|
100
|
+
| `data-pipeline` | Data & ML pipeline | Python, Pandas, Scikit-learn, MLflow |
|
|
101
101
|
| `frontend-spa` | Frontend SPA | React, TypeScript, Tailwind, Vite |
|
|
102
102
|
|
|
103
103
|
```bash
|
|
@@ -109,49 +109,49 @@ npx maestro-bundle data-pipeline copilot
|
|
|
109
109
|
npx maestro-bundle frontend-spa windsurf
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
##
|
|
112
|
+
## Supported editors
|
|
113
113
|
|
|
114
|
-
| Editor |
|
|
114
|
+
| Editor | Command | Where it installs |
|
|
115
115
|
|---|---|---|
|
|
116
116
|
| **Claude Code** | `npx maestro-bundle <bundle> claude` | `CLAUDE.md` + `.claude/skills/` |
|
|
117
117
|
| **Cursor** | `npx maestro-bundle <bundle> cursor` | `AGENTS.md` + `.cursor/skills/` |
|
|
118
118
|
| **OpenAI Codex** | `npx maestro-bundle <bundle> codex` | `AGENTS.md` + `.agents/skills/` |
|
|
119
119
|
| **GitHub Copilot** | `npx maestro-bundle <bundle> copilot` | `.github/copilot-instructions.md` |
|
|
120
120
|
| **Windsurf** | `npx maestro-bundle <bundle> windsurf` | `.windsurfrules` |
|
|
121
|
-
| **
|
|
121
|
+
| **All** | `npx maestro-bundle <bundle> all` | All of the above in the same repo |
|
|
122
122
|
|
|
123
|
-
##
|
|
123
|
+
## What happens when you install
|
|
124
124
|
|
|
125
125
|
```
|
|
126
126
|
$ npx maestro-bundle ai-agents claude
|
|
127
127
|
|
|
128
|
-
Bundle:
|
|
128
|
+
Bundle: Multi-Agent AI System
|
|
129
129
|
Editor: Claude Code
|
|
130
130
|
|
|
131
|
-
✔ Claude Code: AGENTS.md, CLAUDE.md, 14 skills
|
|
132
|
-
✔ PRD.md template
|
|
133
|
-
✔ 11 LangChain Skills
|
|
134
|
-
✔ specify-cli v0.4.3
|
|
135
|
-
✔ Spec Kit
|
|
136
|
-
✔
|
|
131
|
+
✔ Claude Code: AGENTS.md, CLAUDE.md, 14 skills in .claude/skills/
|
|
132
|
+
✔ PRD.md template installed
|
|
133
|
+
✔ 11 LangChain Skills installed
|
|
134
|
+
✔ specify-cli v0.4.3 installed
|
|
135
|
+
✔ Spec Kit initialized (/speckit.* commands available)
|
|
136
|
+
✔ Bundle constitution integrated
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
Done!
|
|
139
139
|
|
|
140
|
-
|
|
141
|
-
1.
|
|
142
|
-
2.
|
|
143
|
-
3. Use /speckit.specify
|
|
140
|
+
Next steps:
|
|
141
|
+
1. Fill in PRD.md with your product requirements
|
|
142
|
+
2. Open the project in your AI editor
|
|
143
|
+
3. Use /speckit.specify to start your first feature
|
|
144
144
|
```
|
|
145
145
|
|
|
146
|
-
##
|
|
146
|
+
## Project structure
|
|
147
147
|
|
|
148
148
|
```
|
|
149
|
-
|
|
150
|
-
├── CLAUDE.md #
|
|
151
|
-
├── AGENTS.md # Stack,
|
|
152
|
-
├── PRD.md #
|
|
149
|
+
your-project/
|
|
150
|
+
├── CLAUDE.md # Points to AGENTS.md
|
|
151
|
+
├── AGENTS.md # Stack, standards, conventions (automatic)
|
|
152
|
+
├── PRD.md # Product requirements (fill this in!)
|
|
153
153
|
├── .claude/
|
|
154
|
-
│ ├── skills/ #
|
|
154
|
+
│ ├── skills/ # Agent capabilities
|
|
155
155
|
│ │ ├── rag-pipeline/
|
|
156
156
|
│ │ ├── clean-architecture/
|
|
157
157
|
│ │ ├── testing-strategy/
|
|
@@ -161,7 +161,7 @@ seu-projeto/
|
|
|
161
161
|
│ ├── speckit.plan.md
|
|
162
162
|
│ ├── speckit.tasks.md
|
|
163
163
|
│ └── speckit.implement.md
|
|
164
|
-
├── .specify/ #
|
|
164
|
+
├── .specify/ # Feature specs, plans, tasks
|
|
165
165
|
│ ├── memory/constitution.md
|
|
166
166
|
│ ├── templates/
|
|
167
167
|
│ └── specs/
|
|
@@ -169,36 +169,36 @@ seu-projeto/
|
|
|
169
169
|
│ ├── spec.md
|
|
170
170
|
│ ├── plan.md
|
|
171
171
|
│ └── tasks.md
|
|
172
|
-
├── skills/ #
|
|
173
|
-
└── references/ #
|
|
172
|
+
├── skills/ # Canonical skills (Deep Agents)
|
|
173
|
+
└── references/ # Reference docs
|
|
174
174
|
```
|
|
175
175
|
|
|
176
|
-
##
|
|
176
|
+
## SDD process with Spec Kit
|
|
177
177
|
|
|
178
|
-
|
|
178
|
+
The bundle installs [GitHub Spec Kit](https://github.com/github/spec-kit) which adds commands to your editor for Specification-Driven Development:
|
|
179
179
|
|
|
180
|
-
| Command |
|
|
180
|
+
| Command | What it does |
|
|
181
181
|
|---|---|
|
|
182
|
-
| `/speckit.specify` |
|
|
183
|
-
| `/speckit.plan` |
|
|
184
|
-
| `/speckit.tasks` |
|
|
185
|
-
| `/speckit.implement` |
|
|
182
|
+
| `/speckit.specify` | Specify WHAT to build and WHY |
|
|
183
|
+
| `/speckit.plan` | Plan architecture and technical decisions |
|
|
184
|
+
| `/speckit.tasks` | Break down into atomic tasks |
|
|
185
|
+
| `/speckit.implement` | Execute tasks following the plan |
|
|
186
186
|
|
|
187
|
-
|
|
187
|
+
The agent is instructed to follow this flow for new features. Simple bug fixes can go directly.
|
|
188
188
|
|
|
189
|
-
## LangChain Skills (bundles
|
|
189
|
+
## LangChain Skills (AI bundles)
|
|
190
190
|
|
|
191
|
-
|
|
191
|
+
The `ai-agents` and `ai-agents-deep` bundles automatically install the [11 official LangChain skills](https://github.com/langchain-ai/langchain-skills) covering LangChain, LangGraph, and Deep Agents.
|
|
192
192
|
|
|
193
|
-
##
|
|
193
|
+
## Prerequisites
|
|
194
194
|
|
|
195
195
|
- **Node.js 18+**
|
|
196
196
|
- **Git**
|
|
197
|
-
- **uv**
|
|
197
|
+
- **uv** or **pip** (for Spec Kit — installed automatically)
|
|
198
198
|
|
|
199
199
|
## Links
|
|
200
200
|
|
|
201
|
-
- [AGENTS.md](https://agents.md/) —
|
|
201
|
+
- [AGENTS.md](https://agents.md/) — Universal standard for AI agent instructions
|
|
202
202
|
- [GitHub Spec Kit](https://github.com/github/spec-kit) — Specification-Driven Development
|
|
203
|
-
- [LangChain Skills](https://github.com/langchain-ai/langchain-skills) —
|
|
204
|
-
- [Agent Skills](https://agentskills.io) —
|
|
203
|
+
- [LangChain Skills](https://github.com/langchain-ai/langchain-skills) — Official LangChain skills
|
|
204
|
+
- [Agent Skills](https://agentskills.io) — Open standard for agent skills
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "maestro-bundle",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "One command. Full context for your AI agent. Any editor. Install governance bundles with skills, PRD, AGENTS.md and GitHub Spec Kit.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"maestro-bundle": "./src/cli.mjs"
|
|
7
7
|
},
|