@amrhas82/agentic-kit 1.11.1 → 1.11.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "1.11.1",
3
+ "version": "1.11.3",
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
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.amp/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .amp/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .amp/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.amp/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -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
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.claude/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .claude/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .claude/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.claude/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.factory/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .factory/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .factory/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.factory/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -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
@@ -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 `.factory/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 .factory/stash/
37
+
38
+ # Restore from stash
39
+ cat .factory/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `.factory/stash/` (project-local)
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -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
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.opencode/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .opencode/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .opencode/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.opencode/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage