claude-dreamteam 1.1.0 → 1.2.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/README.md CHANGED
@@ -8,6 +8,13 @@ One command to unlock 100% of Claude Code's power. Zero learning curve.
8
8
  npx claude-dreamteam init
9
9
  ```
10
10
 
11
+ Works for **new projects** and **existing codebases**:
12
+
13
+ ```
14
+ /dream fitness app with React Native and Firebase ← new project
15
+ /setup ← existing project
16
+ ```
17
+
11
18
  ---
12
19
 
13
20
  ## The Problem
@@ -83,29 +90,38 @@ Claude: [Level 1] Building CLAUDE.md... done
83
90
  npx claude-dreamteam init
84
91
  ```
85
92
 
86
- ### 2. Open any project folder
93
+ ### 2a. New project — describe your idea
87
94
 
88
95
  ```bash
89
96
  mkdir my-app && cd my-app
90
97
  claude
91
98
  ```
92
99
 
93
- ### 3. Describe your idea
94
-
95
100
  ```
96
101
  /dream SaaS analytics dashboard with Next.js, Python FastAPI,
97
102
  PostgreSQL, Stripe billing, deployed on Vercel
98
103
  ```
99
104
 
100
- The orchestrator analyzes your idea, detects the stack, and builds Levels 1-5 automatically.
105
+ ### 2b. Existing project scan and set up
106
+
107
+ ```bash
108
+ cd my-existing-app
109
+ claude
110
+ ```
111
+
112
+ ```
113
+ /setup
114
+ ```
115
+
116
+ The orchestrator scans your codebase, detects your tech stack from actual files, and builds the Claude Code environment around what already exists.
101
117
 
102
- ### 4. Start building
118
+ ### 3. Start building
103
119
 
104
120
  ```
105
121
  /add user authentication with Google OAuth
106
122
  ```
107
123
 
108
- ### 5. Level up when ready
124
+ ### 4. Level up when ready
109
125
 
110
126
  ```
111
127
  /level-up
@@ -121,7 +137,8 @@ No jargon. No dev knowledge needed. Just type what you want.
121
137
 
122
138
  | Command | What it does |
123
139
  |---------|-------------|
124
- | `/dream` `"your idea"` | Describe your project, get the entire AI dev environment built |
140
+ | `/dream` `"your idea"` | **New project** describe your idea, get everything built |
141
+ | `/setup` | **Existing project** — scans your code, builds the environment around it |
125
142
  | `/level-up` | See your current level (0-10), build the next one |
126
143
  | `/evolve` | Auto-find and fix gaps in your agents, skills, and memory |
127
144
 
@@ -257,7 +274,7 @@ Dream Team doesn't reinvent anything. It configures what Claude Code already has
257
274
 
258
275
  ## What Gets Installed
259
276
 
260
- The package itself is tiny. 8 files into `~/.claude/`:
277
+ The package itself is tiny. 9 files into `~/.claude/`:
261
278
 
262
279
  ```
263
280
  ~/.claude/
@@ -265,6 +282,7 @@ The package itself is tiny. 8 files into `~/.claude/`:
265
282
  orchestrator.md The brain — one agent that knows all 10 levels
266
283
  commands/
267
284
  dream.md /dream — build from a project idea
285
+ setup.md /setup — scan existing project, build environment
268
286
  level-up.md /level-up — grow to the next level
269
287
  evolve.md /evolve — auto-improve environment
270
288
  fix.md /fix — describe a bug, get it fixed
package/bin/cli.js CHANGED
@@ -101,6 +101,7 @@ function install(mode, force = false) {
101
101
  { file: 'ship.md', desc: '/ship — commit and push your changes' },
102
102
  { file: 'explain.md', desc: '/explain — explain code/errors in plain English' },
103
103
  { file: 'status.md', desc: '/status — quick project health check' },
104
+ { file: 'setup.md', desc: '/setup — scan existing project, build Claude Code environment' },
104
105
  ];
105
106
 
106
107
  for (const cmd of commands) {
@@ -144,6 +145,7 @@ function showUsage() {
144
145
  log(` ${C.cyan}/ship${C.reset} Commit and push your changes`);
145
146
  log(` ${C.cyan}/explain${C.reset} ${C.dim}"anything"${C.reset} Explain code/errors in plain English`);
146
147
  log(` ${C.cyan}/status${C.reset} Quick project health check`);
148
+ log(` ${C.cyan}/setup${C.reset} Scan existing project, build environment`);
147
149
  log('');
148
150
  }
149
151
 
@@ -157,6 +159,7 @@ function uninstall() {
157
159
  path.join(HOME_CLAUDE, 'commands', 'ship.md'),
158
160
  path.join(HOME_CLAUDE, 'commands', 'explain.md'),
159
161
  path.join(HOME_CLAUDE, 'commands', 'status.md'),
162
+ path.join(HOME_CLAUDE, 'commands', 'setup.md'),
160
163
  ];
161
164
 
162
165
  log(`${C.dim} Removing Dream Team files...${C.reset}`);
@@ -182,6 +185,7 @@ function uninstall() {
182
185
  path.join(process.cwd(), '.claude', 'commands', 'ship.md'),
183
186
  path.join(process.cwd(), '.claude', 'commands', 'explain.md'),
184
187
  path.join(process.cwd(), '.claude', 'commands', 'status.md'),
188
+ path.join(process.cwd(), '.claude', 'commands', 'setup.md'),
185
189
  ];
186
190
 
187
191
  for (const file of localLocations) {
@@ -214,6 +218,7 @@ function status() {
214
218
  { path: path.join(HOME_CLAUDE, 'commands', 'ship.md'), label: '/ship command (global)' },
215
219
  { path: path.join(HOME_CLAUDE, 'commands', 'explain.md'), label: '/explain command (global)' },
216
220
  { path: path.join(HOME_CLAUDE, 'commands', 'status.md'), label: '/status command (global)' },
221
+ { path: path.join(HOME_CLAUDE, 'commands', 'setup.md'), label: '/setup command (global)' },
217
222
  ];
218
223
 
219
224
  let installed = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-dreamteam",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "One command to build your entire Claude Code development environment. Level 0 to 10.",
5
5
  "bin": {
6
6
  "claude-dreamteam": "./bin/cli.js"
@@ -0,0 +1,25 @@
1
+ Scan my existing project and build the Claude Code environment for it.
2
+
3
+ Orchestrator — this is an EXISTING project with code already written. Do NOT ask what I want to build. Instead:
4
+
5
+ 1. Scan the current directory thoroughly:
6
+ - Read package.json, pyproject.toml, requirements.txt, Cargo.toml, go.mod, etc.
7
+ - Look at the directory structure to understand the architecture
8
+ - Read any existing CLAUDE.md, .mcp.json, or .claude/ files
9
+ - Identify the tech stack, frameworks, and patterns from actual code
10
+
11
+ 2. Run the environment scanner to detect my current level (0-10)
12
+
13
+ 3. Build everything I'm missing up to Level 5:
14
+ - CLAUDE.md based on what actually exists in the codebase
15
+ - MCP servers for the detected technologies
16
+ - Skills based on the actual patterns found in the code
17
+ - Memory system with a real codebase map
18
+ - Specialized agents matched to the actual directory structure
19
+
20
+ 4. Show me what was detected and what was built
21
+
22
+ If $ARGUMENTS is provided, use it as additional context about the project.
23
+ Otherwise, figure everything out from the code.
24
+
25
+ $ARGUMENTS