@atlashub/smartstack-cli 1.4.0 → 1.4.1
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 +916 -912
- package/.documentation/apex.html +1018 -1014
- package/.documentation/business-analyse.html +1501 -1074
- package/.documentation/commands.html +680 -676
- package/.documentation/css/styles.css +2168 -2030
- package/.documentation/efcore.html +2505 -2501
- package/.documentation/gitflow.html +2618 -2053
- package/.documentation/hooks.html +413 -409
- package/.documentation/index.html +323 -319
- package/.documentation/installation.html +462 -458
- package/.documentation/js/app.js +794 -794
- package/.documentation/ralph-loop.html +530 -0
- package/.documentation/test-web.html +513 -509
- package/README.md +52 -10
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/commands/create/agent.md +138 -0
- package/templates/commands/create/command.md +166 -0
- package/templates/commands/create/hook.md +234 -0
- package/templates/commands/create/plugin.md +329 -0
- package/templates/commands/create/project.md +507 -0
- package/templates/commands/create/skill.md +199 -0
- package/templates/commands/create.md +220 -0
package/README.md
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
|
-
# @smartstack
|
|
1
|
+
# @atlashub/smartstack-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@atlashub/smartstack-cli)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
SmartStack CLI v1.4.0 - Claude Code automation toolkit for GitFlow, APEX methodology, Business Analysis, EF Core migrations, and more.
|
|
4
7
|
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
```bash
|
|
8
11
|
# Install globally
|
|
9
|
-
npm install -g @smartstack
|
|
12
|
+
npm install -g @atlashub/smartstack-cli
|
|
10
13
|
|
|
11
14
|
# Install commands to Claude Code
|
|
12
15
|
smartstack install
|
|
16
|
+
|
|
17
|
+
# Or use the short alias
|
|
18
|
+
ss install
|
|
13
19
|
```
|
|
14
20
|
|
|
15
21
|
## Usage
|
|
@@ -45,14 +51,16 @@ After installation, the following commands are available in Claude Code:
|
|
|
45
51
|
|
|
46
52
|
### Business Analysis
|
|
47
53
|
|
|
48
|
-
- `/business-analyse` - Full BA workflow
|
|
49
|
-
- `/business-analyse:1-init` - Initialize structure
|
|
50
|
-
- `/business-analyse:2-discover` - Requirements elicitation
|
|
54
|
+
- `/business-analyse` - Full BA workflow with automatic orchestration
|
|
55
|
+
- `/business-analyse:1-init` - Initialize BA structure
|
|
56
|
+
- `/business-analyse:2-discover` - Requirements elicitation + similarity detection
|
|
51
57
|
- `/business-analyse:3-analyse` - Business analysis (BRD)
|
|
52
58
|
- `/business-analyse:4-specify` - Functional specification (FRD)
|
|
53
|
-
- `/business-analyse:5-validate` - User validation
|
|
54
|
-
- `/business-analyse:6-handoff` -
|
|
55
|
-
- `/business-analyse:7-
|
|
59
|
+
- `/business-analyse:5-validate` - User validation gate
|
|
60
|
+
- `/business-analyse:6-handoff` - Implementation brief (English)
|
|
61
|
+
- `/business-analyse:7-doc-html` - Auto-generated HTML documentation
|
|
62
|
+
- `/business-analyse:bug` - Bug resolution documentation
|
|
63
|
+
- `/business-analyse:change-request` - Change request during development
|
|
56
64
|
|
|
57
65
|
### EF Core Migrations
|
|
58
66
|
|
|
@@ -65,18 +73,38 @@ After installation, the following commands are available in Claude Code:
|
|
|
65
73
|
- `/efcore:scan` - Scan migrations across branches
|
|
66
74
|
- `/efcore:conflicts` - Detect conflicts
|
|
67
75
|
- `/efcore:rebase-snapshot` - Rebase ModelSnapshot
|
|
76
|
+
- `/efcore:squash` - Squash multiple migrations
|
|
77
|
+
|
|
78
|
+
### Prompts & Tools
|
|
79
|
+
|
|
80
|
+
- `/prompts:create` - Expert prompt creation
|
|
81
|
+
- `/prompts:agent` - Agent prompt optimization
|
|
82
|
+
- `/prompts:command` - Command prompt patterns
|
|
83
|
+
- `/prompts:claude-memory` - CLAUDE.md file management
|
|
84
|
+
|
|
85
|
+
### Ralph Loop (v1.4.0)
|
|
86
|
+
|
|
87
|
+
- `/ralph-loop` - Start autonomous Ralph Loop session
|
|
88
|
+
- `/ralph-loop:cancel-ralph` - Cancel active Ralph Loop
|
|
89
|
+
- `/ralph-loop:help` - Ralph Loop documentation
|
|
90
|
+
|
|
91
|
+
### Quick Search
|
|
92
|
+
|
|
93
|
+
- `/quick-search` - Lightning-fast codebase search
|
|
68
94
|
|
|
69
95
|
## CLI Commands
|
|
70
96
|
|
|
71
97
|
```bash
|
|
72
98
|
# Install commands globally
|
|
73
99
|
smartstack install
|
|
100
|
+
ss install # Short alias
|
|
74
101
|
|
|
75
|
-
# Install to current project
|
|
102
|
+
# Install to current project only
|
|
76
103
|
smartstack install --local
|
|
77
104
|
|
|
78
105
|
# Show installation status
|
|
79
106
|
smartstack status
|
|
107
|
+
smartstack status --verbose
|
|
80
108
|
|
|
81
109
|
# Update to latest version
|
|
82
110
|
smartstack update
|
|
@@ -85,6 +113,20 @@ smartstack update
|
|
|
85
113
|
smartstack uninstall
|
|
86
114
|
```
|
|
87
115
|
|
|
116
|
+
## What's New in v1.4.0
|
|
117
|
+
|
|
118
|
+
- **Ralph Loop Integration**: Fully automated BA orchestration with Ralph Loop framework
|
|
119
|
+
- **License Generator**: New license protection system for commercial features
|
|
120
|
+
- **Documentation Overhaul**: Redesigned BA workflow diagrams, improved SVG rendering
|
|
121
|
+
- **Prompts System**: New prompt creation and optimization tools
|
|
122
|
+
- **Quick Search**: Lightning-fast codebase exploration
|
|
123
|
+
|
|
124
|
+
## Documentation
|
|
125
|
+
|
|
126
|
+
Full documentation is available at:
|
|
127
|
+
- [GitFlow Documentation](.documentation/gitflow.html)
|
|
128
|
+
- [Business Analysis Documentation](.documentation/business-analyse.html)
|
|
129
|
+
|
|
88
130
|
## License
|
|
89
131
|
|
|
90
132
|
MIT
|
package/dist/index.js
CHANGED
|
@@ -42009,12 +42009,12 @@ var fs3 = __toESM(require_lib());
|
|
|
42009
42009
|
var path2 = __toESM(require("path"));
|
|
42010
42010
|
var os3 = __toESM(require("os"));
|
|
42011
42011
|
var PUBLIC_KEY = `-----BEGIN PUBLIC KEY-----
|
|
42012
|
-
|
|
42013
|
-
|
|
42014
|
-
|
|
42015
|
-
|
|
42016
|
-
|
|
42017
|
-
|
|
42012
|
+
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3Rgy76bx4SPse6vSnduR
|
|
42013
|
+
OSv8YOk/8lGSK6/a+1cxyppsymCR8p/+yxzLl+phbCtm4qPhrp4K8BFVyyCw0uhG
|
|
42014
|
+
xWyHzXvlbVfEO0YG5Ug5B3NVFr9/QaAHV1lVHgahxVFCglJZj7yVbFOY4uSpWNNg
|
|
42015
|
+
bQj3H9lV50R5F7vmmB+N7kmgq1jVtaED3N6hnuybQoV/yJFdyf8KMMQgrndmh//l
|
|
42016
|
+
csxveQKoRdG8wCb3BY4//8F0qLz21lqwPIM+cGZhUM1+ycYvC7HEke5xMxy6cCAS
|
|
42017
|
+
6Xwvxno/Ml8D2sXTBLNMt8JVFwoAuDohz3xdpxjfJDvzgwSH0bCLF7TOzEGRJF+s
|
|
42018
42018
|
GwIDAQAB
|
|
42019
42019
|
-----END PUBLIC KEY-----`;
|
|
42020
42020
|
var ISSUER = "atlashub.io";
|