@donotdev/cli 0.0.9 → 0.0.11

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.
Files changed (32) hide show
  1. package/dependencies-matrix.json +24 -7
  2. package/dist/bin/commands/build.js +2 -2
  3. package/dist/bin/commands/bump.js +578 -94
  4. package/dist/bin/commands/cacheout.js +2 -2
  5. package/dist/bin/commands/create-app.js +3 -3
  6. package/dist/bin/commands/create-project.js +3 -3
  7. package/dist/bin/commands/deploy.js +3 -3
  8. package/dist/bin/commands/dev.js +2 -2
  9. package/dist/bin/commands/emu.js +2 -2
  10. package/dist/bin/commands/format.js +2 -2
  11. package/dist/bin/commands/lint.js +2 -2
  12. package/dist/bin/commands/preview.js +2 -2
  13. package/dist/bin/commands/sync-secrets.js +2 -2
  14. package/dist/index.js +3 -3
  15. package/package.json +2 -2
  16. package/templates/root-consumer/.claude/agents/architect.md.example +313 -0
  17. package/templates/root-consumer/.claude/agents/builder.md.example +329 -0
  18. package/templates/root-consumer/.claude/agents/coder.md.example +87 -0
  19. package/templates/root-consumer/.claude/agents/extractor.md.example +235 -0
  20. package/templates/root-consumer/.claude/agents/polisher.md.example +359 -0
  21. package/templates/root-consumer/.claude/agents/prompt-engineer.md.example +85 -0
  22. package/templates/root-consumer/.claude/commands/brainstorm.md.example +133 -0
  23. package/templates/root-consumer/.claude/commands/build.md.example +109 -0
  24. package/templates/root-consumer/.claude/commands/design.md.example +136 -0
  25. package/templates/root-consumer/.claude/commands/polish.md.example +145 -0
  26. package/templates/root-consumer/.cursor/mcp.json.example +8 -0
  27. package/templates/root-consumer/.mcp.json.example +8 -0
  28. package/templates/root-consumer/CLAUDE.md.example +146 -0
  29. package/templates/root-consumer/guides/dndev/AGENT_START_HERE.md.example +15 -12
  30. package/templates/root-consumer/guides/dndev/COMPONENT_API.md.example +195 -0
  31. package/templates/root-consumer/guides/dndev/INDEX.md.example +3 -1
  32. package/templates/root-consumer/guides/dndev/SETUP_CRUD.md.example +157 -1
@@ -2,7 +2,7 @@
2
2
  "$schema": "./dependencies-matrix.schema.json",
3
3
  "version": "0.0.6",
4
4
  "description": "Centralized dependency versions for DoNotDev framework. Single source of truth for all external dependencies. ⚠️ SYNC REQUIRED: When adding/removing @donotdev/* feature packages (auth, billing, crud, oauth), also update packages/core/config/constants.js BUNDLING.optionalFeatures array.",
5
- "lastUpdated": "2026-02-04",
5
+ "lastUpdated": "2026-02-06",
6
6
  "migrationGuides": {
7
7
  "0.0→0.1": {
8
8
  "path": "docs/migration/v0.0-to-v0.1.md",
@@ -23,7 +23,7 @@
23
23
  "@donotdev/auth": {
24
24
  "description": "Authentication package",
25
25
  "packages": {
26
- "@donotdev/auth": "^0.0.5"
26
+ "@donotdev/auth": "^0.0.6"
27
27
  }
28
28
  },
29
29
  "@donotdev/billing": {
@@ -41,19 +41,19 @@
41
41
  "@donotdev/core": {
42
42
  "description": "Core framework package",
43
43
  "packages": {
44
- "@donotdev/core": "^0.0.19"
44
+ "@donotdev/core": "^0.0.21"
45
45
  }
46
46
  },
47
47
  "@donotdev/crud": {
48
48
  "description": "CRUD operations package",
49
49
  "packages": {
50
- "@donotdev/crud": "^0.0.10"
50
+ "@donotdev/crud": "^0.0.12"
51
51
  }
52
52
  },
53
53
  "@donotdev/firebase": {
54
54
  "description": "Firebase provider package",
55
55
  "packages": {
56
- "@donotdev/firebase": "^0.0.8"
56
+ "@donotdev/firebase": "^0.0.9"
57
57
  }
58
58
  },
59
59
  "@donotdev/functions": {
@@ -258,7 +258,7 @@
258
258
  "cli-prompts": {
259
259
  "description": "CLI prompts - used by core config for logging",
260
260
  "packages": {
261
- "@clack/prompts": "^0.11.0"
261
+ "@clack/prompts": "^1.0.0"
262
262
  }
263
263
  },
264
264
  "cli-commander": {
@@ -348,7 +348,19 @@
348
348
  "@donotdev/cli": {
349
349
  "description": "Cli package",
350
350
  "packages": {
351
- "@donotdev/cli": "^0.0.9"
351
+ "@donotdev/cli": "^0.0.10"
352
+ }
353
+ },
354
+ "@donotdev/mcp-server": {
355
+ "description": "MCP server for component type lookups",
356
+ "packages": {
357
+ "@donotdev/mcp-server": "^0.0.1"
358
+ }
359
+ },
360
+ "mcp-sdk": {
361
+ "description": "Model Context Protocol SDK",
362
+ "packages": {
363
+ "@modelcontextprotocol/sdk": "^1.26.0"
352
364
  }
353
365
  },
354
366
  "react-easy-crop": {
@@ -525,6 +537,11 @@
525
537
  "fast-glob"
526
538
  ]
527
539
  },
540
+ "@donotdev/mcp-server": {
541
+ "dependencies": [
542
+ "mcp-sdk"
543
+ ]
544
+ },
528
545
  "@donotdev/tooling": {
529
546
  "dependencies": [
530
547
  "cli-prompts",
@@ -163,7 +163,7 @@ var require_picocolors = __commonJS({
163
163
  }
164
164
  });
165
165
 
166
- // node_modules/.bun/@clack+core@0.5.0/node_modules/@clack/core/dist/index.mjs
166
+ // node_modules/.bun/@clack+prompts@0.11.0/node_modules/@clack/prompts/node_modules/@clack/core/dist/index.mjs
167
167
  import { stdin as j, stdout as M } from "node:process";
168
168
  import * as g from "node:readline";
169
169
  import O from "node:readline";
@@ -279,7 +279,7 @@ function fD({ input: e2 = j, output: u2 = M, overwrite: t = true, hideCursor: F2
279
279
  }
280
280
  var import_sisteransi, uD, W, tD, eD, FD, sD, w, N, I, R, r, iD, CD, ED, d, oD, y, V, nD, G, _, z, K, aD, k, hD, lD, xD, B, AD, S, gD, vD, h, x, A, OD, PD, J, LD;
281
281
  var init_dist = __esm({
282
- "node_modules/.bun/@clack+core@0.5.0/node_modules/@clack/core/dist/index.mjs"() {
282
+ "node_modules/.bun/@clack+prompts@0.11.0/node_modules/@clack/prompts/node_modules/@clack/core/dist/index.mjs"() {
283
283
  init_utils();
284
284
  import_sisteransi = __toESM(require_src(), 1);
285
285
  uD = DD();