@amrhas82/agentic-kit 1.11.1 → 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/package.json +1 -1
- package/packages/ampcode/agents/3-process-task-list.md +19 -2
- package/packages/claude/agents/3-process-task-list.md +19 -2
- package/packages/droid/droids/3-process-task-list.md +19 -2
- package/packages/opencode/agent/2-generate-tasks.md +1 -0
- package/packages/opencode/agent/3-process-task-list.md +20 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amrhas82/agentic-kit",
|
|
3
|
-
"version": "1.11.
|
|
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 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
|