@e0ipso/ai-task-manager 1.24.0 → 1.25.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/package.json
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
This hook provides pre-planning guidance to ensure scope control, simplicity principles, and proper validation requirements are established before comprehensive plan creation.
|
|
4
4
|
|
|
5
|
+
|
|
6
|
+
Run this script to detect the assistant:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
assistant=$(node .ai/task-manager/config/scripts/detect-assistant.cjs)
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
<details>
|
|
13
|
+
<summary>
|
|
14
|
+
[IMPORTANT] Only for assistants that support assistant skills: Claude
|
|
15
|
+
</summary>
|
|
16
|
+
|
|
17
|
+
Analyze the current prompt in order to engage any relevant skills as necessary (either global or project skills).
|
|
18
|
+
</details>
|
|
19
|
+
|
|
5
20
|
## Scope Control Guidelines
|
|
6
21
|
|
|
7
22
|
**Critical: Implement ONLY what is explicitly requested**
|
|
@@ -11,6 +11,21 @@ This hook executes before task assignment to determine the most appropriate agen
|
|
|
11
11
|
- Select the most appropriate sub-agent (if any are available). If no sub-agent is appropriate, use the general-purpose one.
|
|
12
12
|
- Consider task-specific requirements from the task document
|
|
13
13
|
|
|
14
|
+
Run this script to detect the assistant:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
assistant=$(node .ai/task-manager/config/scripts/detect-assistant.cjs)
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
<details>
|
|
21
|
+
<summary>
|
|
22
|
+
[IMPORTANT] Only for assistants that support assistant skills: Claude
|
|
23
|
+
</summary>
|
|
24
|
+
|
|
25
|
+
Analyze the set of tasks skills in order to engage any relevant assistant skills as necessary (either global or project skills).
|
|
26
|
+
</details>
|
|
27
|
+
|
|
28
|
+
|
|
14
29
|
## Available Sub-Agents
|
|
15
30
|
Analyze the sub-agents available in your current assistant's agents directory. If none are available
|
|
16
31
|
or the available ones do not match the task's requirements, then use a generic
|