maestro-bundle 1.8.0 → 2.0.0

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 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,234 +1,204 @@
1
1
  # maestro-bundle
2
2
 
3
- Um comando. Bundle instalado. Agente governado. Zero vibing code.
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
- ## Filosofia: Sem spec, sem código
9
+ ## The problem
10
10
 
11
- O maestro-bundle instala tudo que o agente AI precisa para trabalhar de forma **governada** e a peça central disso é o [GitHub Spec Kit](https://github.com/github/spec-kit).
11
+ AI agents (Claude Code, Cursor, Codex) are powerful, but without context they don't know:
12
12
 
13
- O Spec Kit implementa **Specification-Driven Development (SDD)**: toda demanda — nova ou em andamento — precisa ter uma spec antes de qualquer linha de código. O agente é instruído a **recusar** implementar qualquer coisa que não tenha passado pelo fluxo:
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
14
18
 
15
- ```
16
- /speckit.specify → /speckit.plan → /speckit.tasks → /speckit.implement
17
- ```
18
-
19
- Isso elimina o "vibing code" — aquele padrão onde o dev abre o Cursor e sai codando sem planejamento, sem requisitos, sem spec. Com o bundle instalado, o agente AI vai parar e perguntar: "Cadê a spec?"
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
- ## O que instala
21
+ ## The solution: layered context
22
22
 
23
- 1. **AGENTS.md** + **skills** no formato correto do editor padrões, convenções e capacidades do agente
24
- 2. **PRD.md** — template de requisitos para o analista/dev preencher
25
- 3. **GitHub Spec Kit** — `specify-cli` instalado + `specify init` executado no projeto, registrando os commands `/speckit.*` no editor
26
- 4. **Constitution** — princípios do projeto integrados ao Spec Kit
27
- 5. **LangChain Skills** — 11 skills oficiais extras (apenas para `ai-agents`)
28
-
29
- ## Fluxo de trabalho
23
+ maestro-bundle solves this by installing **4 layers of context** that work together:
30
24
 
31
25
  ```
32
26
  ┌─────────────────────────────────────────────────────────┐
33
- │ 1. Dev instala o bundle │
34
- │ npx maestro-bundle ai-agents claude │
35
27
  │ │
36
- 2. Analista/dev preenche o PRD.md
37
- (requisitos, user stories, API spec)
28
+ PRD.md WHAT to build
29
+ (requirements) User stories, API spec, data
30
+ │ model, acceptance criteria │
31
+ │ │
32
+ ├─────────────────────────────────────────────────────────┤
38
33
  │ │
39
- 3. Dev abre o editor e pede uma feature
40
- "Cria o endpoint de demands"
34
+ AGENTS.md HOW to build
35
+ (standards) Stack, architecture, conventions,
36
+ │ project structure, git flow │
41
37
  │ │
42
- │ 4. Agente PARA e inicia o fluxo SDD: │
43
- /speckit.specify → spec.md
44
- /speckit.plan → plan.md
45
- /speckit.tasks → tasks.md
46
- /speckit.implement código
38
+ ├─────────────────────────────────────────────────────────┤
39
+
40
+ Skills WITH WHAT to build
41
+ (capabilities) RAG pipeline, clean architecture,
42
+ deploy, testing, etc.
43
+ │ │
44
+ ├─────────────────────────────────────────────────────────┤
45
+ │ │
46
+ │ Spec Kit (SDD) IN WHAT ORDER to build │
47
+ │ (process) /speckit.specify → plan → tasks │
48
+ │ → implement │
47
49
  │ │
48
- │ 5. Código é produzido seguindo: │
49
- │ - A spec (O QUE construir) │
50
- │ - O AGENTS.md (COMO construir) │
51
- │ - As skills (capacidades específicas) │
52
- │ - O PRD.md (requisitos do produto) │
53
50
  └─────────────────────────────────────────────────────────┘
54
51
  ```
55
52
 
56
- Se a demanda está no meio (spec existe), o agente continua de onde parou. Se é bug fix simples, pode corrigir direto. Mas feature nova sem spec? Não rola.
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
+
55
+ ## What it installs
56
+
57
+ ```bash
58
+ npx maestro-bundle ai-agents claude
59
+ ```
60
+
61
+ | What | Purpose | Who fills it |
62
+ |---|---|---|
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) |
57
69
 
58
- ## Arquivos do projeto: quem faz o quê
70
+ The dev only needs to fill in `PRD.md`. Everything else comes ready.
59
71
 
