@atlashub/smartstack-cli 3.35.0 → 3.37.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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/mcp-entry.mjs +111 -46
- package/dist/mcp-entry.mjs.map +1 -1
- package/package.json +3 -2
- package/scripts/extract-api-endpoints.ts +325 -0
- package/scripts/extract-business-rules.ts +440 -0
- package/scripts/generate-doc-with-mock-ui.ts +811 -0
- package/scripts/health-check.sh +168 -0
- package/scripts/postinstall.js +18 -0
- package/templates/skills/apex/SKILL.md +3 -0
- package/templates/skills/apex/steps/step-00-init.md +4 -1
- package/templates/skills/apex/steps/step-03-execute.md +22 -0
- package/templates/skills/documentation/SKILL.md +175 -9
- package/templates/skills/efcore/steps/squash/step-03-create.md +6 -4
- package/templates/skills/gitflow/_shared.md +3 -1
- package/templates/skills/gitflow/steps/step-pr.md +34 -0
- package/templates/skills/ralph-loop/SKILL.md +26 -2
- package/templates/skills/ralph-loop/references/team-orchestration.md +331 -14
- package/templates/skills/ralph-loop/steps/step-00-init.md +4 -0
- package/templates/skills/ralph-loop/steps/step-02-execute.md +163 -2
package/dist/index.js
CHANGED
|
@@ -116791,13 +116791,14 @@ EndGlobal
|
|
|
116791
116791
|
}
|
|
116792
116792
|
];
|
|
116793
116793
|
const smartstackVersion = config.smartStackVersion || null;
|
|
116794
|
-
const prereleaseFlag = config.preview ? " --prerelease" : "";
|
|
116795
116794
|
for (const { project, packages } of nugetPackages) {
|
|
116796
116795
|
for (const pkg2 of packages) {
|
|
116797
116796
|
if (pkg2 === "SmartStack" && smartstackVersion) {
|
|
116798
116797
|
execCommand(`dotnet add "${(0, import_path7.join)(srcDir, project)}" package ${pkg2} --version ${smartstackVersion}`, void 0, dryRun);
|
|
116798
|
+
} else if (pkg2 === "SmartStack" && config.preview) {
|
|
116799
|
+
execCommand(`dotnet add "${(0, import_path7.join)(srcDir, project)}" package ${pkg2} --prerelease`, void 0, dryRun);
|
|
116799
116800
|
} else {
|
|
116800
|
-
execCommand(`dotnet add "${(0, import_path7.join)(srcDir, project)}" package ${pkg2}
|
|
116801
|
+
execCommand(`dotnet add "${(0, import_path7.join)(srcDir, project)}" package ${pkg2}`, void 0, dryRun);
|
|
116801
116802
|
}
|
|
116802
116803
|
}
|
|
116803
116804
|
}
|