@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.
- package/dist/index.js +26 -28
- package/dist/index.js.map +1 -1
- package/dist/mcp-entry.mjs +626 -141
- package/dist/mcp-entry.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/agents/efcore/migration.md +15 -0
- package/templates/skills/apex/steps/step-04-validate.md +64 -5
- package/templates/skills/application/references/frontend-verification.md +20 -0
- package/templates/skills/application/steps/step-04-backend.md +17 -1
- package/templates/skills/application/steps/step-05-frontend.md +49 -23
- package/templates/skills/application/templates-seed.md +14 -4
- package/templates/skills/business-analyse/html/ba-interactive.html +165 -0
- package/templates/skills/business-analyse/html/src/scripts/01-data-init.js +2 -0
- package/templates/skills/business-analyse/html/src/scripts/06-render-consolidation.js +85 -0
- package/templates/skills/business-analyse/html/src/styles/05-modules.css +65 -0
- package/templates/skills/business-analyse/html/src/template.html +13 -0
- package/templates/skills/business-analyse/schemas/application-schema.json +5 -0
- package/templates/skills/business-analyse/schemas/sections/metadata-schema.json +1 -0
- package/templates/skills/business-analyse/steps/step-01-cadrage.md +90 -0
- package/templates/skills/business-analyse/steps/step-02-decomposition.md +4 -0
- package/templates/skills/business-analyse/steps/step-03a1-setup.md +39 -0
- package/templates/skills/efcore/steps/shared/step-00-init.md +55 -0
- package/templates/skills/ralph-loop/SKILL.md +1 -0
- package/templates/skills/ralph-loop/references/category-rules.md +131 -27
- package/templates/skills/ralph-loop/references/compact-loop.md +61 -3
- package/templates/skills/ralph-loop/references/core-seed-data.md +251 -5
- package/templates/skills/ralph-loop/references/error-classification.md +143 -0
- package/templates/skills/ralph-loop/steps/step-05-report.md +54 -0
- package/templates/skills/review-code/references/smartstack-conventions.md +16 -0
- package/templates/skills/validate-feature/SKILL.md +11 -1
- package/templates/skills/validate-feature/steps/step-00-dependencies.md +121 -0
- package/templates/skills/validate-feature/steps/step-04-api-smoke.md +61 -13
- 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("
|
|
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": "
|
|
117144
|
-
"@tailwindcss/vite": "
|
|
117145
|
-
axios: "
|
|
117146
|
-
clsx: "
|
|
117147
|
-
i18next: "
|
|
117148
|
-
"i18next-browser-languagedetector": "
|
|
117149
|
-
"lucide-react": "
|
|
117150
|
-
react: "
|
|
117151
|
-
"react-dom": "
|
|
117152
|
-
"react-error-boundary": "
|
|
117153
|
-
"react-i18next": "
|
|
117154
|
-
"react-router-dom": "
|
|
117155
|
-
tailwindcss: "
|
|
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": "
|
|
117159
|
-
"@types/node": "
|
|
117160
|
-
"@types/react": "
|
|
117161
|
-
"@types/react-dom": "
|
|
117162
|
-
"@vitejs/plugin-react": "
|
|
117163
|
-
eslint: "
|
|
117164
|
-
"eslint-plugin-react-hooks": "
|
|
117165
|
-
"eslint-plugin-react-refresh": "
|
|
117166
|
-
globals: "
|
|
117167
|
-
typescript: "
|
|
117168
|
-
"typescript-eslint": "
|
|
117169
|
-
vite: "
|
|
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`;
|