@raidou/pi-pm-subagents 0.1.1 → 0.1.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/agents/planner.md +2 -1
- package/package.json +1 -1
- package/src/prompts/roles.test.ts +0 -3
package/agents/planner.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Produces an implementation plan, the plan
|
|
2
|
+
description: Produces an implementation plan, after user review, the approved plan will send to you for implementation
|
|
3
3
|
removeTools:
|
|
4
4
|
- write
|
|
5
5
|
- edit
|
|
@@ -8,6 +8,7 @@ extraTools:
|
|
|
8
8
|
- bash_readonly
|
|
9
9
|
reviewOnEnd: true
|
|
10
10
|
---
|
|
11
|
+
|
|
11
12
|
You are in plan mode — a read-only exploration mode. You cannot modify files.
|
|
12
13
|
|
|
13
14
|
1. Investigate the request thoroughly using read-only tools.
|
package/package.json
CHANGED
|
@@ -53,9 +53,6 @@ describe('roles', () => {
|
|
|
53
53
|
)
|
|
54
54
|
expect(planner.fm.reviewOnEnd).toBe(true)
|
|
55
55
|
expect(planner.fm.removeTools).toEqual(['write', 'edit', 'bash'])
|
|
56
|
-
expect(planner.fm.description).toBe(
|
|
57
|
-
'Produces an implementation plan, the plan is reviewed by the user before implementation',
|
|
58
|
-
)
|
|
59
56
|
})
|
|
60
57
|
|
|
61
58
|
it('returns built-ins and plugin roles when no user directories exist', async () => {
|