@amrhas82/agentic-kit 2.0.0 → 2.3.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,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  ---
19
19
 
20
+ ## [2.3.0] - 2026-01-22
21
+
22
+ ### Removed
23
+ - Removed `subagent-spawning` skill (functionality integrated into agents)
24
+
25
+ ### Changed
26
+ - Updated command/skill count from 21 to 20 across all documentation
27
+ - README.md: Updated command counts and removed subagent-spawning from skill list
28
+ - installer/cli.js: Updated welcome banner to reflect 20 commands
29
+ - package.json: Updated description to reflect 20 commands
30
+ - packages/subagentic-manual.md: Updated command counts
31
+
32
+ ---
33
+
20
34
  ## [1.11.1] - 2026-01-20
21
35
 
22
36
  ### Fixed
@@ -404,6 +418,7 @@ npx @amrhas82/agentic-kit
404
418
 
405
419
  | Version | Date | Key Features |
406
420
  |---------|------|--------------|
421
+ | **2.3.0** | 2026-01-22 | Removed subagent-spawning skill (20 commands) |
407
422
  | **1.11.1** | 2026-01-20 | Fixed missing commands in opencode.jsonc |
408
423
  | **1.11.0** | 2026-01-20 | Added /stash command (21 total commands) |
409
424
  | **1.2.1** | 2025-11-05 | Package optimization, repository cleanup |
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
10
10
  ```
11
11
 
12
- **AI development toolkit with 11 specialized agents and 21 commands per tool**
12
+ **AI development toolkit with 11 specialized agents and 20 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 11 agents + 21 commands
39
+ # Each tool gets 11 agents + 20 commands
40
40
  ```
41
41
 
42
42
  ### Supported Tools
43
43
 
44
- - **Claude Code** - 11 subagents + 11 skills + 10 commands
45
- - **Opencode** - 11 agent references + 21 commands
46
- - **Ampcode** - 11 subagents + 11 skills + 10 commands
47
- - **Droid** - 11 agent references + 21 commands
44
+ - **Claude Code** - 11 subagents + 10 skills + 10 commands
45
+ - **Opencode** - 11 agent references + 20 commands
46
+ - **Ampcode** - 11 subagents + 10 skills + 10 commands
47
+ - **Droid** - 11 agent references + 20 commands
48
48
 
49
49
  **Key Difference:**
50
50
  - **Claude Code / Ampcode**: Full subagent system with orchestrator + skills (auto-triggering)
@@ -86,13 +86,12 @@ agentic-kit
86
86
  - **system-architect** - System design, technology selection, API design, scalability planning
87
87
  - **ui-designer** - UI/UX design, wireframes, prototypes, accessibility, design systems
88
88
 
89
- ### 21 Commands/Skills
89
+ ### 20 Commands/Skills
90
90
 
91
- **Auto-Triggering Skills (4)** - Claude Code only:
91
+ **Auto-Triggering Skills (3)** - Claude Code only:
92
92
  - **test-driven-development** - Write test first, watch fail, minimal passing code
93
93
  - **testing-anti-patterns** - Prevent mocking anti-patterns
94
94
  - **verification-before-completion** - Verify before claiming done
95
- - **subagent-spawning** - TDD-aware templates for fresh subagents
96
95
 
97
96
  **Manual Skills/Commands (17):**
98
97
  - **brainstorming** - Structured brainstorming sessions
@@ -157,7 +156,7 @@ agentic-kit
157
156
  ## 📊 Stats
158
157
 
159
158
  - **11** Specialized Agents
160
- - **21** Workflow Commands & Skills
159
+ - **20** Workflow Commands & Skills
161
160
  - **4** Supported Tools (Claude, Opencode, Ampcode, Droid)
162
161
  - **MIT** License
163
162
 
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}v2.0.0 | 11 agents + 21 commands per tool${colors.reset}
454
+ ${colors.bright}v2.3.0 | 11 agents + 20 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": "2.0.0",
4
- "description": "AI development toolkit with 11 specialized agents and 21 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
3
+ "version": "2.3.0",
4
+ "description": "AI development toolkit with 11 specialized agents and 20 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",
@@ -22,7 +22,7 @@ These subagents are available when using Ampcode CLI.
22
22
  | system-architect | Architect | Use for system design, architecture documents, technology selection, API design, and infrastructure planning |
23
23
  | ui-designer | UX Expert | Use for UI/UX design, wireframes, prototypes, front-end specifications, and user experience optimization |
24
24
 
25
- ### Skills (11 total)
25
+ ### Skills (10 total)
26
26
 
27
27
  | ID | Description | Usage | Auto |
28
28
  |---|---|---|---|
@@ -32,7 +32,6 @@ These subagents are available when using Ampcode CLI.
32
32
  | docs-builder | Create comprehensive project documentation with structured /docs hierarchy | /docs-builder | false |
