@atlashub/smartstack-cli 4.6.0 → 4.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/mcp-entry.mjs +24 -0
- package/dist/mcp-entry.mjs.map +1 -1
- package/package.json +1 -1
- package/templates/skills/apex/references/frontend-route-wiring-app-tsx.md +139 -0
- package/templates/skills/cli-app-sync/SKILL.md +272 -0
- package/templates/skills/cli-app-sync/references/comparison-map.md +228 -0
- package/templates/skills/gitflow/SKILL.md +5 -0
- package/templates/skills/gitflow/steps/step-init.md +19 -0
|
@@ -121,6 +121,21 @@ Store paths as `D:/path/to/folder` format.
|
|
|
121
121
|
Spawn `Task(gitflow-init-validate)` (haiku) to verify structure.
|
|
122
122
|
Checks: .bare/HEAD, worktree branches, directories, config file.
|
|
123
123
|
|
|
124
|
+
### 10b. SmartStack Project Initialization (conditional)
|
|
125
|
+
|
|
126
|
+
**Skip if `--smartstack` flag was NOT provided.**
|
|
127
|
+
|
|
128
|
+
After git structure is ready, initialize the SmartStack project in the develop worktree:
|
|
129
|
+
|
|
130
|
+
1. Navigate to the develop worktree: `{DEVELOP_WORKTREE_PATH}`
|
|
131
|
+
2. Run `smartstack init {PROJECT_NAME} --here`
|
|
132
|
+
- `--here` flag initializes in the current directory (no subdirectory creation)
|
|
133
|
+
- This creates: .NET solution, frontend project, .smartstack/config.json
|
|
134
|
+
3. Run `smartstack install --local`
|
|
135
|
+
- Deploys skills, agents, hooks to `.claude/` in the project
|
|
136
|
+
4. If init fails, display error but do NOT fail the entire gitflow init
|
|
137
|
+
- The git structure is still valid and usable
|
|
138
|
+
|
|
124
139
|
### 11. Summary
|
|
125
140
|
|
|
126
141
|
```
|
|
@@ -145,6 +160,10 @@ Checks: .bare/HEAD, worktree branches, directories, config file.
|
|
|
145
160
|
╠══════════════════════════════════════════════════════════════════╣
|
|
146
161
|
║ Validation: {ERRORS == 0 ? "ALL CHECKS PASSED" : "errors"} ║
|
|
147
162
|
╠══════════════════════════════════════════════════════════════════╣
|
|
163
|
+
{if SMARTSTACK_INIT}
|
|
164
|
+
║ SmartStack: Initialized (backend + frontend) ✅ ║
|
|
165
|
+
╠══════════════════════════════════════════════════════════════════╣
|
|
166
|
+
{endif}
|
|
148
167
|
{if SIBLING_PROJECTS not empty}
|
|
149
168
|
║ Workspace: {WORKSPACE_DIR} ║
|
|
150
169
|
║ GitFlow projects: {#SIBLING_PROJECTS + 1} (including this one) ║
|