@atlashub/smartstack-cli 1.11.0 → 1.12.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/.documentation/agents.html +7 -2
- package/.documentation/apex.html +7 -2
- package/.documentation/business-analyse.html +7 -2
- package/.documentation/cli-commands.html +871 -0
- package/.documentation/commands.html +7 -2
- package/.documentation/efcore.html +7 -2
- package/.documentation/gitflow.html +7 -2
- package/.documentation/hooks.html +7 -2
- package/.documentation/index.html +7 -2
- package/.documentation/init.html +7 -2
- package/.documentation/installation.html +7 -2
- package/.documentation/ralph-loop.html +7 -2
- package/.documentation/test-web.html +7 -2
- package/dist/index.js +1932 -336
- package/dist/index.js.map +1 -1
- package/package.json +8 -2
- package/templates/agents/efcore/squash.md +67 -31
- package/templates/agents/gitflow/finish.md +68 -56
- package/templates/commands/business-analyse/0-orchestrate.md +72 -556
- package/templates/commands/business-analyse/1-init.md +23 -193
- package/templates/commands/business-analyse/2-discover.md +85 -462
- package/templates/commands/business-analyse/3-analyse.md +40 -342
- package/templates/commands/business-analyse/4-specify.md +72 -537
- package/templates/commands/business-analyse/5-validate.md +43 -237
- package/templates/commands/business-analyse/6-handoff.md +93 -682
- package/templates/commands/business-analyse/7-doc-html.md +45 -544
- package/templates/commands/business-analyse/_shared.md +176 -0
- package/templates/commands/business-analyse/bug.md +50 -257
- package/templates/commands/business-analyse/change-request.md +59 -283
- package/templates/commands/business-analyse/hotfix.md +36 -120
- package/templates/commands/business-analyse.md +55 -574
- package/templates/commands/efcore/_shared.md +206 -0
- package/templates/commands/efcore/conflicts.md +39 -201
- package/templates/commands/efcore/db-deploy.md +28 -237
- package/templates/commands/efcore/db-reset.md +41 -390
- package/templates/commands/efcore/db-seed.md +44 -323
- package/templates/commands/efcore/db-status.md +31 -210
- package/templates/commands/efcore/migration.md +45 -368
- package/templates/commands/efcore/rebase-snapshot.md +38 -241
- package/templates/commands/efcore/scan.md +35 -204
- package/templates/commands/efcore/squash.md +158 -251
- package/templates/commands/efcore.md +49 -177
- package/templates/commands/gitflow/1-init.md +94 -1318
- package/templates/commands/gitflow/10-start.md +86 -990
- package/templates/commands/gitflow/11-finish.md +264 -454
- package/templates/commands/gitflow/12-cleanup.md +40 -213
- package/templates/commands/gitflow/2-status.md +51 -386
- package/templates/commands/gitflow/3-commit.md +108 -801
- package/templates/commands/gitflow/4-plan.md +42 -13
- package/templates/commands/gitflow/5-exec.md +60 -5
- package/templates/commands/gitflow/6-abort.md +54 -277
- package/templates/commands/gitflow/7-pull-request.md +74 -717
- package/templates/commands/gitflow/8-review.md +51 -178
- package/templates/commands/gitflow/9-merge.md +74 -404
- package/templates/commands/gitflow/_shared.md +196 -0
- package/templates/commands/quickstart.md +154 -0
- package/templates/commands/ralph-loop/ralph-loop.md +104 -2
- package/templates/hooks/hooks.json +13 -0
- package/templates/hooks/ralph-mcp-logger.sh +46 -0
- package/templates/hooks/ralph-session-end.sh +69 -0
- package/templates/ralph/README.md +91 -0
- package/templates/ralph/ralph.config.yaml +113 -0
- package/templates/scripts/setup-ralph-loop.sh +173 -0
- package/templates/skills/_shared.md +117 -0
- package/templates/skills/ai-prompt/SKILL.md +87 -654
- package/templates/skills/application/SKILL.md +76 -499
- package/templates/skills/controller/SKILL.md +38 -165
- package/templates/skills/documentation/SKILL.md +2 -1
- package/templates/skills/feature-full/SKILL.md +107 -732
- package/templates/skills/notification/SKILL.md +85 -474
- package/templates/skills/ui-components/SKILL.md +62 -762
- package/templates/skills/workflow/SKILL.md +85 -489
- package/templates/commands/gitflow/rescue.md +0 -867
- package/templates/skills/business-analyse/SKILL.md +0 -191
|
@@ -102,14 +102,19 @@
|
|
|
102
102
|
<span data-lang="fr">Outils</span>
|
|
103
103
|
<span data-lang="en">Tools</span>
|
|
104
104
|
</div>
|
|
105
|
+
<a href="cli-commands.html" class="nav-item">
|
|
106
|
+
<span class="icon">💻</span>
|
|
107
|
+
<span class="nav-text" data-lang="fr">CLI SmartStack</span>
|
|
108
|
+
<span class="nav-text" data-lang="en">SmartStack CLI</span>
|
|
109
|
+
</a>
|
|
105
110
|
<a href="agents.html" class="nav-item active">
|
|
106
111
|
<span class="icon">🤖</span>
|
|
107
112
|
<span class="nav-text">Agents</span>
|
|
108
113
|
</a>
|
|
109
114
|
<a href="commands.html" class="nav-item">
|
|
110
115
|
<span class="icon">⚡</span>
|
|
111
|
-
<span class="nav-text" data-lang="fr">Commandes</span>
|
|
112
|
-
<span class="nav-text" data-lang="en">Commands</span>
|
|
116
|
+
<span class="nav-text" data-lang="fr">Commandes Claude</span>
|
|
117
|
+
<span class="nav-text" data-lang="en">Claude Commands</span>
|
|
113
118
|
</a>
|
|
114
119
|
<a href="hooks.html" class="nav-item">
|
|
115
120
|
<span class="icon">🔗</span>
|
package/.documentation/apex.html
CHANGED
|
@@ -117,14 +117,19 @@
|
|
|
117
117
|
<span data-lang="fr">Outils</span>
|
|
118
118
|
<span data-lang="en">Tools</span>
|
|
119
119
|
</div>
|
|
120
|
+
<a href="cli-commands.html" class="nav-item">
|
|
121
|
+
<span class="icon">💻</span>
|
|
122
|
+
<span class="nav-text" data-lang="fr">CLI SmartStack</span>
|
|
123
|
+
<span class="nav-text" data-lang="en">SmartStack CLI</span>
|
|
124
|
+
</a>
|
|
120
125
|
<a href="agents.html" class="nav-item">
|
|
121
126
|
<span class="icon">🤖</span>
|
|
122
127
|
<span class="nav-text">Agents</span>
|
|
123
128
|
</a>
|
|
124
129
|
<a href="commands.html" class="nav-item">
|
|
125
130
|
<span class="icon">⚡</span>
|
|
126
|
-
<span class="nav-text" data-lang="fr">Commandes</span>
|
|
127
|
-
<span class="nav-text" data-lang="en">Commands</span>
|
|
131
|
+
<span class="nav-text" data-lang="fr">Commandes Claude</span>
|
|
132
|
+
<span class="nav-text" data-lang="en">Claude Commands</span>
|
|
128
133
|
</a>
|
|
129
134
|
<a href="hooks.html" class="nav-item">
|
|
130
135
|
<span class="icon">🔗</span>
|
|
@@ -134,14 +134,19 @@
|
|
|
134
134
|
<span data-lang="fr">Outils</span>
|
|
135
135
|
<span data-lang="en">Tools</span>
|
|
136
136
|
</div>
|
|
137
|
+
<a href="cli-commands.html" class="nav-item">
|
|
138
|
+
<span class="icon">💻</span>
|
|
139
|
+
<span class="nav-text" data-lang="fr">CLI SmartStack</span>
|
|
140
|
+
<span class="nav-text" data-lang="en">SmartStack CLI</span>
|
|
141
|
+
</a>
|
|
137
142
|
<a href="agents.html" class="nav-item">
|
|
138
143
|
<span class="icon">🤖</span>
|
|
139
144
|
<span class="nav-text">Agents</span>
|
|
140
145
|
</a>
|
|
141
146
|
<a href="commands.html" class="nav-item">
|
|
142
147
|
<span class="icon">⚡</span>
|
|
143
|
-
<span class="nav-text" data-lang="fr">Commandes</span>
|
|
144
|
-
<span class="nav-text" data-lang="en">Commands</span>
|
|
148
|
+
<span class="nav-text" data-lang="fr">Commandes Claude</span>
|
|
149
|
+
<span class="nav-text" data-lang="en">Claude Commands</span>
|
|
145
150
|
</a>
|
|
146
151
|
<a href="hooks.html" class="nav-item">
|
|
147
152
|
<span class="icon">🔗</span>
|