@amrhas82/agentic-kit 1.10.0 → 1.11.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/CHANGELOG.md CHANGED
@@ -17,6 +17,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  ---
19
19
 
20
+ ## [1.11.0] - 2026-01-20
21
+
22
+ ### Added
23
+ - `/stash` command for saving session context for compaction recovery or handoffs (added to all packages: claude, opencode, ampcode, droid)
24
+
25
+ ### Changed
26
+ - Updated command count from 20 to 21 across all documentation
27
+ - README.md: Updated command counts and added stash to command list
28
+ - installer/cli.js: Updated welcome banner to reflect 21 commands
29
+ - package.json: Updated description to reflect 21 commands
30
+
31
+ ### Fixed
32
+ - package.json: Fixed validate script path to point to scripts/validate-package.js
33
+
34
+ ---
35
+
20
36
  ## [1.2.1] - 2025-11-05
21
37
 
22
38
  ### Changed
@@ -288,6 +304,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
288
304
 
289
305
  ## Upgrade Guide
290
306
 
307
+ ### From 1.2.1 to 1.11.0
308
+
309
+ **No breaking changes.** Added new `/stash` command for session context management.
310
+
311
+ **New:**
312
+ - `/stash` command for saving session context
313
+ - Updated command count from 20 to 21
314
+
315
+ **Action Required:**
316
+ - None for existing installations - upgrade is seamless
317
+
318
+ **To Upgrade:**
319
+ ```bash
320
+ # Via npm
321
+ npm install -g @amrhas82/agentic-kit@latest
322
+
323
+ # Run installer
324
+ agentic-kit
325
+ ```
326
+
327
+ ---
328
+
291
329
  ### From 1.1.0 to 1.2.0
292
330
 
293
331
  **No breaking changes.** Major new feature: Interactive Multi-Tool Installer.
@@ -359,7 +397,9 @@ npx @amrhas82/agentic-kit
359
397
 
360
398
  | Version | Date | Key Features |
361
399
  |---------|------|--------------|
362
- | **1.2.0** | 2025-11-04 | Interactive multi-tool installer, 22 skills, 4 tools support, 254 tests |
400
+ | **1.11.0** | 2026-01-20 | Added /stash command (21 total commands) |
401
+ | **1.2.1** | 2025-11-05 | Package optimization, repository cleanup |
402
+ | **1.2.0** | 2025-11-05 | Interactive multi-tool installer, 22 skills, 4 tools support, 254 tests |
363
403
  | **1.1.0** | 2025-11-02 | Session persistence, docs consolidation, marketplace catalog |
364
404
  | **1.0.0** | 2025-11-02 | Initial release: 13 agents, 14 skills, 3 variants |
365
405
 
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
1
  <div align="center">
2
2
 
3
3
  ```
4
- █████╗ ██████╗ ███████╗███╗ ██╗████████╗██╗ ██████╗ ██╗ ██╗██╗████████╗
5
- ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██║██╔════╝ ██║ ██╔╝██║╚══██╔══╝
6
- ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ██║██║ █████╔╝ ██║ ██║
7
- ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██║██║ ██╔═██╗ ██║ ██║
8
- ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║
9
- ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
4
+ █████╗ ██████╗ ███████╗███╗ ██╗████████╗██╗ ██████╗ ██╗ ██╗██╗████████╗
5
+ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██║██╔════╝ ██║ ██╔╝██║╚══██╔══╝
6
+ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ██║██║ █████╔╝ ██║ ██║
7
+ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██║██║ ██╔═██╗ ██║ ██║
8
+ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║
9
+ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
10
10
  ```
11
11
 
12
- **AI development toolkit with 14 specialized agents and 20 commands per tool**
12
+ **AI development toolkit with 14 specialized agents and 21 commands per tool**
13
13
 
14
14
  </div>
15
15
 
@@ -36,15 +36,15 @@ npm install -g @amrhas82/agentic-kit
36
36
  agentic-kit
37
37
 
38
38
  # Choose tool(s): claude, opencode, ampcode, or droid
39
- # Each tool gets 14 agents + 20 commands
39
+ # Each tool gets 14 agents + 21 commands
40
40
  ```
41
41
 
42
42
  ### Supported Tools
43
43
 
44
- - **Claude Code** - 14 subagents + 11 skills + 9 commands
45
- - **Opencode** - 14 agent references + 20 commands
46
- - **Ampcode** - 14 agent references + 20 commands
47
- - **Droid** - 14 agent references + 20 commands
44
+ - **Claude Code** - 14 subagents + 11 skills + 10 commands
45
+ - **Opencode** - 14 agent references + 21 commands
46
+ - **Ampcode** - 14 agent references + 21 commands
47
+ - **Droid** - 14 agent references + 21 commands
48
48
 
49
49
  **Key Difference:**
50
50
  - **Claude Code**: Full subagent system with orchestrator + skills (auto-triggering)
@@ -93,7 +93,7 @@ agentic-kit
93
93
  - **system-architect** - System design and architecture
94
94
  - **ui-designer** - UI/UX design and wireframes
95
95
 
96
- ### 20 Commands/Skills
96
+ ### 21 Commands/Skills
97
97
 
98
98
  **Auto-Triggering Skills (4)** - Claude Code only:
99
99
  - **test-driven-development** - Write test first, watch fail, minimal passing code
@@ -101,7 +101,7 @@ agentic-kit
101
101
  - **verification-before-completion** - Verify before claiming done
102
102
  - **subagent-spawning** - TDD-aware templates for fresh subagents
103
103
 
104
- **Manual Skills/Commands (16):**
104
+ **Manual Skills/Commands (17):**
105
105
  - **brainstorming** - Structured brainstorming sessions
106
106
  - **code-review** - Implementation review against requirements
107
107
  - **condition-based-waiting** - Replace timeouts with condition polling
@@ -117,6 +117,7 @@ agentic-kit
117
117
  - **review** - Comprehensive code review
118
118
  - **security** - Vulnerability scanning
119
119
  - **ship** - Pre-deployment checklist
120
+ - **stash** - Save session context for compaction recovery or handoffs
120
121
  - **test-generate** - Generate test suites
121
122
 
122
123
  ---
@@ -160,30 +161,10 @@ agentic-kit
160
161
 
161
162
  ---
162
163
 
163
- ## 🔧 Advanced Usage
164
-
165
- ### Silent Installation (CI/CD)
166
- ```bash
167
- agentic-kit --tool claude --yes
168
- ```
169
-
170
- ### Multiple Tools
171
- ```bash
172
- agentic-kit
173
- # Enter: claude opencode
174
- ```
175
-
176
- ### Uninstall
177
- ```bash
178
- agentic-kit --uninstall claude
179
- ```
180
-
181
- ---
182
-
183
164
  ## 📊 Stats
184
165
 
185
166
  - **14** Specialized Agents
186
- - **20** Workflow Commands & Skills
167
+ - **21** Workflow Commands & Skills
187
168
  - **4** Supported Tools (Claude, Opencode, Ampcode, Droid)
188
169
  - **MIT** License
189
170
 
@@ -0,0 +1,299 @@
1
+ # Installation Locations
2
+
3
+ This document explains **where** Agentic Kit files get installed depending on the installation method.
4
+
5
+ ---
6
+
7
+ ## Installation Methods & Locations
8
+
9
+ ### 1. Claude Code Plugin (Recommended)
10
+
11
+ **Command:**
12
+ ```bash
13
+ /plugin add github:amrhas82/agentic-kit
14
+ ```
15
+
16
+ **Install Location:**
17
+ ```
18
+ ~/.config/claude-code/plugins/github-amrhas82-agentic-kit/
19
+ ```
20
+
21
+ **What's Installed:**
22
+ - All plugin files (agents, skills, manifests, hooks)
23
+ - Files remain until you uninstall with `/plugin remove`
24
+
25
+ **How it Works:**
26
+ - Claude Code clones the GitHub repository
27
+ - Files are placed in Claude's plugin directory
28
+ - Agents and skills become available in Claude Code immediately
29
+ - Persists across Claude Code sessions
30
+
31
+ **Verify Installation:**
32
+ ```bash
33
+ ls ~/.config/claude-code/plugins/ | grep agentic-kit
34
+ ```
35
+
36
+ ---
37
+
38
+ ### 2. npx (Temporary Execution)
39
+
40
+ **Command:**
41
+ ```bash
42
+ npx @amrhas82/agentic-kit
43
+ npx agkit --variant=lite
44
+ ```
45
+
46
+ **Install Location:**
47
+ ```
48
+ ~/.npm/_npx/[hash]/@amrhas82/agentic-kit/
49
+ ```
50
+
51
+ **What's Installed:**
52
+ - Package downloaded to npx cache directory
53
+ - **TEMPORARY** - cleared when cache is cleaned
54
+ - Does NOT install permanently
55
+
56
+ **How it Works:**
57
+ - Downloads package from npm registry
58
+ - Caches in npx directory
59
+ - Runs the CLI script (cli.js)
60
+ - Shows installation instructions
61
+ - Files are NOT available after process exits
62
+
63
+ **This is NOT a permanent installation method!**
64
+
65
+ npx is designed for:
66
+ - Trying the package without installing
67
+ - One-time runs
68
+ - Testing different variants
69
+
70
+ **To actually use Agentic Kit, use Claude Code plugin installation instead.**
71
+
72
+ ---
73
+
74
+ ### 3. npm install (Local Project)
75
+
76
+ **Command:**
77
+ ```bash
78
+ npm install @amrhas82/agentic-kit
79
+ ```
80
+
81
+ **Install Location:**
82
+ ```
83
+ ./node_modules/@amrhas82/agentic-kit/
84
+ ```
85
+
86
+ **What's Installed:**
87
+ - All package files in your project's node_modules
88
+ - Available as a dependency
89
+ - Persists as long as node_modules exists
90
+
91
+ **How it Works:**
92
+ - Downloads package from npm registry
93
+ - Installs to local node_modules directory
94
+ - Makes files available for require/import
95
+ - Typical for Node.js projects
96
+
97
+ **When to Use:**
98
+ - Building a Node.js app that uses Agentic Kit
99
+ - Want to version control dependencies (package.json)
100
+ - Need local access to files
101
+
102
+ **Note:** This doesn't make agents available in Claude Code automatically. You still need to use Claude Code plugin installation for that.
103
+
104
+ ---
105
+
106
+ ### 4. npm install -g (Global)
107
+
108
+ **Command:**
109
+ ```bash
110
+ npm install -g @amrhas82/agentic-kit
111
+ ```
112
+
113
+ **Install Location:**
114
+ ```
115
+ # Linux/macOS
116
+ /usr/local/lib/node_modules/@amrhas82/agentic-kit/
117
+
118
+ # Or with nvm
119
+ ~/.nvm/versions/node/vX.X.X/lib/node_modules/@amrhas82/agentic-kit/
120
+
121
+ # Windows
122
+ %AppData%\npm\node_modules\@amrhas82\agentic-kit\
123
+ ```
124
+
125
+ **What's Installed:**
126
+ - Package files in global node_modules
127
+ - CLI binaries in PATH
128
+ - Available system-wide
129
+
130
+ **How it Works:**
131
+ - Downloads package from npm registry
132
+ - Installs globally
133
+ - Adds `agentic-kit` and `agkit` commands to PATH
134
+
135
+ **When to Use:**
136
+ - Want CLI commands available globally
137
+ - Building tools that use Agentic Kit
138
+
139
+ ---
140
+
141
+ ## Comparison Table
142
+
143
+ | Method | Location | Permanent? | Claude Code? | Use Case |
144
+ |--------|----------|------------|--------------|----------|
145
+ | **Claude Code Plugin** | `~/.config/claude-code/plugins/` | ✅ Yes | ✅ Yes | **Recommended - Use Agentic Kit in Claude** |
146
+ | **npx** | `~/.npm/_npx/[hash]/` | ❌ No (temporary) | ❌ No | Testing, one-time runs |
147
+ | **npm install** | `./node_modules/` | ✅ Yes | ❌ No | Node.js project dependency |
148
+ | **npm install -g** | `/usr/local/lib/node_modules/` | ✅ Yes | ❌ No | Global CLI access |
149
+
150
+ ---
151
+
152
+ ## How Files Are Structured
153
+
154
+ When installed, you get:
155
+
156
+ ```
157
+ agentic-kit/
158
+ ├── .claude-plugin/ # Plugin manifests
159
+ │ ├── plugin.json # Main manifest
160
+ │ ├── plugin-lite.json # Lite variant
161
+ │ ├── plugin-standard.json # Standard variant
162
+ │ └── plugin-pro.json # Pro variant
163
+ ├── agents/ # All 13 agent definitions
164
+ ├── skills/ # All 14 skill definitions
165
+ ├── hooks/ # Plugin hooks
166
+ │ ├── register-agents.js # Agent registration
167
+ │ └── session-start.js # Session persistence
168
+ ├── resources/ # Templates, workflows, data
169
+ ├── cli.js # CLI wrapper
170
+ ├── index.js # Entry point
171
+ ├── package.json # npm package info
172
+ └── README.md # Documentation
173
+ ```
174
+
175
+ ---
176
+
177
+ ## Finding Your Installation
178
+
179
+ ### Claude Code Plugin
180
+ ```bash
181
+ # Linux/macOS
182
+ ls ~/.config/claude-code/plugins/
183
+
184
+ # macOS alternative
185
+ ls ~/Library/Application Support/Claude/plugins/
186
+
187
+ # Check inside Claude Code
188
+ # Type: /plugin list
189
+ ```
190
+
191
+ ### npx Cache
192
+ ```bash
193
+ # List npx cache
194
+ ls ~/.npm/_npx/
195
+
196
+ # Clear npx cache
197
+ rm -rf ~/.npm/_npx
198
+ ```
199
+
200
+ ### npm Local
201
+ ```bash
202
+ # Check local installation
203
+ ls node_modules/@amrhas82/agentic-kit/
204
+
205
+ # Or use npm
206
+ npm list @amrhas82/agentic-kit
207
+ ```
208
+
209
+ ### npm Global
210
+ ```bash
211
+ # Find global installation
212
+ npm list -g @amrhas82/agentic-kit
213
+
214
+ # Or check directory
215
+ npm root -g
216
+ ```
217
+
218
+ ---
219
+
220
+ ## Uninstalling
221
+
222
+ ### Claude Code Plugin
223
+ ```bash
224
+ /plugin remove github-amrhas82-agentic-kit
225
+ ```
226
+
227
+ ### npm Local
228
+ ```bash
229
+ npm uninstall @amrhas82/agentic-kit
230
+ ```
231
+
232
+ ### npm Global
233
+ ```bash
234
+ npm uninstall -g @amrhas82/agentic-kit
235
+ ```
236
+
237
+ ### npx Cache
238
+ ```bash
239
+ # npx cache is automatically cleaned periodically
240
+ # Or force clean:
241
+ rm -rf ~/.npm/_npx
242
+ ```
243
+
244
+ ---
245
+
246
+ ## Package Publishing Locations
247
+
248
+ When you publish:
249
+
250
+ ### npm.js Registry
251
+ ```
252
+ https://www.npmjs.com/package/@amrhas82/agentic-kit
253
+ ```
254
+
255
+ Users download from:
256
+ ```
257
+ https://registry.npmjs.org/@amrhas82/agentic-kit/-/agentic-kit-1.1.0.tgz
258
+ ```
259
+
260
+ ### GitHub Packages
261
+ ```
262
+ https://github.com/amrhas82/agentic-kit/packages
263
+ ```
264
+
265
+ Users download from:
266
+ ```
267
+ https://npm.pkg.github.com/@amrhas82/agentic-kit
268
+ ```
269
+
270
+ ### GitHub Repository
271
+ ```
272
+ https://github.com/amrhas82/agentic-kit
273
+ ```
274
+
275
+ Claude Code clones from:
276
+ ```
277
+ git clone https://github.com/amrhas82/agentic-kit.git
278
+ ```
279
+
280
+ ---
281
+
282
+ ## Summary
283
+
284
+ **For most users:**
285
+ - **Use Claude Code plugin installation** → Installs to Claude's plugin directory
286
+ - This is the recommended method for using Agentic Kit
287
+
288
+ **For developers:**
289
+ - **npm install** (local) → For Node.js projects
290
+ - **npm install -g** (global) → For CLI access
291
+
292
+ **For testing:**
293
+ - **npx** → Temporary, doesn't actually install
294
+
295
+ ---
296
+
297
+ **Where do agents/skills become available?**
298
+
299
+ Only **Claude Code plugin installation** makes agents and skills available in Claude Code. Other methods just download files but don't integrate with Claude Code.
@@ -0,0 +1,323 @@
1
+ # Agentic Kit v1.2.0 Release Notes
2
+
3
+ **Release Date**: November 5, 2025
4
+ **Type**: Major Feature Release
5
+ **Status**: Production Ready
6
+
7
+ ---
8
+
9
+ ## 🎉 What's New
10
+
11
+ ### Interactive Multi-Tool Installer System
12
+
13
+ The headline feature of v1.2.0 is a complete installation system supporting four AI development tools with three variant levels and comprehensive features:
14
+
15
+ #### 🚀 Core Features
16
+
17
+ - **4-Step Interactive Installation**: Guided process from variant selection to completion
18
+ - **Multi-Tool Support**: Install Claude, Opencode, Ampcode, and Droid simultaneously
19
+ - **Variant Selection**: Choose Lite (510 KB), Standard (8.4 MB), or Pro (9 MB)
20
+ - **Real-Time Progress**: Beautiful ANSI progress bars with ETA and transfer speed
21
+ - **Automatic Rollback**: Failed installations automatically restore previous state
22
+ - **Resume Capability**: Interrupted installations can be resumed from where they stopped
23
+ - **Silent Mode**: Perfect for CI/CD pipelines (`--silent --variant=standard --tools=claude`)
24
+
25
+ #### 📊 Installation Reporting (New in Phase 9)
26
+
27
+ - **Comprehensive Reports**: Detailed installation reports saved to `~/.agentic-kit-install.log`
28
+ - Success/failure status
29
+ - Per-tool component counts and verification
30
+ - System information and timing data
31
+ - Errors and warnings with context
32
+
33
+ #### 📈 Anonymous Telemetry (New in Phase 9)
34
+
35
+ - **Opt-In Only**: Clear consent prompt with transparent data policy
36
+ - **Privacy-First**: Only anonymous usage data (variant, tool count, timing, OS)
37
+ - **No Personal Data**: Never collects paths, user info, or identifying data
38
+ - **Easy Opt-Out**: Use `--no-telemetry` flag or modify config file
39
+ - **Local Storage**: Data stored locally, not sent to external servers
40
+ - **Full Documentation**: See `docs/PRIVACY.md` for complete details
41
+
42
+ #### 🔒 Security Hardening (New in Phase 9)
43
+
44
+ - **Path Traversal Prevention**: Validates all paths to prevent `../../etc/passwd` attacks
45
+ - **Symlink Protection**: Resolves and validates symlinks before operations
46
+ - **Input Validation**: Whitelisted tool names, variants, and sanitized paths
47
+ - **DoS Prevention**: File size limits (1MB) for JSON parsing
48
+ - **Null Byte Detection**: Prevents null byte injection in paths and files
49
+ - **Secure Permissions**: Sensitive files created with 0600 permissions
50
+ - **No Command Injection**: All file operations use Node.js APIs, no shell execution
51
+ - **Full Documentation**: See `docs/SECURITY.md` for security measures
52
+
53
+ #### 🔄 Legacy Migration (New in Phase 9)
54
+
55
+ - **Automatic Detection**: Finds pre-1.2.0 installations without manifests
56
+ - **Smart Classification**: Classifies legacy installations as Lite/Standard/Pro
57
+ - **Preserves Customizations**: User-created agents and skills are retained
58
+ - **Migration Prompt**: Clear prompts with migration details
59
+ - **Rollback Support**: Easy rollback if migration is unwanted
60
+ - **Full Documentation**: See `docs/MIGRATION.md` for migration guide
61
+
62
+ ---
63
+
64
+ ## 📦 What's Included
65
+
66
+ ### Tools & Variants
67
+
68
+ | Tool | Description | Optimization |
69
+ |------|-------------|--------------|
70
+ | **Claude** | Conversational AI assistant | Markdown-first, conversational patterns |
71
+ | **Opencode** | CLI-optimized codegen | Terminal workflows, command-line first |
72
+ | **Ampcode** | Amplified development | Maximum velocity, automation |
73
+ | **Droid** | Android development | Mobile-first, Android Studio integration |
74
+
75
+ | Variant | Agents | Skills | Size | Best For |
76
+ |---------|--------|--------|------|----------|
77
+ | **Lite** | 3 | 0 | 510 KB | CI/CD, minimal setups, testing |
78
+ | **Standard** ⭐ | 13 | 8 | 8.4 MB | Most users, document processing |
79
+ | **Pro** | 13 | 22 | 9 MB | Advanced users, full feature set |
80
+
81
+ ### Components
82
+
83
+ - **13 Specialized Agents**: master, orchestrator, story-writer, feature-planner, and more
84
+ - **22 Skills**: pdf, docx, xlsx, pptx, canvas-design, theme-factory, and 16 others
85
+ - **8 Core Skills** (Standard): Essential document and design tools
86
+ - **14 Advanced Skills** (Pro only): Specialized tools for power users
87
+
88
+ ---
89
+
90
+ ## 🚀 Installation
91
+
92
+ ### Quick Start
93
+
94
+ ```bash
95
+ # Install globally
96
+ npm install -g @amrhas82/agentic-kit
97
+
98
+ # Run interactive installer
99
+ agentic-kit install
100
+ ```
101
+
102
+ ### Silent Mode (CI/CD)
103
+
104
+ ```bash
105
+ # Install Claude with Standard variant
106
+ agentic-kit install --silent --variant=standard --tools=claude
107
+
108
+ # Install all tools with Pro variant
109
+ agentic-kit install --silent --variant=pro --tools=claude,opencode,ampcode,droid
110
+ ```
111
+
112
+ ### Advanced Usage
113
+
114
+ ```bash
115
+ # Custom path
116
+ agentic-kit install --variant=standard --tools=claude --path claude=~/my-custom-path
117
+
118
+ # Multiple tools with different paths
119
+ agentic-kit install --variant=pro --tools=claude,opencode \
120
+ --path claude=~/.claude-custom \
121
+ --path opencode=~/.opencode-custom
122
+
123
+ # Disable telemetry
124
+ agentic-kit install --no-telemetry
125
+
126
+ # Uninstall
127
+ agentic-kit install --uninstall claude
128
+
129
+ # Upgrade variant
130
+ agentic-kit install --upgrade claude pro
131
+ ```
132
+
133
+ ---
134
+
135
+ ## 📚 Documentation
136
+
137
+ ### New Documentation (Phase 9)
138
+
139
+ - **[PRIVACY.md](docs/PRIVACY.md)** - Transparent data collection policy
140
+ - **[SECURITY.md](docs/SECURITY.md)** - Security measures and best practices
141
+ - **[MIGRATION.md](docs/MIGRATION.md)** - Guide for migrating from < 1.2.0
142
+
143
+ ### Existing Documentation
144
+
145
+ - **[INSTALLER_GUIDE.md](docs/INSTALLER_GUIDE.md)** - Complete installation guide (850+ lines)
146
+ - **[VARIANT_CONFIGURATION.md](docs/VARIANT_CONFIGURATION.md)** - Variant system details
147
+ - **[PACKAGE_BASELINE.md](docs/PACKAGE_BASELINE.md)** - Package structure reference
148
+ - **[TESTING.md](docs/TESTING.md)** - Testing strategy and execution
149
+ - **[INSTALLATION_DEMO.md](docs/INSTALLATION_DEMO.md)** - Visual demo of installer
150
+
151
+ ---
152
+
153
+ ## ✅ Testing & Quality Assurance
154
+
155
+ ### Test Coverage
156
+
157
+ - **263 Total Tests**: All passing with zero failures
158
+ - **9 Validation Tests**: Core module validation (new in Phase 9.6)
159
+ - **88 Variant Tests**: Comprehensive variant parsing validation
160
+ - **44 Package Tests**: Package manager functionality
161
+ - **35 Installation Tests**: Installation engine testing
162
+ - **40 Integration Tests**: End-to-end scenarios
163
+ - **34 Path Tests**: Path validation and confirmation
164
+ - **13 Display Tests**: Summary display verification
165
+
166
+ ### Validation Results
167
+
168
+ - ✅ All 12 tool/variant combinations validated
169
+ - ✅ Zero errors, zero warnings
170
+ - ✅ 100% installation success rate
171
+ - ✅ Production-ready status confirmed
172
+
173
+ ---
174
+
175
+ ## 🔧 Technical Details
176
+
177
+ ### Architecture
178
+
179
+ ```
180
+ agentic-kit/
181
+ ├── installer/
182
+ │ ├── cli.js # Interactive CLI
183
+ │ ├── package-manager.js # Variant management
184
+ │ ├── installation-engine.js # File operations
185
+ │ ├── verification-system.js # Post-install validation
186
+ │ ├── path-manager.js # Path validation (enhanced security)
187
+ │ ├── state-manager.js # Resume capability
188
+ │ ├── report-template.js # Report generation (new Phase 9.2)
189
+ │ └── telemetry.js # Anonymous stats (new Phase 9.3)
190
+ ├── packages/
191
+ │ ├── claude/ # Claude-optimized package
192
+ │ ├── opencode/ # Opencode-optimized package
193
+ │ ├── ampcode/ # Ampcode-optimized package
194
+ │ └── droid/ # Droid-optimized package
195
+ └── tests/
196
+ ├── installer/ # 254 installer tests
197
+ └── validation-test.js # 9 core validation tests (new Phase 9.6)
198
+ ```
199
+
200
+ ### Requirements
201
+
202
+ - **Node.js**: 14.0.0 or higher
203
+ - **npm**: 6.0.0 or higher
204
+ - **Disk Space**:
205
+ - Lite: ~1 MB
206
+ - Standard: ~10 MB
207
+ - Pro: ~12 MB
208
+ - **Permissions**: Write access to installation directories
209
+
210
+ ---
211
+
212
+ ## 🐛 Bug Fixes
213
+
214
+ - Fixed file count mismatches in progress tracking
215
+ - Improved error messages for permission issues
216
+ - Enhanced path validation for edge cases
217
+ - Better handling of interrupted installations
218
+ - Resolved symlink-related installation issues
219
+
220
+ ---
221
+
222
+ ## 🔄 Migration from v1.1.x
223
+
224
+ ### Automatic Migration
225
+
226
+ When you run the installer, it will automatically detect v1.1.x installations and offer to migrate:
227
+
228
+ ```bash
229
+ $ agentic-kit install
230
+
231
+ ⚠ Legacy installation detected at ~/.claude
232
+ Found: 13 agents, 5 skills, 1 resource, 2 hooks
233
+
234
+ Migrate to new installer? (Y/n): y
235
+
236
+ ✓ Migration complete!
237
+ ```
238
+
239
+ ### What's Preserved
240
+
241
+ - ✅ All existing agents and skills
242
+ - ✅ Custom user-created files
243
+ - ✅ Directory structure
244
+ - ✅ File permissions
245
+
246
+ ### What's Added
247
+
248
+ - ➕ `manifest.json` with installation metadata
249
+ - ➕ Upgrade/downgrade capability
250
+ - ➕ Better uninstall support
251
+
252
+ See **[MIGRATION.md](docs/MIGRATION.md)** for detailed migration guide.
253
+
254
+ ---
255
+
256
+ ## 🎯 Highlights
257
+
258
+ ### For Developers
259
+
260
+ - **Faster Installation**: Optimized file operations with progress tracking
261
+ - **Better Debugging**: Comprehensive reports and error messages
262
+ - **CI/CD Ready**: Silent mode with exit codes and automation support
263
+ - **Security First**: Path traversal prevention and input validation
264
+ - **Resume Support**: Never lose progress on interrupted installations
265
+
266
+ ### For Teams
267
+
268
+ - **Multi-Tool Management**: Install and manage 4 tools from one installer
269
+ - **Variant Flexibility**: Easy upgrades between Lite/Standard/Pro
270
+ - **Consistent Structure**: All tools follow same structure (13 agents, 22 skills)
271
+ - **Tool-Specific Optimization**: Each tool optimized for its platform
272
+ - **Quality Assurance**: 263 tests ensure reliability
273
+
274
+ ### For Organizations
275
+
276
+ - **Privacy-Focused**: Transparent telemetry with easy opt-out
277
+ - **Security-Hardened**: Comprehensive security measures documented
278
+ - **Migration Path**: Clear upgrade path from older versions
279
+ - **Documentation**: Extensive guides for all features
280
+ - **Production-Ready**: 100% validation, zero errors
281
+
282
+ ---
283
+
284
+ ## 📊 Statistics
285
+
286
+ - **Lines of Code**: ~8,500 (installer system)
287
+ - **Documentation**: ~5,000 lines across 8 documents
288
+ - **Tests**: 263 passing tests
289
+ - **Success Rate**: 100% installation success
290
+ - **Validation**: 12/12 tool/variant combinations validated
291
+ - **Security Checks**: 7 layers of security validation
292
+
293
+ ---
294
+
295
+ ## 🙏 Acknowledgments
296
+
297
+ This release represents a significant milestone in making Agentic Kit more accessible, secure, and user-friendly. Special thanks to all contributors and users who provided feedback during development.
298
+
299
+ ---
300
+
301
+ ## 📞 Support
302
+
303
+ - **Documentation**: https://github.com/amrhas82/agentic-kit/docs
304
+ - **Issues**: https://github.com/amrhas82/agentic-kit/issues
305
+ - **Security**: See [SECURITY.md](docs/SECURITY.md) for vulnerability reporting
306
+
307
+ ---
308
+
309
+ ## 🔮 What's Next (v1.3.0)
310
+
311
+ Planned features for the next release:
312
+
313
+ - GUI installer for desktop environments
314
+ - Package management (add/remove individual agents and skills)
315
+ - Automatic update notifications
316
+ - Team/enterprise deployment support
317
+ - Additional tool integrations
318
+ - Enhanced telemetry dashboard (local-only)
319
+ - Performance optimizations
320
+
321
+ ---
322
+
323
+ **Enjoy Agentic Kit v1.2.0!** 🎉
package/installer/cli.js CHANGED
@@ -451,7 +451,7 @@ ${colors.bright}${colors.cyan}██╔══██║██║ ██║█
451
451
  ${colors.bright}${colors.cyan}██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║${colors.reset}
452
452
  ${colors.bright}${colors.cyan}╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝${colors.reset}
453
453
 
454
- ${colors.bright}v1.10.0 | 14 agents + 20 commands per tool${colors.reset}
454
+ ${colors.bright}v1.11.0 | 14 agents + 21 commands per tool${colors.reset}
455
455
  `);
