@atlashub/smartstack-cli 2.3.0 → 2.4.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.
Files changed (33) hide show
  1. package/.documentation/cli-commands.html +1 -1
  2. package/.documentation/init.html +1 -1
  3. package/.documentation/installation.html +1 -1
  4. package/dist/index.js +2 -2
  5. package/dist/index.js.map +1 -1
  6. package/package.json +1 -1
  7. package/templates/agents/ba-reader.md +114 -9
  8. package/templates/agents/ba-writer.md +108 -27
  9. package/templates/agents/mcp-healthcheck.md +1 -1
  10. package/templates/ralph/README.md +1 -1
  11. package/templates/ralph/ralph.config.yaml +1 -1
  12. package/templates/skills/_shared.md +60 -0
  13. package/templates/skills/application/steps/step-00-init.md +32 -8
  14. package/templates/skills/business-analyse/SKILL.md +65 -42
  15. package/templates/skills/business-analyse/_shared.md +161 -51
  16. package/templates/skills/business-analyse/questionnaire/00-application.md +166 -0
  17. package/templates/skills/business-analyse/questionnaire.md +63 -19
  18. package/templates/skills/business-analyse/react/application-viewer.md +242 -0
  19. package/templates/skills/business-analyse/react/components.md +60 -8
  20. package/templates/skills/business-analyse/react/schema.md +238 -7
  21. package/templates/skills/business-analyse/schemas/application-schema.json +389 -0
  22. package/templates/skills/business-analyse/schemas/feature-schema.json +74 -3
  23. package/templates/skills/business-analyse/steps/step-00-init.md +110 -44
  24. package/templates/skills/business-analyse/steps/step-01-cadrage.md +259 -0
  25. package/templates/skills/business-analyse/steps/step-02-decomposition.md +282 -0
  26. package/templates/skills/business-analyse/steps/step-03-specify.md +489 -0
  27. package/templates/skills/business-analyse/steps/step-04-consolidation.md +336 -0
  28. package/templates/skills/business-analyse/steps/step-05-handoff.md +1119 -0
  29. package/templates/skills/mcp/SKILL.md +2 -2
  30. package/templates/skills/business-analyse/steps/step-01-analyse.md +0 -523
  31. package/templates/skills/business-analyse/steps/step-02-specify.md +0 -899
  32. package/templates/skills/business-analyse/steps/step-03-validate.md +0 -1009
  33. package/templates/skills/business-analyse/steps/step-04-handoff.md +0 -1802
@@ -610,7 +610,7 @@ smartstack check-mcp --json # Output JSON</code></pre>
610
610
  <td><strong>smartstack</strong></td>
611
611
  <td data-lang="fr">Validation conventions, scaffolding, API docs</td>
612
612
  <td data-lang="en">Convention validation, scaffolding, API docs</td>
613
- <td><code>claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp</code> <em data-lang="fr">(auto via install)</em><em data-lang="en">(auto via install)</em></td>
613
+ <td><code>claude mcp add smartstack -- npx --package @atlashub/smartstack-cli smartstack-mcp</code> <em data-lang="fr">(auto via install)</em><em data-lang="en">(auto via install)</em></td>
614
614
  </tr>
615
615
  </tbody>
616
616
  </table>
@@ -198,7 +198,7 @@
198
198
  <span data-lang="fr">Validation conventions, scaffolding, API docs</span>
199
199
  <span data-lang="en">Conventions validation, scaffolding, API docs</span>
200
200
  </td>
201
- <td><code>claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp</code> <em data-lang="fr">(auto via install)</em><em data-lang="en">(auto via install)</em></td>
201
+ <td><code>claude mcp add smartstack -- npx --package @atlashub/smartstack-cli smartstack-mcp</code> <em data-lang="fr">(auto via install)</em><em data-lang="en">(auto via install)</em></td>
202
202
  </tr>
203
203
  <tr>
204
204
  <td><strong>Context7 MCP</strong></td>
@@ -767,7 +767,7 @@ smartstack install</code></pre>
767
767
  smartstack install --force
768
768
 
769
769
  # Enregistrement manuel (si necessaire)
770
- claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp</code></pre>
770
+ claude mcp add smartstack -- npx --package @atlashub/smartstack-cli smartstack-mcp</code></pre>
771
771
  </div>
772
772
  </div>
773
773
  </div>
package/dist/index.js CHANGED
@@ -112367,7 +112367,7 @@ async function registerMcpServer() {
112367
112367
  if (addResult.status === 0) {
112368
112368
  logger.success("Registered SmartStack MCP server (bundled)");
112369
112369
  } else {
112370
- logger.warning("Failed to register MCP server - register manually: claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp");
112370
+ logger.warning("Failed to register MCP server - register manually: claude mcp add smartstack -- npx --package @atlashub/smartstack-cli smartstack-mcp");
112371
112371
  }
112372
112372
  } else {
112373
112373
  logger.info("SmartStack MCP server already registered");
@@ -124591,7 +124591,7 @@ var REQUIRED_MCP_SERVERS = [
124591
124591
  {
124592
124592
  name: "smartstack",
124593
124593
  description: "SmartStack validation and scaffolding (bundled)",
124594
- installCommand: "claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp"
124594
+ installCommand: "claude mcp add smartstack -- npx --package @atlashub/smartstack-cli smartstack-mcp"
124595
124595
  }
124596
124596
  ];
124597
124597
  function getInstalledMcpServers() {