@atlashub/smartstack-cli 3.23.0 → 3.25.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 +5 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp-entry.mjs +96 -24
- package/dist/mcp-entry.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/mcp-scaffolding/component.tsx.hbs +21 -1
- package/templates/skills/apex/references/smartstack-api.md +174 -5
- package/templates/skills/apex/references/smartstack-frontend.md +1101 -0
- package/templates/skills/apex/references/smartstack-layers.md +81 -5
- package/templates/skills/apex/steps/step-01-analyze.md +27 -3
- package/templates/skills/apex/steps/step-02-plan.md +5 -1
- package/templates/skills/apex/steps/step-03-execute.md +47 -5
- package/templates/skills/apex/steps/step-04-validate.md +300 -0
- package/templates/skills/apex/steps/step-05-examine.md +7 -0
- package/templates/skills/apex/steps/step-07-tests.md +19 -0
- package/templates/skills/business-analyse/_shared.md +6 -6
- package/templates/skills/business-analyse/patterns/suggestion-catalog.md +1 -1
- package/templates/skills/business-analyse/questionnaire/07-ui.md +3 -3
- package/templates/skills/business-analyse/references/cadrage-pre-analysis.md +1 -1
- package/templates/skills/business-analyse/references/entity-architecture-decision.md +3 -3
- package/templates/skills/business-analyse/references/handoff-file-templates.md +13 -5
- package/templates/skills/business-analyse/references/spec-auto-inference.md +14 -14
- package/templates/skills/business-analyse/steps/step-01-cadrage.md +2 -2
- package/templates/skills/business-analyse/steps/step-02-decomposition.md +1 -1
- package/templates/skills/business-analyse/steps/step-03a1-setup.md +2 -2
- package/templates/skills/business-analyse/steps/step-03b-ui.md +2 -1
- package/templates/skills/business-analyse/steps/step-05a-handoff.md +15 -4
- package/templates/skills/business-analyse/templates/tpl-frd.md +2 -2
- package/templates/skills/business-analyse/templates-frd.md +2 -2
- package/templates/skills/efcore/steps/migration/step-02-create.md +14 -1
- package/templates/skills/ralph-loop/references/category-rules.md +71 -9
- package/templates/skills/ralph-loop/references/compact-loop.md +3 -3
- package/templates/skills/ralph-loop/references/core-seed-data.md +10 -0
- package/templates/skills/ralph-loop/steps/step-02-execute.md +190 -1
- package/templates/skills/validate-feature/steps/step-01-compile.md +4 -1
- package/templates/skills/validate-feature/steps/step-05-db-validation.md +86 -1
package/dist/index.js
CHANGED
|
@@ -116901,6 +116901,10 @@ obj/
|
|
|
116901
116901
|
*.suo
|
|
116902
116902
|
.vs/
|
|
116903
116903
|
|
|
116904
|
+
## EF Core design-time artifacts (Roslyn BuildHost creates corrupted bin folders on Windows)
|
|
116905
|
+
**/bin?Debug/
|
|
116906
|
+
**/bin[!a-zA-Z0-9/\\\\]Debug/
|
|
116907
|
+
|
|
116904
116908
|
## Node
|
|
116905
116909
|
node_modules/
|
|
116906
116910
|
dist/
|
|
@@ -117436,6 +117440,7 @@ export default App;
|
|
|
117436
117440
|
logSafeWriteResult(app_relPath, app_result);
|
|
117437
117441
|
recordFile(state, "frontend", app_relPath, app_result.hash);
|
|
117438
117442
|
const indexCss = `@import "tailwindcss";
|
|
117443
|
+
@source "../node_modules/@atlashub/smartstack/dist/**/*.js";
|
|
117439
117444
|
`;
|
|
117440
117445
|
const css_relPath = `${webRelPrefix}/src/index.css`;
|
|
117441
117446
|
const css_result = await safeWriteFile((0, import_path7.join)(webDir, "src", "index.css"), indexCss, findKnownHash(state, "frontend", css_relPath));
|