456
456
  }
457
457
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "1.10.0",
4
- "description": "AI development toolkit with 14 specialized agents and 20 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
3
+ "version": "1.11.0",
4
+ "description": "AI development toolkit with 14 specialized agents and 21 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "agentic-kit": "./installer/cli.js",
@@ -14,7 +14,7 @@
14
14
  "uninstall-tool": "node installer/cli.js --uninstall",
15
15
  "clean": "rm -rf tests/tmp/ && echo 'Cleaned test artifacts'",
16
16
  "clean:git": "git clean -fdx tests/tmp/",
17
- "validate": "node ./validate-package.js",
17
+ "validate": "node ./scripts/validate-package.js",
18
18
  "validate-packages": "node scripts/validate-all-packages.js",
19
19
  "prepublishOnly": "npm run clean && npm run validate",
20
20
  "publish:npm": "npm publish --registry https://registry.npmjs.org --access public",
@@ -25,7 +25,7 @@ These subagents are available when using Claude Code CLI. Ampcode can reference
25
25
  | system-architect | Architect | Use for system design, architecture documents, technology selection, API design, and infrastructure planning |
26
26
  | ui-designer | UX Expert | Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization |
27
27
 
28
- ## Ampcode Commands (20 total)
28
+ ## Ampcode Commands (21 total)
29
29
 
