@atlashub/smartstack-cli 1.3.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/business-analyse/0-orchestrate.md +640 -0
- package/templates/commands/business-analyse.md +84 -3
- 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
|
@@ -0,0 +1,329 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create a complete SmartStack plugin with all extension types
|
|
3
|
+
argument-hint: <name> [description]
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Create Plugin Extension
|
|
7
|
+
|
|
8
|
+
Scaffold a complete SmartStack **plugin** with command, agent, skill, and hook.
|
|
9
|
+
|
|
10
|
+
## What is a Plugin?
|
|
11
|
+
|
|
12
|
+
A plugin is a full-featured extension package containing:
|
|
13
|
+
- **Command**: Main entry point for users
|
|
14
|
+
- **Agent**: Specialized execution unit
|
|
15
|
+
- **Skill**: Multi-phase workflow
|
|
16
|
+
- **Hook**: Validation trigger
|
|
17
|
+
|
|
18
|
+
## Arguments
|
|
19
|
+
|
|
20
|
+
Parse from `$ARGUMENTS`:
|
|
21
|
+
- **name** (required): Plugin name in kebab-case
|
|
22
|
+
- **description** (optional): What the plugin does
|
|
23
|
+
|
|
24
|
+
## Project Structure
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
smartstack-{name}/
|
|
28
|
+
├── package.json
|
|
29
|
+
├── tsconfig.json
|
|
30
|
+
├── tsup.config.ts
|
|
31
|
+
├── README.md
|
|
32
|
+
├── .gitignore
|
|
33
|
+
├── LICENSE
|
|
34
|
+
├── src/
|
|
35
|
+
│ └── index.ts
|
|
36
|
+
├── templates/
|
|
37
|
+
│ ├── commands/
|
|
38
|
+
│ │ ├── {name}.md # Main command
|
|
39
|
+
│ │ └── {name}/
|
|
40
|
+
│ │ ├── analyze.md # Sub-command
|
|
41
|
+
│ │ └── execute.md # Sub-command
|
|
42
|
+
│ ├── agents/
|
|
43
|
+
│ │ └── {name}.md # Plugin agent
|
|
44
|
+
│ ├── skills/
|
|
45
|
+
│ │ └── {name}/
|
|
46
|
+
│ │ ├── SKILL.md # Skill definition
|
|
47
|
+
│ │ ├── 1-setup.md
|
|
48
|
+
│ │ ├── 2-analyze.md
|
|
49
|
+
│ │ ├── 3-execute.md
|
|
50
|
+
│ │ └── templates.md
|
|
51
|
+
│ └── hooks/
|
|
52
|
+
│ └── {name}-check.md # Plugin hook
|
|
53
|
+
└── examples/
|
|
54
|
+
└── usage.md # Usage examples
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Generated Files
|
|
58
|
+
|
|
59
|
+
### Main Command (templates/commands/{name}.md)
|
|
60
|
+
|
|
61
|
+
```markdown
|
|
62
|
+
---
|
|
63
|
+
description: {description}
|
|
64
|
+
argument-hint: <task> [options]
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
# {PascalCaseName}
|
|
68
|
+
|
|
69
|
+
{description}
|
|
70
|
+
|
|
71
|
+
## Available Sub-Commands
|
|
72
|
+
|
|
73
|
+
| Command | Description |
|
|
74
|
+
|---------|-------------|
|
|
75
|
+
| `/{name}` | Run default workflow |
|
|
76
|
+
| `/{name}:analyze` | Analysis only |
|
|
77
|
+
| `/{name}:execute` | Execution only |
|
|
78
|
+
|
|
79
|
+
## Quick Start
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
/{name} <your-task>
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Workflow
|
|
86
|
+
|
|
87
|
+
### 1. ANALYZE
|
|
88
|
+
Launch `{name}` agent for exploration.
|
|
89
|
+
|
|
90
|
+
### 2. PLAN
|
|
91
|
+
Design approach based on analysis.
|
|
92
|
+
|
|
93
|
+
### 3. EXECUTE
|
|
94
|
+
Implement using skill phases.
|
|
95
|
+
|
|
96
|
+
### 4. VALIDATE
|
|
97
|
+
Verify with `{name}-check` hook.
|
|
98
|
+
|
|
99
|
+
## Priority
|
|
100
|
+
|
|
101
|
+
Quality > Speed > Cost
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
User: $ARGUMENTS
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Plugin Agent (templates/agents/{name}.md)
|
|
109
|
+
|
|
110
|
+
```markdown
|
|
111
|
+
---
|
|
112
|
+
name: {name}
|
|
113
|
+
description: Agent for {name} operations
|
|
114
|
+
color: cyan
|
|
115
|
+
model: sonnet
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
# {PascalCaseName} Agent
|
|
119
|
+
|
|
120
|
+
Specialized agent for {name} analysis and execution.
|
|
121
|
+
|
|
122
|
+
## Capabilities
|
|
123
|
+
|
|
124
|
+
1. **Discovery**: Find relevant files and patterns
|
|
125
|
+
2. **Analysis**: Deep code analysis
|
|
126
|
+
3. **Recommendations**: Actionable suggestions
|
|
127
|
+
|
|
128
|
+
## Search Strategy
|
|
129
|
+
|
|
130
|
+
1. Use `Glob` for file discovery
|
|
131
|
+
2. Use `Grep` for pattern matching
|
|
132
|
+
3. Use `Read` for detailed analysis
|
|
133
|
+
|
|
134
|
+
## Output Format
|
|
135
|
+
|
|
136
|
+
### Analysis Report
|
|
137
|
+
|
|
138
|
+
#### Files Analyzed
|
|
139
|
+
[List of relevant files]
|
|
140
|
+
|
|
141
|
+
#### Findings
|
|
142
|
+
[Detailed findings]
|
|
143
|
+
|
|
144
|
+
#### Recommendations
|
|
145
|
+
[Actionable recommendations]
|
|
146
|
+
|
|
147
|
+
## Priority
|
|
148
|
+
|
|
149
|
+
Accuracy > Completeness > Speed
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### Plugin Skill (templates/skills/{name}/SKILL.md)
|
|
153
|
+
|
|
154
|
+
```markdown
|
|
155
|
+
---
|
|
156
|
+
name: {name}
|
|
157
|
+
description: Multi-phase workflow for {name}
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
# {PascalCaseName} Skill
|
|
161
|
+
|
|
162
|
+
## Phases
|
|
163
|
+
|
|
164
|
+
| Phase | Command | Model | Cost |
|
|
165
|
+
|-------|---------|-------|------|
|
|
166
|
+
| 1 | `/{name}:1-setup` | Haiku | ~$0.02 |
|
|
167
|
+
| 2 | `/{name}:2-analyze` | Sonnet | ~$0.10 |
|
|
168
|
+
| 3 | `/{name}:3-execute` | Opus | ~$0.30 |
|
|
169
|
+
|
|
170
|
+
## Workflow
|
|
171
|
+
|
|
172
|
+
```
|
|
173
|
+
┌──────────┐ ┌──────────┐ ┌──────────┐
|
|
174
|
+
│ SETUP │ ──▶ │ ANALYZE │ ──▶ │ EXECUTE │
|
|
175
|
+
└──────────┘ └──────────┘ └──────────┘
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## Usage
|
|
179
|
+
|
|
180
|
+
```
|
|
181
|
+
/{name} # Full workflow
|
|
182
|
+
/{name}:1-setup # Setup only
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## Priority
|
|
186
|
+
|
|
187
|
+
Quality > Cost > Speed
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### Plugin Hook (templates/hooks/{name}-check.md)
|
|
191
|
+
|
|
192
|
+
```markdown
|
|
193
|
+
---
|
|
194
|
+
description: Validation hook for {name}
|
|
195
|
+
trigger: pre-commit
|
|
196
|
+
blocking: true
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
# {PascalCaseName} Check Hook
|
|
200
|
+
|
|
201
|
+
Validates {name} operations before commit.
|
|
202
|
+
|
|
203
|
+
## Patterns
|
|
204
|
+
|
|
205
|
+
### BLOCKING
|
|
206
|
+
- `DANGEROUS_PATTERN` - Prevents commit
|
|
207
|
+
|
|
208
|
+
### WARNING
|
|
209
|
+
- `MILD_CONCERN` - Logs warning
|
|
210
|
+
|
|
211
|
+
## Integration
|
|
212
|
+
|
|
213
|
+
Runs automatically in `/gitflow:3-commit`.
|
|
214
|
+
|
|
215
|
+
## Bypass
|
|
216
|
+
|
|
217
|
+
```bash
|
|
218
|
+
SKIP_{NAME_UPPER}_CHECK_HOOK=1 git commit
|
|
219
|
+
```
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### package.json
|
|
223
|
+
|
|
224
|
+
```json
|
|
225
|
+
{
|
|
226
|
+
"name": "@smartstack/{name}",
|
|
227
|
+
"version": "1.0.0",
|
|
228
|
+
"description": "{description}",
|
|
229
|
+
"author": "AtlasHub",
|
|
230
|
+
"license": "MIT",
|
|
231
|
+
"type": "module",
|
|
232
|
+
"main": "./dist/index.js",
|
|
233
|
+
"files": ["dist", "templates"],
|
|
234
|
+
"scripts": {
|
|
235
|
+
"build": "tsup",
|
|
236
|
+
"dev": "tsup --watch"
|
|
237
|
+
},
|
|
238
|
+
"peerDependencies": {
|
|
239
|
+
"@atlashub/smartstack-cli": ">=1.0.0"
|
|
240
|
+
},
|
|
241
|
+
"keywords": ["smartstack", "claude", "extension", "{name}"]
|
|
242
|
+
}
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### README.md
|
|
246
|
+
|
|
247
|
+
```markdown
|
|
248
|
+
# SmartStack {PascalCaseName} Plugin
|
|
249
|
+
|
|
250
|
+
{description}
|
|
251
|
+
|
|
252
|
+
## Installation
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
npm install @smartstack/{name}
|
|
256
|
+
smartstack install --extension @smartstack/{name}
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
## Components
|
|
260
|
+
|
|
261
|
+
| Type | Command | Description |
|
|
262
|
+
|------|---------|-------------|
|
|
263
|
+
| Command | `/{name}` | Main entry point |
|
|
264
|
+
| Agent | `{name}` | Analysis agent |
|
|
265
|
+
| Skill | `/{name}:*` | Multi-phase workflow |
|
|
266
|
+
| Hook | `{name}-check` | Validation |
|
|
267
|
+
|
|
268
|
+
## Usage
|
|
269
|
+
|
|
270
|
+
```
|
|
271
|
+
/{name} <your-task>
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
## License
|
|
275
|
+
|
|
276
|
+
MIT
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
## Workflow
|
|
280
|
+
|
|
281
|
+
1. Parse name and description from `$ARGUMENTS`
|
|
282
|
+
2. Validate name format (kebab-case)
|
|
283
|
+
3. Create complete directory structure
|
|
284
|
+
4. Generate all component files:
|
|
285
|
+
- Command + sub-commands
|
|
286
|
+
- Agent
|
|
287
|
+
- Skill + phases
|
|
288
|
+
- Hook
|
|
289
|
+
5. Generate package.json, README, etc.
|
|
290
|
+
6. Display success message with component list
|
|
291
|
+
|
|
292
|
+
## Validation
|
|
293
|
+
|
|
294
|
+
Before creating:
|
|
295
|
+
- Name must be kebab-case
|
|
296
|
+
- Directory must not exist
|
|
297
|
+
- All paths must be valid
|
|
298
|
+
|
|
299
|
+
## Success Output
|
|
300
|
+
|
|
301
|
+
```
|
|
302
|
+
╔═══════════════════════════════════════════════════════════╗
|
|
303
|
+
║ SMARTSTACK PLUGIN CREATED ║
|
|
304
|
+
╠═══════════════════════════════════════════════════════════╣
|
|
305
|
+
║ Name: smartstack-{name} ║
|
|
306
|
+
║ Type: Full Plugin ║
|
|
307
|
+
╠═══════════════════════════════════════════════════════════╣
|
|
308
|
+
║ Components: ║
|
|
309
|
+
║ ✓ Command: /{name} ║
|
|
310
|
+
║ ✓ Agent: {name} ║
|
|
311
|
+
║ ✓ Skill: /{name}:* (3 phases) ║
|
|
312
|
+
║ ✓ Hook: {name}-check ║
|
|
313
|
+
╠═══════════════════════════════════════════════════════════╣
|
|
314
|
+
║ Next steps: ║
|
|
315
|
+
║ 1. cd smartstack-{name} ║
|
|
316
|
+
║ 2. npm install ║
|
|
317
|
+
║ 3. Customize templates ║
|
|
318
|
+
║ 4. npm run build ║
|
|
319
|
+
║ 5. npm publish ║
|
|
320
|
+
╚═══════════════════════════════════════════════════════════╝
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
## Priority
|
|
324
|
+
|
|
325
|
+
Completeness > Quality > Speed
|
|
326
|
+
|
|
327
|
+
---
|
|
328
|
+
|
|
329
|
+
User: $ARGUMENTS
|