33
33
  | root-cause-tracing | Systematically traces bugs backward through call stack to identify source | /root-cause-tracing <issue-description> | false |
34
34
  | skill-creator | Guide for creating effective skills and extending Claude capabilities | /skill-creator <skill-type> <skill-description> | false |
35
- | subagent-spawning | Provides TDD-aware templates for spawning fresh subagents | Used by 3-process-task-list and other agents | true |
36
35
  | systematic-debugging | Four-phase debugging framework - investigate root cause before any fixes | /systematic-debugging <bug-or-error-description> | false |
37
36
  | test-driven-development | Write test first, watch it fail, write minimal code to pass | /test-driven-development <feature-or-behavior-to-test> | true |
38
37
  | testing-anti-patterns | Prevents testing mock behavior and production pollution with test-only methods | /testing-anti-patterns <testing-scenario> | true |
@@ -32,7 +32,7 @@ digraph CreatePRD {
32
32
 
33
33
  generate [label="Generate PRD\n(what/why, not how)"];
34
34
  review [label="Self-review:\nRemove bloat\nClarify vague\nUnknowns → Open Qs", fillcolor=orange];
35
- save [label="Save to\n/tasks/prd-[feature].md"];
35
+ save [label="Save to\n/tasks/[feature]/prd.md"];
36
36
 
37
37
  present [label="Present PRD\nOffer: A) Feedback\nB) Proceed to tasks", fillcolor=yellow];
38
38
  user_choice [label="User chooses", shape=diamond];
@@ -71,9 +71,10 @@ digraph CreatePRD {
71
71
  ## CRITICAL RULES
72
72
 
73
73
  1. **NEVER assume** - Users may be non-technical. Ask essential questions to fill gaps, don't infer
74
- 2. **NEVER answer for user** - Present options with A/B/C/D. May mark ONE as "(Recommended)". User chooses
75
- 3. **Focus on WHAT and WHY** - Not how. Developers figure out implementation
76
- 4. **Self-review before presenting** - Fix bloat/redundancy/gaps internally, then show user final PRD
74
+ 2. **NEVER answer for user** - Present options with A/B/C/D. MUST mark one as "(Recommended)" with brief reasoning. User makes final decision with full context
75
+ 3. **USE AskUserQuestion tool** - When asking questions, use the `AskUserQuestion` tool to display clickable options. Fallback to markdown format if tool unavailable
76
+ 4. **Focus on WHAT and WHY** - Not how. Developers figure out implementation
77
+ 5. **Self-review before presenting** - Fix bloat/redundancy/gaps internally, then show user final PRD
77
78
 
78
79
  ## Phase 1: Input
79
80
 
@@ -83,21 +84,36 @@ digraph CreatePRD {
83
84
 
84
85
  ## Phase 2: Elicitation (Max 2 Rounds, Max 10 Questions)
85
86
 
86
- 4. **Round 1:** Ask 3-5 most essential questions
87
+ 4. **Round 1:** Ask 3-5 most essential questions using `AskUserQuestion` tool:
88
+ ```javascript
89
+ AskUserQuestion({
90
+ questions: [{
91
+ question: "Your question here?",
92
+ header: "Short Label",
93
+ multiSelect: false,
94
+ options: [
95
+ {label: "Option A", description: "What this means"},
96
+ {label: "Option B (Recommended)", description: "Why recommended"},
97
+ {label: "Option C", description: "What this means"}
98
+ ]
99
+ }]
100
+ })
101
+ ```
102
+
103
+ **Markdown fallback** (if tool unavailable):
87
104
  ```
88
105
  1. [Question]?
89
106
  A) [Option]
90
107
  B) [Option]
91
- C) [Option]
108
+ C) [Option] ⭐ Recommended - [brief reason]
92
109
  D) Other (specify)
93
- *Recommended: A - [reason]* (optional)
94
110
 
95
111
  2. [Question]?
96
112
  A) ...
97
113
  ```
98
- End with: *"Reply with choices (e.g., 1A, 2C, 3B)"*
114
+ End with: *"Reply with choices (e.g., 1A, 2C, 3B) or 'accept recommendations'"*
99
115
 
100
- 5. **STOP. WAIT for answers.** If partial answers → follow up on unanswered before proceeding.
116
+ 5. **STOP. WAIT for answers.** User needs to see all options AND your recommendation to make informed choice. If partial answers → follow up on unanswered before proceeding.
101
117
 
102
118
  6. **Round 2 (if critical gaps remain):** Ask remaining essential questions (max 5 more)
103
119
  - Same format, STOP and wait
@@ -125,11 +141,11 @@ End with: *"Reply with choices (e.g., 1A, 2C, 3B)"*
125
141
  - Note any mentioned tech/framework constraints (don't expand)
126
142
  - Move remaining unknowns to Open Questions
127
143
 
128
- 10. Save to `/tasks/prd-[feature-name].md`
144
+ 10. Save to `/tasks/[feature-name]/prd.md`
129
145
 
130
146
  11. Present completed PRD and offer:
131
147
  ```
132
- PRD saved to /tasks/prd-[feature-name].md
148
+ PRD saved to /tasks/[feature-name]/prd.md
133
149
  Note: Check Open Questions for items needing clarification.
134
150
 
135
151
  A) Review and provide feedback (I'll incorporate and re-review)
@@ -12,7 +12,7 @@ You are an expert Technical Program Manager translating PRDs into precise, actio
12
12
 
13
13
  **DO NOT STOP** after generating parent tasks. **DO NOT PAUSE** between tasks.
14
14
  Generate the COMPLETE task list (parents + all subtasks) in ONE pass, then save it.
15
- Only ask the user for CRITICAL gaps (see Handling PRD Gaps below). If PRD is fundamentally broken, escalate to `1-create-prd` agent.
15
+ Only ask the user for CRITICAL gaps (see Handling PRD Gaps below). When asking, present options A/B/C/D with one marked as recommended. If PRD is fundamentally broken, escalate to `1-create-prd` agent.
16
16
 
17
17
  ## Workflow Visualization
18
18
 
@@ -30,7 +30,7 @@ digraph GenerateTasks {
30
30
  generate_all [label="Generate ALL tasks:\nparents + subtasks\n(DO NOT STOP)"];
31
31
  list_files [label="List relevant files"];
32
32
  add_notes [label="Add implementation\nnotes"];
33
- save [label="Save to\n/tasks/tasks-*.md"];
33
+ save [label="Save to\n/tasks/[feature]/tasks.md"];
34
34
  self_verify [label="Verify:\n- All reqs covered\n- No bloat/redundancy", shape=diamond];
35
35
  fix_issues [label="Fix gaps,\nremove bloat"];
36
36
  invoke_next [label="Invoke agent:\n3-process-task-list", fillcolor=lightgreen];
@@ -63,7 +63,7 @@ digraph GenerateTasks {
63
63
  5. **Generate ALL tasks in ONE pass** - Create 4-7 parent tasks with ALL subtasks immediately. Logical order (data models → API → UI), action-oriented titles. Start with `0.0 Create feature branch` unless repo doesn't use branches.
64
64
  6. **List relevant files** - All files to create/modify, include test files, group logically
65
65
  7. **Add implementation notes** - Testing instructions, patterns, potential challenges
66
- 8. **Save to** `/tasks/tasks-[prd-base-filename].md`
66
+ 8. **Save to** `/tasks/[feature-name]/tasks.md` (same folder as prd.md)
67
67
  9. **Self-verify** - Re-read PRD, check coverage and bloat per Self-Verification checklist
68
68
  10. **Invoke** `3-process-task-list` agent to begin implementation
69
69
 
@@ -142,15 +142,23 @@ Use this to determine if `tdd: yes`:
142
142
 
143
143
  | Gap Type | Action |
144
144
  |----------|--------|
145
- | **CRITICAL** (blocks understanding) | **STOP and ASK user** - e.g., missing scope, conflicting requirements, unclear core feature |
145
+ | **CRITICAL** (blocks understanding) | **STOP and ASK user** with A/B/C/D options + recommendation |
146
146
  | **Minor** (implementation detail) | Note in Notes section, pick sensible default, proceed |
147
147
 
148
- **Examples of CRITICAL gaps to ask about:**
149
- - "PRD mentions 'user authentication' but doesn't specify method (OAuth, email/password, SSO?)"
150
- - "PRD has conflicting requirements in sections 2 and 4"
151
- - "No acceptance criteria defined - what defines 'done'?"
148
+ **Format for CRITICAL gaps:**
149
+ ```
150
+ PRD Gap: [what's missing or unclear]
151
+
152
+ A) [Option]
153
+ B) [Option]
154
+ C) [Option] ⭐ Recommended - [why]
155
+ D) Other (specify)
156
+
157
+ Reply with choice (e.g., "C" or "accept recommendation")
158
+ ```
152
159
 
153
- **DO NOT ask about:** File naming, folder structure, coding style - use codebase patterns
160
+ **Examples:** Missing auth method, conflicting requirements, no acceptance criteria
161
+ **DO NOT ask about:** File naming, folder structure, coding style
154
162
 
155
163
  ## MANDATORY: Verify Subtask
156
164
 
@@ -171,7 +179,7 @@ Re-read PRD and review task list for:
171
179
  ### Coverage Check
172
180
  - [ ] Every PRD requirement has at least one task
173
181
  - [ ] Every parent ends with Verify subtask
174
- - [ ] Filename: `tasks-[prd-base-filename].md`
182
+ - [ ] Filename: `/tasks/[feature-name]/tasks.md`
175
183
 
176
184
  ### Bloat/Redundancy Check
177
185
  - [ ] No duplicate tasks covering same functionality