@amrhas82/agentic-kit 1.11.0 → 1.11.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/CHANGELOG.md +8 -0
- package/installer/cli.js +1 -1
- package/package.json +1 -1
- package/packages/opencode/opencode.jsonc +44 -0
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
+
## [1.11.1] - 2026-01-20
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Added missing command definitions to `packages/opencode/opencode.jsonc` (debug, explain, git-commit, optimize, refactor, review, security, ship, stash, test-generate, subagent-spawning)
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
20
27
|
## [1.11.0] - 2026-01-20
|
|
21
28
|
|
|
22
29
|
### Added
|
|
@@ -397,6 +404,7 @@ npx @amrhas82/agentic-kit
|
|
|
397
404
|
|
|
398
405
|
| Version | Date | Key Features |
|
|
399
406
|
|---------|------|--------------|
|
|
407
|
+
| **1.11.1** | 2026-01-20 | Fixed missing commands in opencode.jsonc |
|
|
400
408
|
| **1.11.0** | 2026-01-20 | Added /stash command (21 total commands) |
|
|
401
409
|
| **1.2.1** | 2025-11-05 | Package optimization, repository cleanup |
|
|
402
410
|
| **1.2.0** | 2025-11-05 | Interactive multi-tool installer, 22 skills, 4 tools support, 254 tests |
|
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.11.
|
|
454
|
+
${colors.bright}v1.11.1 | 14 agents + 21 commands per tool${colors.reset}
|
|
455
455
|
`);
|
|
456
456
|
}
|
|
457
457
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amrhas82/agentic-kit",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
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": {
|
|
@@ -182,6 +182,50 @@
|
|
|
182
182
|
"docs-builder": {
|
|
183
183
|
"template": "{file:./command/docs-builder/SKILL.md}",
|
|
184
184
|
"description": "Create comprehensive project documentation with structured /docs hierarchy"
|
|
185
|
+
},
|
|
186
|
+
"debug": {
|
|
187
|
+
"template": "{file:./command/debug.md}",
|
|
188
|
+
"description": "Debug an issue systematically using structured investigation techniques"
|
|
189
|
+
},
|
|
190
|
+
"explain": {
|
|
191
|
+
"template": "{file:./command/explain.md}",
|
|
192
|
+
"description": "Explain code for someone new to the codebase"
|
|
193
|
+
},
|
|
194
|
+
"git-commit": {
|
|
195
|
+
"template": "{file:./command/git-commit.md}",
|
|
196
|
+
"description": "Analyze changes and create intelligent git commits"
|
|
197
|
+
},
|
|
198
|
+
"optimize": {
|
|
199
|
+
"template": "{file:./command/optimize.md}",
|
|
200
|
+
"description": "Analyze and optimize performance issues"
|
|
201
|
+
},
|
|
202
|
+
"refactor": {
|
|
203
|
+
"template": "{file:./command/refactor.md}",
|
|
204
|
+
"description": "Refactor code while maintaining behavior and tests"
|
|
205
|
+
},
|
|
206
|
+
"review": {
|
|
207
|
+
"template": "{file:./command/review.md}",
|
|
208
|
+
"description": "Comprehensive code review including quality, tests, and architecture"
|
|
209
|
+
},
|
|
210
|
+
"security": {
|
|
211
|
+
"template": "{file:./command/security.md}",
|
|
212
|
+
"description": "Security vulnerability scan and analysis"
|
|
213
|
+
},
|
|
214
|
+
"ship": {
|
|
215
|
+
"template": "{file:./command/ship.md}",
|
|
216
|
+
"description": "Pre-deployment verification checklist"
|
|
217
|
+
},
|
|
218
|
+
"stash": {
|
|
219
|
+
"template": "{file:./command/stash.md}",
|
|
220
|
+
"description": "Save session context for compaction recovery or handoffs"
|
|
221
|
+
},
|
|
222
|
+
"test-generate": {
|
|
223
|
+
"template": "{file:./command/test-generate.md}",
|
|
224
|
+
"description": "Generate comprehensive test suites for existing code"
|
|
225
|
+
},
|
|
226
|
+
"subagent-spawning": {
|
|
227
|
+
"template": "{file:./command/subagent-spawning.md}",
|
|
228
|
+
"description": "Provides TDD-aware templates for spawning fresh subagents"
|
|
185
229
|
}
|
|
186
230
|
}
|
|
187
231
|
}
|