30
30
  | ID | Description | Usage | Auto |
31
31
  |---|---|---|---|
@@ -43,6 +43,7 @@ These subagents are available when using Claude Code CLI. Ampcode can reference
43
43
  | security | Security vulnerability scan and analysis | /security | - |
44
44
  | ship | Pre-deployment verification checklist | /ship | - |
45
45
  | skill-creator | Guide for creating effective skills and extending Claude capabilities | /skill-creator <skill-type> <skill-description> | false |
46
+ | stash | Save session context for compaction recovery or handoffs | /stash ["optional-name"] | - |
46
47
  | subagent-spawning | Provides TDD-aware templates for spawning fresh subagents | Used by 3-process-task-list and other agents | true |
47
48
  | systematic-debugging | Four-phase debugging framework - investigate root cause before any fixes | /systematic-debugging <bug-or-error-description> | false |
48
49
  | test-driven-development | Write test first, watch it fail, write minimal code to pass | /test-driven-development <feature-or-behavior-to-test> | true |
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: stash
3
+ description: Stash session context [name]
4
+ usage: /stash ["optional-name"]
5
+ argument-hint: [optional stash name]
6
+ ---
7
+
8
+ Save session context for compaction recovery or handoffs.
9
+
10
+ **Guardrails**
11
+ - Favor straightforward, minimal implementations first and add complexity only when requested or clearly required.
12
+ - Keep changes tightly scoped to the requested outcome.
13
+
14
+ **What it does**
15
+ 1. Captures current conversation context and key decisions
16
+ 2. Records active work in progress
17
+ 3. Stores important findings and insights
18
+ 4. Creates stash file in `~/.claude/stash/`
19
+ 5. Enables context restoration after compaction
20
+
21
+ **When to use**
22
+ - Before long-running tasks that may trigger compaction
23
+ - When handing off work to another agent or session
24
+ - After completing major investigation or analysis
25
+ - Before taking a break from complex multi-step work
26
+
27
+ **Commands**
28
+ ```bash
29
+ # Stash with auto-generated name
30
+ /stash
31
+
32
+ # Stash with custom name
33
+ /stash "feature-auth-investigation"
34
+
35
+ # List available stashes
36
+ ls ~/.claude/stash/
37
+
38
+ # Restore from stash
39
+ cat ~/.claude/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `~/.claude/stash/`
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -41,7 +41,7 @@ These subagents are available when using Claude Code CLI. Droid can reference th
41
41
  | testing-anti-patterns | Prevents testing mock behavior and production pollution with test-only methods | /testing-anti-patterns <testing-scenario> | true |
42
42
  | verification-before-completion | Requires running verification commands before making any success claims | /verification-before-completion <work-to-verify> | true |
43
43
 
44
- ### Commands (9 total)
44
+ ### Commands (10 total)
45
45
 
46
46
  | ID | Description | Usage |
47
47
  |---|---|---|
@@ -53,6 +53,7 @@ These subagents are available when using Claude Code CLI. Droid can reference th
53
53
  | review | Comprehensive code review including quality, tests, and architecture | /review |
54
54
  | security | Security vulnerability scan and analysis | /security |
55
55
  | ship | Pre-deployment verification checklist | /ship |
56
+ | stash | Save session context for compaction recovery or handoffs | /stash ["optional-name"] |
56
57
  | test-generate | Generate comprehensive test suites for existing code | /test-generate <code-section> |
57
58
 
58
59
  All resources are auto-discovered from frontmatter in their respective directories:
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: stash
3
+ description: Stash session context [name]
4
+ usage: /stash ["optional-name"]
5
+ argument-hint: [optional stash name]
6
+ ---
7
+
8
+ Save session context for compaction recovery or handoffs.
9
+
10
+ **Guardrails**
11
+ - Favor straightforward, minimal implementations first and add complexity only when requested or clearly required.
12
+ - Keep changes tightly scoped to the requested outcome.
13
+
14
+ **What it does**
15
+ 1. Captures current conversation context and key decisions
16
+ 2. Records active work in progress
17
+ 3. Stores important findings and insights
18
+ 4. Creates stash file in `~/.claude/stash/`
19
+ 5. Enables context restoration after compaction
20
+
21
+ **When to use**
22
+ - Before long-running tasks that may trigger compaction
23
+ - When handing off work to another agent or session
24
+ - After completing major investigation or analysis
25
+ - Before taking a break from complex multi-step work
26
+
27
+ **Commands**
28
+ ```bash
29
+ # Stash with auto-generated name
30
+ /stash
31
+
32
+ # Stash with custom name
33
+ /stash "feature-auth-investigation"
34
+
35
+ # List available stashes
36
+ ls ~/.claude/stash/
37
+
38
+ # Restore from stash
39
+ cat ~/.claude/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `~/.claude/stash/`
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -25,7 +25,7 @@ These subagents are available when using Claude Code CLI. Droid can reference th
25
25
  | system-architect | Architect | Use for system design, architecture documents, technology selection, API design, and infrastructure planning |
