@atlashub/smartstack-cli 3.5.0 → 3.7.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 +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/skills/business-analyse/SKILL.md +24 -19
- package/templates/skills/business-analyse/_architecture.md +1 -1
- package/templates/skills/business-analyse/_elicitation.md +1 -1
- package/templates/skills/business-analyse/_module-loop.md +4 -4
- package/templates/skills/business-analyse/html/ba-interactive.html +39 -10
- package/templates/skills/business-analyse/questionnaire/06-security.md +1 -1
- package/templates/skills/business-analyse/questionnaire.md +2 -2
- package/templates/skills/business-analyse/references/html-data-mapping.md +3 -2
- package/templates/skills/business-analyse/schemas/feature-schema.json +1 -1
- package/templates/skills/business-analyse/schemas/sections/analysis-schema.json +1 -1
- package/templates/skills/business-analyse/schemas/sections/metadata-schema.json +1 -0
- package/templates/skills/business-analyse/schemas/sections/specification-schema.json +1 -1
- package/templates/skills/business-analyse/steps/step-00-init.md +37 -1
- package/templates/skills/business-analyse/steps/step-01-cadrage.md +166 -6
- package/templates/skills/business-analyse/steps/step-02-decomposition.md +4 -4
- package/templates/skills/business-analyse/steps/{step-03a-specify.md → step-03a-data.md} +10 -359
- package/templates/skills/business-analyse/steps/step-03b-ui.md +414 -0
- package/templates/skills/business-analyse/steps/step-03c-compile.md +343 -0
- package/templates/skills/business-analyse/steps/{step-03b-compile.md → step-03d-validate.md} +26 -308
- package/templates/skills/business-analyse/steps/step-04-consolidation.md +23 -2
- package/templates/skills/business-analyse/steps/step-05a-handoff.md +66 -46
- package/templates/skills/business-analyse/steps/step-05b-deploy.md +262 -212
- package/templates/skills/business-analyse/templates/tpl-frd.md +1 -1
- package/templates/skills/business-analyse/templates/tpl-launch-displays.md +1 -1
- package/templates/skills/controller/steps/step-03-generate.md +2 -1
- package/templates/skills/ralph-loop/SKILL.md +20 -5
- package/templates/skills/ralph-loop/references/core-seed-data.md +538 -0
- package/templates/skills/ralph-loop/steps/step-00-init.md +79 -1
- package/templates/skills/ralph-loop/steps/step-01-task.md +25 -2
- package/templates/skills/ralph-loop/steps/step-02-execute.md +39 -15
- package/templates/skills/ralph-loop/steps/step-04-check.md +87 -4
package/dist/index.js
CHANGED
|
@@ -117039,6 +117039,19 @@ Generated with [SmartStack CLI](https://atlashub.io/products/smartstack-cli)
|
|
|
117039
117039
|
const result7 = await safeWriteFile((0, import_path6.join)(projectDir, relPath7), readme, findKnownHash(state, "config", relPath7));
|
|
117040
117040
|
logSafeWriteResult(relPath7, result7);
|
|
117041
117041
|
recordFile(state, "config", relPath7, result7.hash);
|
|
117042
|
+
const claudeSettingsTemplatePath = (0, import_path6.join)(TEMPLATES_DIR2, "claude-settings.json.template");
|
|
117043
|
+
if (await import_fs_extra5.default.pathExists(claudeSettingsTemplatePath)) {
|
|
117044
|
+
await import_fs_extra5.default.ensureDir((0, import_path6.join)(projectDir, ".claude"));
|
|
117045
|
+
const claudeSettingsContent = await import_fs_extra5.default.readFile(claudeSettingsTemplatePath, "utf-8");
|
|
117046
|
+
const relPath8 = ".claude/settings.json";
|
|
117047
|
+
const result8 = await safeWriteFile(
|
|
117048
|
+
(0, import_path6.join)(projectDir, relPath8),
|
|
117049
|
+
claudeSettingsContent,
|
|
117050
|
+
findKnownHash(state, "config", relPath8)
|
|
117051
|
+
);
|
|
117052
|
+
logSafeWriteResult(relPath8, result8);
|
|
117053
|
+
recordFile(state, "config", relPath8, result8.hash);
|
|
117054
|
+
}
|
|
117042
117055
|
}
|
|
117043
117056
|
async function createFrontendStructure(config, state, dryRun) {
|
|
117044
117057
|
const { name } = config;
|