60
- | Arquivo | Quem escreve | Quando | Para quê |
61
- |---|---|---|---|
62
- | **AGENTS.md** | Bundle (automático) | Na instalação | Define COMO o agente trabalha (stack, padrões, convenções) |
63
- | **PRD.md** | Analista / Dev | Antes de codar | Define O QUE construir (user stories, API spec, modelo de dados) |
64
- | **`.specify/specs/*/spec.md`** | Agente via `/speckit.specify` | Antes de cada feature | Especificação detalhada da feature |
65
- | **`.specify/specs/*/plan.md`** | Agente via `/speckit.plan` | Após spec | Plano técnico (arquitetura, decisões) |
66
- | **`.specify/specs/*/tasks.md`** | Agente via `/speckit.tasks` | Após plan | Tasks atômicas implementáveis |
67
- | **skills/** | Bundle (automático) | Na instalação | Capacidades que o agente carrega sob demanda |
72
+ ## How it works in practice
68
73
 
69
- ## Commands do Spec Kit disponíveis no editor
74
+ ```
75
+ 1. Dev installs the bundle
76
+ $ npx maestro-bundle ai-agents claude
70
77
 
71
- Após instalar o bundle, estes commands funcionam direto no editor:
78
+ 2. Analyst/dev fills PRD.md with requirements
72
79
 
73
- | Command | Fase | O que faz |
74
- |---|---|---|
75
- | `/speckit.constitution` | Setup | Definir princípios e padrões do projeto |
76
- | `/speckit.specify` | Spec | Especificar O QUE construir e POR QUÊ |
77
- | `/speckit.plan` | Plan | Planejar arquitetura, stack, decisões técnicas |
78
- | `/speckit.tasks` | Tasks | Quebrar em tasks atômicas implementáveis |
79
- | `/speckit.implement` | Build | Executar todas as tasks seguindo o plano |
80
- | `/speckit.clarify` | (opcional) | Perguntas para desambiguar requisitos |
81
- | `/speckit.analyze` | (opcional) | Verificar consistência entre artefatos |
82
- | `/speckit.checklist` | (opcional) | Gerar checklists de qualidade |
83
-
84
- ## Editores suportados
85
-
86
- | Editor | Comando | O que instala |
87
- |---|---|---|
88
- | **Claude Code** | `npx maestro-bundle <bundle> claude` | `CLAUDE.md` + `.claude/skills/` + `.claude/commands/speckit.*` |
89
- | **Cursor** | `npx maestro-bundle <bundle> cursor` | `AGENTS.md` + `.cursor/skills/` + `.cursor/commands/speckit.*` |
90
- | **OpenAI Codex** | `npx maestro-bundle <bundle> codex` | `AGENTS.md` + `.agents/skills/speckit-*` |
91
- | **GitHub Copilot** | `npx maestro-bundle <bundle> copilot` | `.github/copilot-instructions.md` + `.github/instructions/` |
92
- | **Windsurf** | `npx maestro-bundle <bundle> windsurf` | `.windsurfrules` |
93
- | **Todos** | `npx maestro-bundle <bundle> all` | Tudo acima no mesmo repo |
80
+ 3. Dev opens the editor and requests a feature:
81
+ "Create the JWT authentication endpoint"
94
82
 
95
- ## Bundles disponíveis
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
+
89
+ 5. Result: governed, consistent, planned code
90
+ ```
91
+
92
+ ## Available bundles
93
+
94
+ | Bundle | Project type | Stack |
95
+ |---|---|---|
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
+ | `frontend-spa` | Frontend SPA | React, TypeScript, Tailwind, Vite |
96
102
 
97
103
  ```bash
98
- npx maestro-bundle ai-agents claude # Python + LangChain + LangGraph + FastAPI
99
- npx maestro-bundle jhipster-monorepo cursor # Java 21 + Spring Boot + Angular
100
- npx maestro-bundle jhipster-microservices codex # Java 21 + Spring Boot + Kafka + K8s
101
- npx maestro-bundle data-pipeline copilot # Python + Pandas + Scikit-learn + MLflow
102
- npx maestro-bundle frontend-spa windsurf # React + TypeScript + Tailwind + Vite
104
+ npx maestro-bundle ai-agents claude
105
+ npx maestro-bundle ai-agents-deep cursor
106
+ npx maestro-bundle jhipster-monorepo claude
107
+ npx maestro-bundle jhipster-microservices codex
108
+ npx maestro-bundle data-pipeline copilot
109
+ npx maestro-bundle frontend-spa windsurf
103
110
  ```
104
111
 
105
- ## O que acontece
112
+ ## Supported editors
113
+
114
+ | Editor | Command | Where it installs |
115
+ |---|---|---|
116
+ | **Claude Code** | `npx maestro-bundle <bundle> claude` | `CLAUDE.md` + `.claude/skills/` |
117
+ | **Cursor** | `npx maestro-bundle <bundle> cursor` | `AGENTS.md` + `.cursor/skills/` |
118
+ | **OpenAI Codex** | `npx maestro-bundle <bundle> codex` | `AGENTS.md` + `.agents/skills/` |
119
+ | **GitHub Copilot** | `npx maestro-bundle <bundle> copilot` | `.github/copilot-instructions.md` |
120
+ | **Windsurf** | `npx maestro-bundle <bundle> windsurf` | `.windsurfrules` |
121
+ | **All** | `npx maestro-bundle <bundle> all` | All of the above in the same repo |
122
+
123
+ ## What happens when you install
106
124
 
107
125
  ```
108
126
  $ npx maestro-bundle ai-agents claude
109
127
 
110
- Bundle: Sistema Multi-Agente com AI
128
+ Bundle: Multi-Agent AI System
111
129
  Editor: Claude Code
112
130
 
113
- ✔ Claude Code: AGENTS.md, CLAUDE.md → @AGENTS.md, 14 skills em .claude/skills/
114
- ✔ PRD.md template instalado (preencha com os requisitos do produto)
115
- ✔ 11 LangChain Skills instaladas
116
- 14 skills canônicas em skills/
117
- references/ pronto
118
- specify-cli v0.4.3 instalado
119
- ✔ Spec Kit inicializado (/speckit.* commands disponíveis)
120
- ✔ Constitution do bundle integrado ao Spec Kit
121
-
122
- Pronto!
123
-
124
- Comandos SDD disponíveis no editor:
125
- /speckit.constitution — Definir princípios do projeto
126
- /speckit.specify — Especificar O QUE e POR QUÊ
127
- /speckit.plan — Planejar arquitetura e stack
128
- /speckit.tasks — Quebrar em tasks atômicas
129
- /speckit.implement — Executar as tasks
130
-
131
- Próximo passo:
132
- 1. Preencha o PRD.md com os requisitos do produto
133
- 2. Abra o projeto no editor AI
134
- 3. Use /speckit.specify para começar a primeira feature
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
+
138
+ Done!
139
+
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
135
144
  ```
136
145
 
137
- ## Estrutura instalada
146
+ ## Project structure
138
147
 
139
- ### Claude Code
140
148
  ```
141
- seu-projeto/
142
- ├── CLAUDE.md # @AGENTS.md
143
- ├── AGENTS.md # COMO o agente trabalha
144
- ├── PRD.md # O QUE construir (preencher!)
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!)
145
153
  ├── .claude/
146
- │ ├── skills/ # Skills do bundle
147
- │ │ ├── rag-pipeline/SKILL.md
148
- │ │ ├── clean-architecture/SKILL.md
154
+ │ ├── skills/ # Agent capabilities
155
+ │ │ ├── rag-pipeline/
156
+ │ │ ├── clean-architecture/
157
+ │ │ ├── testing-strategy/
149
158
  │ │ └── ...
150
- │ └── commands/ # /speckit.* (gerado pelo Spec Kit)
159
+ │ └── commands/ # Spec Kit commands
151
160
  │ ├── speckit.specify.md
152
161
  │ ├── speckit.plan.md
153
162
  │ ├── speckit.tasks.md
154
163
  │ └── speckit.implement.md
155
- ├── .specify/ # Spec Kit
156
- │ ├── memory/constitution.md # Princípios do projeto
157
- │ ├── scripts/ # Scripts auxiliares
158
- ├── templates/ # Templates para spec, plan, tasks
159
- │ └── specs/ # Specs das features (criadas via /speckit.specify)
164
+ ├── .specify/ # Feature specs, plans, tasks
165
+ │ ├── memory/constitution.md
166
+ │ ├── templates/
167
+ └── specs/
160
168
  │ └── 001-feature-name/
161
169
  │ ├── spec.md
162
170
  │ ├── plan.md
163
171
  │ └── tasks.md
164
- ├── skills/ # Skills canônicas (Deep Agents)
165
- └── references/ # Docs de referência
172
+ ├── skills/ # Canonical skills (Deep Agents)
173
+ └── references/ # Reference docs
166
174
  ```
167
175
 
168
- ### Cursor
169
- ```
170
- seu-projeto/
171
- ├── AGENTS.md # COMO o agente trabalha
172
- ├── PRD.md # O QUE construir (preencher!)
173
- ├── .cursor/
174
- │ ├── skills/ # Skills do bundle
175
- │ └── commands/ # /speckit.* commands
176
- ├── .specify/ # Spec Kit (specs, plans, tasks)
177
- ├── skills/ # Skills canônicas
178
- └── references/
179
- ```
176
+ ## SDD process with Spec Kit
180
177
 
181
- ### OpenAI Codex
182
- ```
183
- seu-projeto/
184
- ├── AGENTS.md # COMO o agente trabalha
185
- ├── PRD.md # O QUE construir (preencher!)
186
- ├── .agents/skills/ # speckit-* skills
187
- ├── .specify/ # Spec Kit
188
- ├── skills/ # Skills canônicas
189
- └── references/
190
- ```
178
+ The bundle installs [GitHub Spec Kit](https://github.com/github/spec-kit) which adds commands to your editor for Specification-Driven Development:
191
179
 
192
- ## Skills extras do LangChain (bundle ai-agents)
180
+ | Command | What it does |
181
+ |---|---|
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 |
193
186
 
194
- O bundle `ai-agents` instala automaticamente as 11 skills oficiais do [LangChain](https://github.com/langchain-ai/langchain-skills):
187
+ The agent is instructed to follow this flow for new features. Simple bug fixes can go directly.
195
188
 
196
- | Skill | O que faz |
197
- |---|---|
198
- | `framework-selection` | Escolher entre LangChain, LangGraph ou Deep Agents |
199
- | `langchain-fundamentals` | Criar agentes com `create_agent`, tools, middleware |
200
- | `langchain-middleware` | Human-in-the-loop, custom middleware, output estruturado |
201
- | `langchain-rag` | RAG: document loaders, embeddings, vector stores |
202
- | `langchain-dependencies` | Pacotes, versões, instalação |
203
- | `langgraph-fundamentals` | StateGraph, nodes, edges, streaming |
204
- | `langgraph-persistence` | Checkpointers, Store, time travel |
205
- | `langgraph-human-in-the-loop` | Interrupts, aprovação humana, resume |
206
- | `deep-agents-core` | Criar Deep Agents, harness, SKILL.md format |
207
- | `deep-agents-memory` | Memória e persistência para Deep Agents |
208
- | `deep-agents-orchestration` | Subagentes, planning, HITL |
209
-
210
- ## Pré-requisitos
211
-
212
- - **Node.js 18+** (para rodar o npx)
213
- - **Git** (para o specify init)
214
- - **uv** ou **pip** (para instalar o specify-cli — o bundle tenta instalar automaticamente)
215
-
216
- ## Uso avançado
189
+ ## LangChain Skills (AI bundles)
217
190
 
218
- ```bash
219
- # Instalar em diretório específico
220
- npx maestro-bundle jhipster-monorepo cursor ./meu-projeto
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.
221
192
 
222
- # Instalar para todos os editores (time usa editores diferentes)
223
- npx maestro-bundle ai-agents all
193
+ ## Prerequisites
224
194
 
225
- # Ver bundles e editores disponíveis
226
- npx maestro-bundle --help
227
- ```
195
+ - **Node.js 18+**
196
+ - **Git**
197
+ - **uv** or **pip** (for Spec Kit — installed automatically)
228
198
 
229
199
  ## Links
230
200
 
231
- - [AGENTS.md](https://agents.md/) — Padrão universal para instruções de agentes AI
201
+ - [AGENTS.md](https://agents.md/) — Universal standard for AI agent instructions
232
202
  - [GitHub Spec Kit](https://github.com/github/spec-kit) — Specification-Driven Development
233
- - [LangChain Skills](https://github.com/langchain-ai/langchain-skills) — Skills oficiais LangChain
234
- - [Agent Skills](https://agentskills.io) — Padrão aberto para skills de agentes
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": "1.8.0",
4
- "description": "Instala bundles de governança para projetos com AI agents. Um comando, tudo configurado.",
3
+ "version": "2.0.0",
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
  },