26
26
  | ui-designer | UX Expert | Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization |
27
27
 
28
- ## Droid Commands (20 total)
28
+ ## Droid Commands (21 total)
29
29
 
30
30
  | ID | Description | Usage | Auto |
31
31
  |---|---|---|---|
@@ -43,6 +43,7 @@ These subagents are available when using Claude Code CLI. Droid can reference th
43
43
  | security | Security vulnerability scan and analysis | /security | - |
44
44
  | ship | Pre-deployment verification checklist | /ship | - |
45
45
  | skill-creator | Guide for creating effective skills and extending Claude capabilities | /skill-creator <skill-type> <skill-description> | false |
46
+ | stash | Save session context for compaction recovery or handoffs | /stash ["optional-name"] | - |
46
47
  | subagent-spawning | Provides TDD-aware templates for spawning fresh subagents | Used by 3-process-task-list and other agents | true |
47
48
  | systematic-debugging | Four-phase debugging framework - investigate root cause before any fixes | /systematic-debugging <bug-or-error-description> | false |
48
49
  | test-driven-development | Write test first, watch it fail, write minimal code to pass | /test-driven-development <feature-or-behavior-to-test> | true |
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: stash
3
+ description: Stash session context [name]
4
+ usage: /stash ["optional-name"]
5
+ argument-hint: [optional stash name]
6
+ ---
7
+
8
+ Save session context for compaction recovery or handoffs.
9
+
10
+ **Guardrails**
11
+ - Favor straightforward, minimal implementations first and add complexity only when requested or clearly required.
12
+ - Keep changes tightly scoped to the requested outcome.
13
+
14
+ **What it does**
15
+ 1. Captures current conversation context and key decisions
16
+ 2. Records active work in progress
17
+ 3. Stores important findings and insights
18
+ 4. Creates stash file in `~/.claude/stash/`
19
+ 5. Enables context restoration after compaction
20
+
21
+ **When to use**
22
+ - Before long-running tasks that may trigger compaction
23
+ - When handing off work to another agent or session
24
+ - After completing major investigation or analysis
25
+ - Before taking a break from complex multi-step work
26
+
27
+ **Commands**
28
+ ```bash
29
+ # Stash with auto-generated name
30
+ /stash
31
+
32
+ # Stash with custom name
33
+ /stash "feature-auth-investigation"
34
+
35
+ # List available stashes
36
+ ls ~/.claude/stash/
37
+
38
+ # Restore from stash
39
+ cat ~/.claude/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `~/.claude/stash/`
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -25,7 +25,7 @@ These subagents are available when using Claude Code CLI. Opencode can reference
25
25
  | system-architect | Architect | Use for system design, architecture documents, technology selection, API design, and infrastructure planning |
26
26
  | ui-designer | UX Expert | Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization |
27
27
 
28
- ## Opencode Commands (20 total)
28
+ ## Opencode Commands (21 total)
29
29
 
30
30
  | ID | Description | Usage | Auto |
31
31
  |---|---|---|---|
@@ -43,6 +43,7 @@ These subagents are available when using Claude Code CLI. Opencode can reference
43
43
  | security | Security vulnerability scan and analysis | /security | - |
44
44
  | ship | Pre-deployment verification checklist | /ship | - |
45
45
  | skill-creator | Guide for creating effective skills and extending Claude capabilities | /skill-creator <skill-type> <skill-description> | false |
46
+ | stash | Save session context for compaction recovery or handoffs | /stash ["optional-name"] | - |
46
47
  | subagent-spawning | Provides TDD-aware templates for spawning fresh subagents | Used by 3-process-task-list and other agents | true |
47
48
  | systematic-debugging | Four-phase debugging framework - investigate root cause before any fixes | /systematic-debugging <bug-or-error-description> | false |
48
49
  | test-driven-development | Write test first, watch it fail, write minimal code to pass | /test-driven-development <feature-or-behavior-to-test> | true |
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: stash
3
+ description: Stash session context [name]
4
+ usage: /stash ["optional-name"]
5
+ argument-hint: [optional stash name]
6
+ ---
7
+
8
+ Save session context for compaction recovery or handoffs.
9
+
10
+ **Guardrails**
11
+ - Favor straightforward, minimal implementations first and add complexity only when requested or clearly required.
12
+ - Keep changes tightly scoped to the requested outcome.
13
+
14
+ **What it does**
15
+ 1. Captures current conversation context and key decisions
16
+ 2. Records active work in progress
17
+ 3. Stores important findings and insights
18
+ 4. Creates stash file in `~/.claude/stash/`
19
+ 5. Enables context restoration after compaction
20
+
21
+ **When to use**
22
+ - Before long-running tasks that may trigger compaction
23
+ - When handing off work to another agent or session
24
+ - After completing major investigation or analysis
25
+ - Before taking a break from complex multi-step work
26
+
27
+ **Commands**
28
+ ```bash
29
+ # Stash with auto-generated name
30
+ /stash
31
+
32
+ # Stash with custom name
33
+ /stash "feature-auth-investigation"
34
+
35
+ # List available stashes
36
+ ls ~/.claude/stash/
37
+
38
+ # Restore from stash
39
+ cat ~/.claude/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `~/.claude/stash/`
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -31,10 +31,10 @@ Install for your platform:
31
31
 
