@atlashub/smartstack-cli 1.2.0 → 1.4.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 +7 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/commands/business-analyse/0-orchestrate.md +640 -0
- package/templates/commands/business-analyse.md +84 -3
- package/templates/commands/ralph-loop/cancel-ralph.md +18 -0
- package/templates/commands/ralph-loop/help.md +126 -0
- package/templates/commands/ralph-loop/ralph-loop.md +18 -0
- package/templates/hooks/hooks.json +10 -0
- package/templates/hooks/stop-hook.sh +177 -0
package/dist/index.js
CHANGED
|
@@ -38996,9 +38996,7 @@ var import_fs_extra = __toESM(require_lib());
|
|
|
38996
38996
|
var PACKAGE_ROOT = (0, import_path.join)(__dirname, "..");
|
|
38997
38997
|
var TEMPLATES_DIR = (0, import_path.join)(PACKAGE_ROOT, "templates");
|
|
38998
38998
|
var INSTALL_DIRS = ["commands", "agents", "hooks"];
|
|
38999
|
-
var DEFAULT_PLUGINS = [
|
|
39000
|
-
{ name: "ralph-loop", marketplace: "claude-plugins-official" }
|
|
39001
|
-
];
|
|
38999
|
+
var DEFAULT_PLUGINS = [];
|
|
39002
39000
|
function getClaudeDir(global3) {
|
|
39003
39001
|
if (global3) {
|
|
39004
39002
|
return (0, import_path.join)((0, import_os.homedir)(), ".claude");
|
|
@@ -39118,7 +39116,8 @@ async function uninstallCommands(options = {}) {
|
|
|
39118
39116
|
"oneshot.md",
|
|
39119
39117
|
"quick-search.md",
|
|
39120
39118
|
"review.md",
|
|
39121
|
-
"implement.md"
|
|
39119
|
+
"implement.md",
|
|
39120
|
+
"ralph-loop"
|
|
39122
39121
|
];
|
|
39123
39122
|
for (const item of ourDirs) {
|
|
39124
39123
|
const itemPath = (0, import_path.join)(targetDir, item);
|
|
@@ -39483,6 +39482,10 @@ var installCommand = new Command("install").alias("i").description("Install Smar
|
|
|
39483
39482
|
source_default.bold("EF Core:"),
|
|
39484
39483
|
` ${source_default.cyan("/efcore")} - EF Core orchestrator`,
|
|
39485
39484
|
` ${source_default.cyan("/efcore:migration")} - Migration management`,
|
|
39485
|
+
"",
|
|
39486
|
+
source_default.bold("Ralph Loop:"),
|
|
39487
|
+
` ${source_default.cyan("/ralph-loop")} - Start iterative loop`,
|
|
39488
|
+
` ${source_default.cyan("/cancel-ralph")} - Cancel active loop`,
|
|
39486
39489
|
...pluginSummary
|
|
39487
39490
|
];
|
|
39488
39491
|
logger.box(summary, "success");
|