@nexus-framework/cli 0.1.3 → 0.1.4

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.
@@ -279,65 +279,161 @@ function toolInstructionContent(config, toolName) {
279
279
  const frameworkDisplay = getFrameworkDisplay(config.frontendFramework);
280
280
  const testDisplay = config.testFramework === 'none' ? 'None configured' : config.testFramework;
281
281
  const patternsDisplay = config.appPatterns.length > 0 ? config.appPatterns.join(', ') : 'None selected';
282
+ const backendDisplay = config.backendFramework === 'none'
283
+ ? `${config.backendStrategy} (no framework)`
284
+ : `${config.backendFramework} (${config.backendStrategy})`;
282
285
  return `# ${config.displayName} — ${toolName} Instructions
283
286
 
284
287
  > Auto-generated by [NEXUS CLI](https://github.com/GDA-Africa/nexus-cli) v${version}.
288
+ > This file contains the FULL project-aware instructions — do NOT skip any section.
289
+
290
+ ---
285
291
 
286
292
  ## 🧠 YOUR BRAIN: \`.nexus/docs/index.md\`
287
293
 
288
- **Read it FIRST. Every time. No exceptions.**
294
+ **READ \`.nexus/docs/index.md\` FIRST. EVERY TIME. NO EXCEPTIONS.**
289
295
 
290
- It contains: current objective, feature backlog, progress log, what's next.
296
+ That file is your project brain. It contains:
297
+ - **Current Objective** — what you should be working on right now
298
+ - **Status Matrix** — what's done, what's in progress, what's blocked
299
+ - **Feature Backlog** — the prioritized roadmap of what to build
300
+ - **What Has Been Built** — every module, file, and test that exists
301
+ - **Progress Log** — session-by-session changelog (your memory)
302
+ - **What's Next** — your prioritized TODO list
303
+ - **Operating Rules** — the rules you MUST follow
291
304
 
292
305
  \`\`\`
293
- RULE: Before EVERY task read .nexus/docs/index.md
294
- RULE: After EVERY task update .nexus/docs/index.md
306
+ RULE: Before EVERY task, read .nexus/docs/index.md
307
+ RULE: After EVERY task, update .nexus/docs/index.md
308
+ RULE: When the user asks "what should we work on?" → check the index
309
+ RULE: When you finish a feature → update the index, then suggest the next item
295
310
  RULE: NEVER ask "what enhancements would you like?" → the index has the answer
296
311
  RULE: NEVER invent features → work from the feature backlog
297
312
  \`\`\`
298
313
 
299
- ## 🚨 First-Time Onboarding
314
+ ---
300
315
 
301
- If ANY \`.nexus/docs/\` file has \`status: template\` in its YAML frontmatter:
316
+ ## 🚨 CRITICAL Onboarding Protocol (First-Time Setup)
302
317
 
303
- **STOP. Populate the docs BEFORE doing anything else.**
304
- Read \`.nexus/ai/instructions.md\` for the full onboarding steps.
318
+ Each NEXUS doc has YAML frontmatter with a \\\`status\\\` field:
319
+ - \\\`template\\\` the doc is still in its default scaffolded state
320
+ - \\\`populated\\\` — the doc has been filled in by a human or AI agent
305
321
 
306
- ## Project
322
+ \\\`\\\`\\\`
323
+ STOP. If ANY .nexus/docs/ file has status: template → you MUST populate it FIRST.
324
+ Do NOT skip this step. Do NOT jump straight to the user's request.
325
+ This is a hard requirement, not a suggestion.
326
+ \\\`\\\`\\\`
327
+
328
+ ### Steps:
329
+
330
+ 1. **Scan the codebase** — read \\\`package.json\\\`, \\\`tsconfig.json\\\`, source files,
331
+ route definitions, data models, and test files to understand the project.
332
+
333
+ 2. **Ask the user about their vision** — what are they building? Who are the users?
334
+ Fill in \\\`01_vision.md\\\` and \\\`05_business_logic.md\\\`.
335
+
336
+ 3. **Auto-fill what you can infer** from the code:
337
+ - \\\`02_architecture.md\\\` — tech stack, directory structure, data flow
338
+ - \\\`03_data_contracts.md\\\` — schemas, types, validation from source code
339
+ - \\\`04_api_contracts.md\\\` — routes, endpoints, request/response shapes
340
+ - \\\`06_test_strategy.md\\\` — existing test setup, coverage, test patterns
341
+ - \\\`08_deployment.md\\\` — CI/CD config, environment variables, deploy targets
342
+
343
+ 4. **Build the implementation plan** (\\\`07_implementation.md\\\`):
344
+ - Turn features into concrete build phases
345
+ - Create a file-by-file plan
346
+ - Set the current phase based on what already exists
347
+
348
+ 5. **Update the frontmatter** of each doc you fill in:
349
+ \\\`\\\`\\\`yaml
350
+ status: populated
351
+ confidence: high
352
+ last_updated: "YYYY-MM-DD"
353
+ \\\`\\\`\\\`
354
+
355
+ 6. **Build the project brain** (\\\`.nexus/docs/index.md\\\`):
356
+ - Fill in the feature backlog from \\\`01_vision.md\\\`
357
+ - Update the status matrix
358
+ - Set "What's Next" to the first real feature
359
+
360
+ 7. **THEN proceed** with the user's original request.
361
+
362
+ ---
363
+
364
+ ## Project Identity
307
365
 
308
366
  | Field | Value |
309
367
  |-------|-------|
310
368
  | Name | ${config.displayName} |
311
369
  | Type | ${config.projectType} |
312
370
  | Framework | ${frameworkDisplay} |
313
- | Data | ${config.dataStrategy} |
371
+ | Data Strategy | ${config.dataStrategy} |
372
+ | Backend | ${backendDisplay} |
314
373
  | Testing | ${testDisplay} |
315
374
  | Package Manager | ${config.packageManager} |
316
375
  | Patterns | ${patternsDisplay} |
317
376
 
318
- ## Workflow
319
-
320
- 1. **Before:** Read \`.nexus/docs/index.md\` → check "What's Next". Scan \`.nexus/docs/knowledge.md\` for relevant past learnings
321
- 2. **During:** Write code + tests, validate with \`${getValidationCommand(config)}\`
322
- 3. **After:** Update \`.nexus/docs/index.md\` → move item to Progress Log. If you learned something non-obvious, append to \`.nexus/docs/knowledge.md\`
323
- 4. **Suggest:** The next item from the backlog
377
+ ---
324
378
 
325
379
  ## Code Rules
326
380
 
327
- - TypeScript strict mode — no \`any\`, no implicit returns
328
- - ESM only — \`import\`/\`export\`, never \`require()\`
329
- - Conventional Commits\`feat:\`, \`fix:\`, \`docs:\`, \`chore:\`
330
- - Test everythingvalidate: \`${getValidationCommand(config)}\`
381
+ 1. **TypeScript strict mode** — no \`any\`, no implicit returns
382
+ 2. **ESM only** — \`import\`/\`export\`, never \`require()\`
383
+ 3. **File extensions in imports** always \`.js\` (e.g., \`import { foo } from './bar.js'\`)
384
+ 4. **Conventional Commits**\`feat:\`, \`fix:\`, \`docs:\`, \`chore:\`, \`test:\`, \`refactor:\`
385
+ 5. **Test everything** — every feature needs tests
386
+ 6. **Validate after changes** — \`${getValidationCommand(config)}\`
387
+
388
+ ---
389
+
390
+ ## NEXUS Documentation System
391
+
392
+ | # | File | Purpose |
393
+ |---|------|---------|
394
+ | 🧠 | \`.nexus/docs/index.md\` | **PROJECT BRAIN** — status, backlog, progress, what's next |
395
+ | 📚 | \`.nexus/knowledge.md\` | **KNOWLEDGE BASE** — learned insights, patterns, gotchas |
396
+ | 1 | \`.nexus/docs/01_vision.md\` | Product requirements, user stories, success metrics |
397
+ | 2 | \`.nexus/docs/02_architecture.md\` | System design, tech stack, data flow |
398
+ | 3 | \`.nexus/docs/03_data_contracts.md\` | Database schemas, validation, relationships |
399
+ | 4 | \`.nexus/docs/04_api_contracts.md\` | Endpoints, interfaces, status codes |
400
+ | 5 | \`.nexus/docs/05_business_logic.md\` | Rules, algorithms, state machines |
401
+ | 6 | \`.nexus/docs/06_test_strategy.md\` | Coverage targets, test types, philosophy |
402
+ | 7 | \`.nexus/docs/07_implementation.md\` | Build order, file-by-file plan |
403
+ | 8 | \`.nexus/docs/08_deployment.md\` | Infrastructure, CI/CD, environment config |
404
+
405
+ ---
406
+
407
+ ## Workflow — How To Work On This Project
408
+
409
+ ### Before EVERY task:
410
+ 1. **Read \`.nexus/docs/index.md\`** — check "Current Objective" and "What's Next"
411
+ 2. **Scan \`.nexus/knowledge.md\`** — check for relevant past learnings
412
+ 3. **Read the relevant spec doc** — find details in the numbered docs
413
+ 4. **Check \`.nexus/docs/07_implementation.md\`** — find the file-by-file plan
414
+
415
+ ### During the task:
416
+ 5. **Write the code** following the architecture in \`.nexus/docs/02_architecture.md\`
417
+ 6. **Write tests** — match the strategy in \`.nexus/docs/06_test_strategy.md\`
418
+ 7. **Validate** — \`${getValidationCommand(config)}\`
419
+
420
+ ### After EVERY task:
421
+ 8. **Update \`.nexus/docs/index.md\`** — move items to Progress Log, update status
422
+ 9. **Update \`.nexus/docs/07_implementation.md\`** — mark completed files/tasks
423
+ 10. **Learn** — if you discovered something non-obvious, append to \`.nexus/knowledge.md\`
424
+ 11. **Commit** — conventional commits (\`feat:\`, \`fix:\`, etc.)
425
+ 12. **Suggest the next task** from \`.nexus/docs/index.md\` "What's Next"
331
426
 
332
- ## Docs
427
+ ### NEVER do this:
428
+ - ❌ Ask "what enhancements would you like?" when the backlog has items
429
+ - ❌ Invent random features not in the backlog
430
+ - ❌ Skip updating the index after completing work
431
+ - ❌ Treat docs as static — they evolve with the project
432
+ - ❌ Ignore \`.nexus/knowledge.md\` — it prevents repeating mistakes
433
+
434
+ ---
333
435
 
334
- | File | Purpose |
335
- |------|---------|
336
- | \`.nexus/docs/index.md\` | **🧠 Project brain** — status, backlog, what's next |
337
- | \`.nexus/ai/instructions.md\` | Full AI rules, onboarding protocol, architecture |
338
- | \`.nexus/docs/knowledge.md\` | **📚 Knowledge base** — learned insights, patterns, gotchas |
339
- | \`.nexus/docs/01_vision.md\` | Vision, features, personas |
340
- | \`.nexus/docs/07_implementation.md\` | Build order, file-by-file plan |
436
+ *Generated by [NEXUS CLI](https://github.com/GDA-Africa/nexus-cli) v${version}*
341
437
  `;
342
438
  }