32
32
  | Platform | Installation | What's Included |
33
33
  |----------|--------------|-----------------|
34
- | **Claude Code** | `cp -r claude/* ~/.claude/` | 14 subagents + 11 skills + 9 commands |
35
- | **Droid** | `cp -r droid/* ~/.factory/` | 20 commands (subagent references) |
36
- | **Ampcode** | `cp -r ampcode/* ~/.config/amp/` | 20 commands (subagent references) |
37
- | **OpenCode** | `cp -r opencode/* ~/.config/opencode/` | 20 commands (subagent references) |
34
+ | **Claude Code** | `cp -r claude/* ~/.claude/` | 14 subagents + 11 skills + 10 commands |
35
+ | **Droid** | `cp -r droid/* ~/.factory/` | 21 commands (subagent references) |
36
+ | **Ampcode** | `cp -r ampcode/* ~/.config/amp/` | 21 commands (subagent references) |
37
+ | **OpenCode** | `cp -r opencode/* ~/.config/opencode/` | 21 commands (subagent references) |
38
38
 
39
39
  **Key Difference**:
40
40
  - **Claude Code** implements full subagent system with orchestrator
@@ -54,8 +54,8 @@ Install for your platform:
54
54
  - test-driven-development, testing-anti-patterns, verification-before-completion (auto-trigger)
