@atlashub/smartstack-cli 3.14.0 → 3.16.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/dist/index.js +26 -28
  2. package/dist/index.js.map +1 -1
  3. package/dist/mcp-entry.mjs +626 -141
  4. package/dist/mcp-entry.mjs.map +1 -1
  5. package/package.json +1 -1
  6. package/templates/agents/efcore/migration.md +15 -0
  7. package/templates/skills/apex/steps/step-04-validate.md +64 -5
  8. package/templates/skills/application/references/frontend-verification.md +20 -0
  9. package/templates/skills/application/steps/step-04-backend.md +17 -1
  10. package/templates/skills/application/steps/step-05-frontend.md +49 -23
  11. package/templates/skills/application/templates-seed.md +14 -4
  12. package/templates/skills/business-analyse/html/ba-interactive.html +165 -0
  13. package/templates/skills/business-analyse/html/src/scripts/01-data-init.js +2 -0
  14. package/templates/skills/business-analyse/html/src/scripts/06-render-consolidation.js +85 -0
  15. package/templates/skills/business-analyse/html/src/styles/05-modules.css +65 -0
  16. package/templates/skills/business-analyse/html/src/template.html +13 -0
  17. package/templates/skills/business-analyse/schemas/application-schema.json +5 -0
  18. package/templates/skills/business-analyse/schemas/sections/metadata-schema.json +1 -0
  19. package/templates/skills/business-analyse/steps/step-01-cadrage.md +90 -0
  20. package/templates/skills/business-analyse/steps/step-02-decomposition.md +4 -0
  21. package/templates/skills/business-analyse/steps/step-03a1-setup.md +39 -0
  22. package/templates/skills/efcore/steps/shared/step-00-init.md +55 -0
  23. package/templates/skills/ralph-loop/SKILL.md +1 -0
  24. package/templates/skills/ralph-loop/references/category-rules.md +131 -27
  25. package/templates/skills/ralph-loop/references/compact-loop.md +61 -3
  26. package/templates/skills/ralph-loop/references/core-seed-data.md +251 -5
  27. package/templates/skills/ralph-loop/references/error-classification.md +143 -0
  28. package/templates/skills/ralph-loop/steps/step-05-report.md +54 -0
  29. package/templates/skills/review-code/references/smartstack-conventions.md +16 -0
  30. package/templates/skills/validate-feature/SKILL.md +11 -1
  31. package/templates/skills/validate-feature/steps/step-00-dependencies.md +121 -0
  32. package/templates/skills/validate-feature/steps/step-04-api-smoke.md +61 -13
  33. package/templates/skills/validate-feature/steps/step-05-db-validation.md +250 -0
package/dist/index.js CHANGED
@@ -115907,9 +115907,7 @@ var updateCommand = new Command("update").description("Update commands to the la
115907
115907
  const isGlobal = !options.local;
115908
115908
  const installation = await checkInstallation({ global: isGlobal });
115909
115909
  if (!installation.installed) {
115910
- logger.warning("SmartStack commands are not installed.");
115911
- logger.info("Run: smartstack install");
115912
- return;
115910
+ logger.warning("No existing installation detected \u2014 running full install with force...");
115913
115911
  }
115914
115912
  const spinner = dryRun ? null : logger.spinner("Updating commands...");
115915
115913
  try {
@@ -117140,33 +117138,33 @@ async function createFrontendStructure(config, state, dryRun) {
117140
117138
  },
117141
117139
  dependencies: {
117142
117140
  "@atlashub/smartstack": smartstackNpmTag,
117143
- "@microsoft/signalr": "latest",
117144
- "@tailwindcss/vite": "latest",
117145
- axios: "latest",
117146
- clsx: "latest",
117147
- i18next: "latest",
117148
- "i18next-browser-languagedetector": "latest",
117149
- "lucide-react": "latest",
117150
- react: "latest",
117151
- "react-dom": "latest",
117152
- "react-error-boundary": "latest",
117153
- "react-i18next": "latest",
117154
- "react-router-dom": "latest",
117155
- tailwindcss: "latest"
117141
+ "@microsoft/signalr": "^10.0.0",
117142
+ "@tailwindcss/vite": "^4.1.0",
117143
+ axios: "^1.13.0",
117144
+ clsx: "^2.1.0",
117145
+ i18next: "^25.0.0",
117146
+ "i18next-browser-languagedetector": "^8.0.0",
117147
+ "lucide-react": "^0.563.0",
117148
+ react: "^19.0.0",
117149
+ "react-dom": "^19.0.0",
117150
+ "react-error-boundary": "^6.0.0",
117151
+ "react-i18next": "^16.0.0",
117152
+ "react-router-dom": "^7.0.0",
117153
+ tailwindcss: "^4.1.0"
117156
117154
  },
117157
117155
  devDependencies: {
117158
- "@eslint/js": "latest",
117159
- "@types/node": "latest",
117160
- "@types/react": "latest",
117161
- "@types/react-dom": "latest",
117162
- "@vitejs/plugin-react": "latest",
117163
- eslint: "latest",
117164
- "eslint-plugin-react-hooks": "latest",
117165
- "eslint-plugin-react-refresh": "latest",
117166
- globals: "latest",
117167
- typescript: "latest",
117168
- "typescript-eslint": "latest",
117169
- vite: "latest"
117156
+ "@eslint/js": "^9.0.0",
117157
+ "@types/node": "^22.0.0",
117158
+ "@types/react": "^19.0.0",
117159
+ "@types/react-dom": "^19.0.0",
117160
+ "@vitejs/plugin-react": "^5.0.0",
117161
+ eslint: "^9.0.0",
117162
+ "eslint-plugin-react-hooks": "^7.0.0",
117163
+ "eslint-plugin-react-refresh": "^0.5.0",
117164
+ globals: "^16.0.0",
117165
+ typescript: "^5.7.0",
117166
+ "typescript-eslint": "^8.0.0",
117167
+ vite: "^7.0.0"
117170
117168
  }
117171
117169
  };
117172
117170
  const pkg_relPath = `${webRelPrefix}/package.json`;