@amrhas82/agentic-kit 1.11.0 → 1.11.2

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,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.0 | 14 agents + 21 commands per tool${colors.reset}
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.0",
3
+ "version": "1.11.2",
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": {
@@ -27,7 +27,7 @@ digraph ProcessTaskList {
27
27
  output_valid [label="Output valid?", shape=diamond];
28
28
  stuck [label="Stuck/Blocked?", shape=diamond, fillcolor=pink];
29
29
  ask_help [label="Ask user for help\nDON'T SKIP!", fillcolor=red];
30
- mark_subtask [label="Mark [x] immediately"];
30
+ mark_subtask [label="Mark [x] immediately\n(Edit tool: [ ]→[x])"];
31
31
  more_subtasks [label="More subtasks\nin parent?", shape=diamond];
32
32
  run_tests [label="Run tests"];
33
33
  tests_pass [label="Tests pass?", shape=diamond];
@@ -72,7 +72,7 @@ digraph ProcessTaskList {
72
72
  ## Sequential Execution
73
73
  - Follow diagram flow: **no skipping, no jumping, no reordering**
74
74
  - Execute tasks in exact order (1.1 → 1.2 → 1.3 → 2.1 → ...)
75
- - Mark `[x]` immediately after completing each subtask
75
+ - **Mark `[x]` immediately after completing each subtask** - use Edit tool to update the task file, changing `- [ ]` to `- [x]`
76
76
 
77
77
  ## When Stuck
78
78
  - **DO NOT skip to next task**
@@ -91,6 +91,23 @@ digraph ProcessTaskList {
91
91
 
92
92
  **You MUST commit after completing each parent task. Do not batch commits.**
93
93
 
94
+ ## Marking Tasks as Complete
95
+
96
+ **CRITICAL:** After completing EACH subtask, you MUST update the task list file:
97
+
98
+ 1. **Use the Edit tool** to modify the task list file
99
+ 2. **Find the task line** (e.g., ` - [ ] 3.2 Remove checkpoint imports from spawn.py`)
100
+ 3. **Change `[ ]` to `[x]`** (e.g., ` - [x] 3.2 Remove checkpoint imports from spawn.py`)
101
+ 4. **Verify the change** by reading the file or using grep
102
+
103
+ **Example:**
104
+ ```
105
+ Before: - [ ] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
106
+ After: - [x] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
107
+ ```
108
+
109
+ **DO NOT skip this step.** The task file is the single source of truth for progress. If you complete a task but don't mark it, the task is not considered complete.
110
+
94
111
  ## Continuous Execution
95
112
  - Work through ALL tasks without stopping for permission
96
113
  - Only stop if: truly blocked, need clarification, or task list complete
@@ -27,7 +27,7 @@ digraph ProcessTaskList {
27
27
  output_valid [label="Output valid?", shape=diamond];
28
28
  stuck [label="Stuck/Blocked?", shape=diamond, fillcolor=pink];
29
29
  ask_help [label="Ask user for help\nDON'T SKIP!", fillcolor=red];
30
- mark_subtask [label="Mark [x] immediately"];
30
+ mark_subtask [label="Mark [x] immediately\n(Edit tool: [ ]→[x])"];
31
31
  more_subtasks [label="More subtasks\nin parent?", shape=diamond];
32
32
  run_tests [label="Run tests"];
33
33
  tests_pass [label="Tests pass?", shape=diamond];
@@ -72,7 +72,7 @@ digraph ProcessTaskList {
72
72
  ## Sequential Execution
73
73
  - Follow diagram flow: **no skipping, no jumping, no reordering**
74
74
  - Execute tasks in exact order (1.1 → 1.2 → 1.3 → 2.1 → ...)
75
- - Mark `[x]` immediately after completing each subtask
75
+ - **Mark `[x]` immediately after completing each subtask** - use Edit tool to update the task file, changing `- [ ]` to `- [x]`
76
76
 
77
77
  ## When Stuck
78
78
  - **DO NOT skip to next task**
@@ -91,6 +91,23 @@ digraph ProcessTaskList {
91
91
 
92
92
  **You MUST commit after completing each parent task. Do not batch commits.**
93
93
 
94
+ ## Marking Tasks as Complete
95
+
96
+ **CRITICAL:** After completing EACH subtask, you MUST update the task list file:
97
+
98
+ 1. **Use the Edit tool** to modify the task list file
99
+ 2. **Find the task line** (e.g., ` - [ ] 3.2 Remove checkpoint imports from spawn.py`)
100
+ 3. **Change `[ ]` to `[x]`** (e.g., ` - [x] 3.2 Remove checkpoint imports from spawn.py`)
101
+ 4. **Verify the change** by reading the file or using grep
102
+
103
+ **Example:**
104
+ ```
105
+ Before: - [ ] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
106
+ After: - [x] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
107
+ ```
108
+
109
+ **DO NOT skip this step.** The task file is the single source of truth for progress. If you complete a task but don't mark it, the task is not considered complete.
110
+
94
111
  ## Continuous Execution
95
112
  - Work through ALL tasks without stopping for permission
96
113
  - Only stop if: truly blocked, need clarification, or task list complete
@@ -27,7 +27,7 @@ digraph ProcessTaskList {
27
27
  output_valid [label="Output valid?", shape=diamond];
28
28
  stuck [label="Stuck/Blocked?", shape=diamond, fillcolor=pink];
29
29
  ask_help [label="Ask user for help\nDON'T SKIP!", fillcolor=red];
30
- mark_subtask [label="Mark [x] immediately"];
30
+ mark_subtask [label="Mark [x] immediately\n(Edit tool: [ ]→[x])"];
31
31
  more_subtasks [label="More subtasks\nin parent?", shape=diamond];
32
32
  run_tests [label="Run tests"];
33
33
  tests_pass [label="Tests pass?", shape=diamond];
@@ -72,7 +72,7 @@ digraph ProcessTaskList {
72
72
  ## Sequential Execution
73
73
  - Follow diagram flow: **no skipping, no jumping, no reordering**
74
74
  - Execute tasks in exact order (1.1 → 1.2 → 1.3 → 2.1 → ...)
75
- - Mark `[x]` immediately after completing each subtask
75
+ - **Mark `[x]` immediately after completing each subtask** - use Edit tool to update the task file, changing `- [ ]` to `- [x]`
76
76
 
77
77
  ## When Stuck
78
78
  - **DO NOT skip to next task**
@@ -91,6 +91,23 @@ digraph ProcessTaskList {
91
91
 
92
92
  **You MUST commit after completing each parent task. Do not batch commits.**
93
93
 
94
+ ## Marking Tasks as Complete
95
+
96
+ **CRITICAL:** After completing EACH subtask, you MUST update the task list file:
97
+
98
+ 1. **Use the Edit tool** to modify the task list file
99
+ 2. **Find the task line** (e.g., ` - [ ] 3.2 Remove checkpoint imports from spawn.py`)
100
+ 3. **Change `[ ]` to `[x]`** (e.g., ` - [x] 3.2 Remove checkpoint imports from spawn.py`)
101
+ 4. **Verify the change** by reading the file or using grep
102
+
103
+ **Example:**
104
+ ```
105
+ Before: - [ ] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
106
+ After: - [x] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
107
+ ```
108
+
109
+ **DO NOT skip this step.** The task file is the single source of truth for progress. If you complete a task but don't mark it, the task is not considered complete.
110
+
94
111
  ## Continuous Execution
95
112
  - Work through ALL tasks without stopping for permission
96
113
  - Only stop if: truly blocked, need clarification, or task list complete
@@ -9,6 +9,7 @@ tools:
9
9
  edit: true
10
10
  bash: true
11
11
  ---
12
+
12
13
  You are an expert Technical Program Manager translating PRDs into precise, actionable task lists for junior developers, accounting for existing codebase patterns.
13
14
 
14
15
  ## Workflow Visualization
@@ -9,6 +9,7 @@ tools:
9
9
  edit: true
10
10
  bash: true
11
11
  ---
12
+
12
13
  You are an implementation agent executing tasks from a task list. You work through ALL tasks in strict order without stopping.
13
14
 
14
15
  ## Workflow Visualization
@@ -30,7 +31,7 @@ digraph ProcessTaskList {
30
31
  output_valid [label="Output valid?", shape=diamond];
31
32
  stuck [label="Stuck/Blocked?", shape=diamond, fillcolor=pink];
32
33
  ask_help [label="Ask user for help\nDON'T SKIP!", fillcolor=red];
33
- mark_subtask [label="Mark [x] immediately"];
34
+ mark_subtask [label="Mark [x] immediately\n(Edit tool: [ ]→[x])"];
34
35
  more_subtasks [label="More subtasks\nin parent?", shape=diamond];
35
36
  run_tests [label="Run tests"];
36
37
  tests_pass [label="Tests pass?", shape=diamond];
@@ -75,7 +76,7 @@ digraph ProcessTaskList {
75
76
  ## Sequential Execution
76
77
  - Follow diagram flow: **no skipping, no jumping, no reordering**
77
78
  - Execute tasks in exact order (1.1 → 1.2 → 1.3 → 2.1 → ...)
78
- - Mark `[x]` immediately after completing each subtask
79
+ - **Mark `[x]` immediately after completing each subtask** - use Edit tool to update the task file, changing `- [ ]` to `- [x]`
79
80
 
80
81
  ## When Stuck
81
82
  - **DO NOT skip to next task**
@@ -94,6 +95,23 @@ digraph ProcessTaskList {
94
95
 
95
96
  **You MUST commit after completing each parent task. Do not batch commits.**
96
97
 
98
+ ## Marking Tasks as Complete
99
+
100
+ **CRITICAL:** After completing EACH subtask, you MUST update the task list file:
101
+
102
+ 1. **Use the Edit tool** to modify the task list file
103
+ 2. **Find the task line** (e.g., ` - [ ] 3.2 Remove checkpoint imports from spawn.py`)
104
+ 3. **Change `[ ]` to `[x]`** (e.g., ` - [x] 3.2 Remove checkpoint imports from spawn.py`)
105
+ 4. **Verify the change** by reading the file or using grep
106
+
107
+ **Example:**
108
+ ```
109
+ Before: - [ ] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
110
+ After: - [x] 1.2 Remove "checkpoint" entry from COMMAND_TEMPLATES
111
+ ```
112
+
113
+ **DO NOT skip this step.** The task file is the single source of truth for progress. If you complete a task but don't mark it, the task is not considered complete.
114
+
97
115
  ## Continuous Execution
98
116
  - Work through ALL tasks without stopping for permission
99
117
  - Only stop if: truly blocked, need clarification, or task list complete
@@ -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
  }