55
55
  - brainstorming, code-review, systematic-debugging, docs-builder, etc.
56
56
 
57
- **9 Commands** - Simple workflow helpers
58
- - debug, explain, git-commit, optimize, refactor, review, security, ship, test-generate
57
+ **10 Commands** - Simple workflow helpers
58
+ - debug, explain, git-commit, optimize, refactor, review, security, ship, stash, test-generate
59
59
 
60
60
  **Orchestration System**
61
61
  - Automatic intent matching to 9 workflow patterns
@@ -64,7 +64,7 @@ Install for your platform:
64
64
 
65
65
  ### Droid/Ampcode/OpenCode (Commands Only)
66
66
 
67
- **20 Commands** - All workflow capabilities in command form
67
+ **21 Commands** - All workflow capabilities in command form
68
68
  - Combines Claude's skills + commands into unified command set
69
69
  - Same functionality, different invocation model (no auto-triggering)
70
70
  - Includes reference documentation for Claude's subagents
@@ -105,7 +105,7 @@ Install for your platform:
105
105
 
106
106
  ## 🛠 Commands Reference
107
107
 
108
- ### Claude Code: 20 Total (11 Skills + 9 Commands)
108
+ ### Claude Code: 21 Total (11 Skills + 10 Commands)
109
109
 
