@amrhas82/agentic-kit 1.9.1 → 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,6 +1,17 @@
1
- # Agentic Kit
1
+ <div align="center">
2
2
 
3
- > **AI development toolkit with 14 specialized agents and 20 commands per tool**
3
+ ```
4
+ █████╗ ██████╗ ███████╗███╗ ██╗████████╗██╗ ██████╗ ██╗ ██╗██╗████████╗
5
+ ██╔══██╗██╔════╝ ██╔════╝████╗ ██║╚══██╔══╝██║██╔════╝ ██║ ██╔╝██║╚══██╔══╝
6
+ ███████║██║ ███╗█████╗ ██╔██╗ ██║ ██║ ██║██║ █████╔╝ ██║ ██║
7
+ ██╔══██║██║ ██║██╔══╝ ██║╚██╗██║ ██║ ██║██║ ██╔═██╗ ██║ ██║
8
+ ██║ ██║╚██████╔╝███████╗██║ ╚████║ ██║ ██║╚██████╗ ██║ ██╗██║ ██║
9
+ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
10
+ ```
11
+
12
+ **AI development toolkit with 14 specialized agents and 21 commands per tool**
13
+
14
+ </div>
4
15
 
5
16
  [![npm version](https://img.shields.io/npm/v/@amrhas82/agentic-kit)](https://www.npmjs.com/package/@amrhas82/agentic-kit)
6
17
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -25,15 +36,15 @@ npm install -g @amrhas82/agentic-kit
25
36
  agentic-kit
26
37
 
27
38
  # Choose tool(s): claude, opencode, ampcode, or droid
28
- # Each tool gets 14 agents + 20 commands
39
+ # Each tool gets 14 agents + 21 commands
29
40
  ```
30
41
 
31
42
  ### Supported Tools
32
43
 
33
- - **Claude Code** - 14 subagents + 11 skills + 9 commands
34
- - **Opencode** - 14 agent references + 20 commands
35
- - **Ampcode** - 14 agent references + 20 commands
36
- - **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
37
48
 
38
49
  **Key Difference:**
39
50
  - **Claude Code**: Full subagent system with orchestrator + skills (auto-triggering)
@@ -82,7 +93,7 @@ agentic-kit
82
93
  - **system-architect** - System design and architecture
83
94
  - **ui-designer** - UI/UX design and wireframes
84
95
 
85
- ### 20 Commands/Skills
96
+ ### 21 Commands/Skills
86
97
 
87
98
  **Auto-Triggering Skills (4)** - Claude Code only:
88
99
  - **test-driven-development** - Write test first, watch fail, minimal passing code
@@ -90,7 +101,7 @@ agentic-kit
90
101
  - **verification-before-completion** - Verify before claiming done
91
102
  - **subagent-spawning** - TDD-aware templates for fresh subagents
92
103
 
93
- **Manual Skills/Commands (16):**
104
+ **Manual Skills/Commands (17):**
94
105
  - **brainstorming** - Structured brainstorming sessions
95
106
  - **code-review** - Implementation review against requirements
96
107
  - **condition-based-waiting** - Replace timeouts with condition polling
@@ -106,6 +117,7 @@ agentic-kit
106
117
  - **review** - Comprehensive code review
107
118
  - **security** - Vulnerability scanning
108
119
  - **ship** - Pre-deployment checklist
120
+ - **stash** - Save session context for compaction recovery or handoffs
109
121
  - **test-generate** - Generate test suites
110
122
 
111
123
  ---
@@ -149,30 +161,10 @@ agentic-kit
149
161
 
150
162
  ---
151
163
 
152
- ## 🔧 Advanced Usage
153
-
154
- ### Silent Installation (CI/CD)
155
- ```bash
156
- agentic-kit --tool claude --yes
157
- ```
158
-
159
- ### Multiple Tools
160
- ```bash
161
- agentic-kit
162
- # Enter: claude opencode
163
- ```
164
-
165
- ### Uninstall
166
- ```bash
167
- agentic-kit --uninstall claude
168
- ```
169
-
170
- ---
171
-
172
164
  ## 📊 Stats
173
165
 
174
166
  - **14** Specialized Agents
175
- - **20** Workflow Commands & Skills
167
+ - **21** Workflow Commands & Skills
176
168
  - **4** Supported Tools (Claude, Opencode, Ampcode, Droid)
177
169
  - **MIT** License
178
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.