343
439
  function generateCursorRules(config) {
@@ -1 +1 @@
1
- {"version":3,"file":"ai-config.js","sourceRoot":"","sources":["../../src/generators/ai-config.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ai-config.js","sourceRoot":"","sources":["../../src/generators/ai-config.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAIH,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAExC;;oEAEoE;AAEpE;;GAEG;AACH,MAAM,UAAU,gBAAgB,CAAC,MAAmB;IAClD,MAAM,KAAK,GAAoB,EAAE,CAAC;IAElC,qDAAqD;IACrD,KAAK,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC;IAEzC,6EAA6E;IAC7E,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC,CAAC;IACxC,KAAK,CAAC,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,CAAC,CAAC;IAC1C,KAAK,CAAC,IAAI,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC,CAAC;IACvC,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC;IACrC,KAAK,CAAC,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,CAAC,CAAC;IAEhD,OAAO,KAAK,CAAC;AACf,CAAC;AAED;;oEAEoE;AAEpE,SAAS,oBAAoB,CAAC,MAAmB;IAC/C,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC;IACvE,MAAM,WAAW,GAAG,MAAM,CAAC,aAAa,KAAK,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC;IAC/F,MAAM,eAAe,GACnB,MAAM,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC;IAClF,MAAM,cAAc,GAClB,MAAM,CAAC,gBAAgB,KAAK,MAAM;QAChC,CAAC,CAAC,GAAG,MAAM,CAAC,eAAe,iBAAiB;QAC5C,CAAC,CAAC,GAAG,MAAM,CAAC,gBAAgB,KAAK,MAAM,CAAC,eAAe,GAAG,CAAC;IAE/D,MAAM,OAAO,GAAG,KAAK,MAAM,CAAC,WAAW;;;kFAGyC,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAyF1E,MAAM,CAAC,WAAW;eAClB,MAAM,CAAC,WAAW;oBACb,gBAAgB;wBACZ,MAAM,CAAC,YAAY;kBACzB,cAAc;kBACd,WAAW;0BACH,MAAM,CAAC,cAAc;oCACX,OAAO;;;;;;;;eAQ5B,gBAAgB;;oBAEX,MAAM,CAAC,YAAY;cACzB,cAAc;cACd,WAAW;sBACH,MAAM,CAAC,cAAc;eAC5B,eAAe;;;;;;;;;;;wCAWU,oBAAoB,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA2D9C,oBAAoB,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;sEAoBoB,OAAO;CAC5E,CAAC;IAEA,OAAO,EAAE,IAAI,EAAE,2BAA2B,EAAE,OAAO,EAAE,CAAC;AACxD,CAAC;AAED;;;;;;;;;oEASoE;AAEpE;;;;GAIG;AACH,SAAS,sBAAsB,CAAC,MAAmB,EAAE,QAAgB;IACnE,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,MAAM,CAAC,iBAAiB,CAAC,CAAC;IACvE,MAAM,WAAW,GAAG,MAAM,CAAC,aAAa,KAAK,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC;IAC/F,MAAM,eAAe,GACnB,MAAM,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC;IAClF,MAAM,cAAc,GAClB,MAAM,CAAC,gBAAgB,KAAK,MAAM;QAChC,CAAC,CAAC,GAAG,MAAM,CAAC,eAAe,iBAAiB;QAC5C,CAAC,CAAC,GAAG,MAAM,CAAC,gBAAgB,KAAK,MAAM,CAAC,eAAe,GAAG,CAAC;IAE/D,OAAO,KAAK,MAAM,CAAC,WAAW,MAAM,QAAQ;;4EAE8B,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAiFxE,MAAM,CAAC,WAAW;WAClB,MAAM,CAAC,WAAW;gBACb,gBAAgB;oBACZ,MAAM,CAAC,YAAY;cACzB,cAAc;cACd,WAAW;sBACH,MAAM,CAAC,cAAc;eAC5B,eAAe;;;;;;;;;;;oCAWM,oBAAoB,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAgC1C,oBAAoB,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;sEAkBoB,OAAO;CAC5E,CAAC;AACF,CAAC;AAED,SAAS,mBAAmB,CAAC,MAAmB;IAC9C,OAAO,EAAE,IAAI,EAAE,cAAc,EAAE,OAAO,EAAE,sBAAsB,CAAC,MAAM,EAAE,QAAQ,CAAC,EAAE,CAAC;AACrF,CAAC;AAED,SAAS,qBAAqB,CAAC,MAAmB;IAChD,OAAO,EAAE,IAAI,EAAE,gBAAgB,EAAE,OAAO,EAAE,sBAAsB,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE,CAAC;AACzF,CAAC;AAED,SAAS,kBAAkB,CAAC,MAAmB;IAC7C,OAAO,EAAE,IAAI,EAAE,aAAa,EAAE,OAAO,EAAE,sBAAsB,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;AACnF,CAAC;AAED,SAAS,gBAAgB,CAAC,MAAmB;IAC3C,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,OAAO,EAAE,sBAAsB,CAAC,MAAM,EAAE,4BAA4B,CAAC,EAAE,CAAC;AACtG,CAAC;AAED;;;;oEAIoE;AAEpE,SAAS,2BAA2B,CAAC,MAAmB;IACtD,OAAO,EAAE,IAAI,EAAE,iCAAiC,EAAE,OAAO,EAAE,sBAAsB,CAAC,MAAM,EAAE,gBAAgB,CAAC,EAAE,CAAC;AAChH,CAAC;AAED;;oEAEoE;AAEpE,SAAS,mBAAmB,CAAC,SAAiB;IAC5C,MAAM,GAAG,GAA2B;QAClC,MAAM,EAAE,yBAAyB;QACjC,YAAY,EAAE,cAAc;QAC5B,SAAS,EAAE,WAAW;QACtB,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,OAAO;QACd,KAAK,EAAE,OAAO;KACf,CAAC;IACF,OAAO,GAAG,CAAC,SAAS,CAAC,IAAI,SAAS,CAAC;AACrC,CAAC;AAED,SAAS,oBAAoB,CAAC,MAAmB;IAC/C,MAAM,EAAE,GAAG,MAAM,CAAC,cAAc,CAAC;IACjC,MAAM,SAAS,GAAG,EAAE,KAAK,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;IAChD,MAAM,OAAO,GAAG,MAAM,CAAC,aAAa,KAAK,MAAM,CAAC,CAAC,CAAC,OAAO,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC;IAC/E,OAAO,mBAAmB,OAAO,OAAO,SAAS,OAAO,CAAC;AAC3D,CAAC"}
package/dist/version.d.ts CHANGED
@@ -3,5 +3,5 @@
3
3
  *
4
4
  * Single source of truth for the CLI version.
5
5
  */
6
- export declare const version = "0.1.3";
6
+ export declare const version = "0.1.4";
7
7
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -3,5 +3,5 @@
3
3
  *
4
4
  * Single source of truth for the CLI version.
5
5
  */
6
- export const version = '0.1.3';
6
+ export const version = '0.1.4';
7
7
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-framework/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "AI-Native Project Scaffolding for the Modern Era — generates production-ready, AI-optimized project structures",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",