110
110
  **Auto-Triggering Skills (4)**
111
111
  - `test-driven-development` - Write test first, watch fail, minimal passing code
@@ -122,7 +122,7 @@ Install for your platform:
122
122
  - `skill-creator` - Guide for creating new skills
123
123
  - `systematic-debugging` - Four-phase debugging framework
124
124
 
125
- **Simple Commands (9)**
125
+ **Simple Commands (10)**
126
126
  - `debug` - Systematic investigation techniques
127
127
  - `explain` - Explain code for newcomers
128
128
  - `git-commit` - Intelligent commit creation
@@ -131,9 +131,10 @@ Install for your platform:
131
131
  - `review` - Comprehensive code review
132
132
  - `security` - Vulnerability scanning
133
133
  - `ship` - Pre-deployment checklist
134
+ - `stash` - Save session context for compaction recovery or handoffs
134
135
  - `test-generate` - Test suite generation
135
136
 
136
- ### Droid/Ampcode/OpenCode: 20 Commands
137
+ ### Droid/Ampcode/OpenCode: 21 Commands
137
138
 
138
139
  Same functionality as Claude's skills+commands, but:
139
140
  - All invoked as commands (no auto-triggering)
@@ -143,7 +144,7 @@ Same functionality as Claude's skills+commands, but:
143
144
  **Command Categories**:
144
145
  - **Development & Testing (10)**: test-driven-development, testing-anti-patterns, test-generate, code-review, systematic-debugging, root-cause-tracing, debug, condition-based-waiting, verification-before-completion, subagent-spawning
145
146
  - **Code Operations (6)**: refactor, optimize, explain, review, security, ship
146
- - **Strategy & Planning (4)**: brainstorming, skill-creator, docs-builder, git-commit
147
+ - **Session & Planning (5)**: brainstorming, skill-creator, docs-builder, git-commit, stash
147
148
 
148
149
  ---
149
150
 
@@ -242,7 +243,7 @@ Subagent workflows require manual coordination.
242
243
  ├── CLAUDE.md # Registry + orchestrator workflows
243
244
  ├── agents/ # 14 subagent implementations (*.md)
244
245
  ├── skills/ # 11 skills (subdirectories with SKILL.md)
245
- └── commands/ # 9 commands (*.md)
246
+ └── commands/ # 10 commands (*.md)
246
247
  ```
247
248
 
248
249
  **Features**:
@@ -255,7 +256,7 @@ Subagent workflows require manual coordination.
255
256
  ```
256
257
  ~/.factory/
257
258
  ├── AGENTS.md # Reference doc (subagents + commands)
258
- └── commands/ # 20 commands (*.md)
259
+ └── commands/ # 21 commands (*.md)
259
260
  ```
260
261
 
261
262
  **Features**:
@@ -267,7 +268,7 @@ Subagent workflows require manual coordination.
267
268
  ```
268
269
  ~/.config/amp/
269
270
  ├── AGENT.md # Reference doc (subagents + commands)
270
- └── commands/ # 20 commands (*.md)
271
+ └── commands/ # 21 commands (*.md)
271
272
  ```
272
273
 
273
274
  **Features**:
@@ -279,7 +280,7 @@ Subagent workflows require manual coordination.
279
280
  ```
280
281
  ~/.config/opencode/
281
282
  ├── AGENTS.md # Reference doc (subagents + commands)
282
- └── command/ # 20 commands (*.md)
283
+ └── command/ # 21 commands (*.md)
283
284
  ```
284
285
 
285
286
  **Features**:
File without changes
File without changes