rrce-workflow 0.2.93 → 0.2.95
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: RRCE Executor
|
|
3
3
|
description: Execute the planned tasks to deliver working code and tests. The ONLY agent authorized to modify source code.
|
|
4
4
|
argument-hint: "TASK_SLUG=<slug> [BRANCH=<git ref>]"
|
|
5
|
-
tools: ['search_knowledge', 'get_project_context', 'index_knowledge', 'update_task', 'terminalLastCommand', 'read', 'write', 'edit', 'bash', 'glob', 'grep']
|
|
5
|
+
tools: ['search_knowledge', 'search_code', 'find_related_files', 'get_project_context', 'index_knowledge', 'update_task', 'terminalLastCommand', 'read', 'write', 'edit', 'bash', 'glob', 'grep']
|
|
6
6
|
required-args:
|
|
7
7
|
- name: TASK_SLUG
|
|
8
8
|
prompt: "Enter the task slug to execute"
|
|
@@ -24,7 +24,9 @@ Use the pre-resolved paths from the "System Resolved Paths" table in the context
|
|
|
24
24
|
For details, see: `{{RRCE_DATA}}/docs/path-resolution.md`
|
|
25
25
|
|
|
26
26
|
### Tool Usage Guidance
|
|
27
|
-
- **search_knowledge**:
|
|
27
|
+
- **search_knowledge**: Use for finding documentation, concepts, or design decisions in knowledge files.
|
|
28
|
+
- **search_code**: PREFER this for finding code implementations, patterns, or understanding how features work. Returns code snippets with line numbers and function/class context.
|
|
29
|
+
- **find_related_files**: Use to discover files connected through imports/dependencies. Helpful for understanding impact of changes or finding all consumers of a module.
|
|
28
30
|
- **grep**: Use ONLY when searching for exact string patterns (e.g., specific function names, error codes).
|
|
29
31
|
|
|
30
32
|
## Pipeline Position
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: RRCE Planning
|
|
3
3
|
description: Transform research findings into an actionable execution plan through interactive task breakdown.
|
|
4
4
|
argument-hint: "TASK_SLUG=<slug>"
|
|
5
|
-
tools: ['search_knowledge', 'get_project_context', 'list_projects', 'update_task', 'read', 'glob', 'grep', 'write', 'bash']
|
|
5
|
+
tools: ['search_knowledge', 'search_code', 'find_related_files', 'get_project_context', 'list_projects', 'update_task', 'read', 'glob', 'grep', 'write', 'bash']
|
|
6
6
|
required-args:
|
|
7
7
|
- name: TASK_SLUG
|
|
8
8
|
prompt: "Enter the task slug to create a plan for"
|
|
@@ -21,7 +21,9 @@ Use the pre-resolved paths from the "System Resolved Paths" table in the context
|
|
|
21
21
|
For details, see: `{{RRCE_DATA}}/docs/path-resolution.md`
|
|
22
22
|
|
|
23
23
|
### Tool Usage Guidance
|
|
24
|
-
- **search_knowledge**:
|
|
24
|
+
- **search_knowledge**: Use for finding documentation, concepts, or design decisions.
|
|
25
|
+
- **search_code**: PREFER this for finding code implementations. Helps estimate task complexity by finding similar patterns.
|
|
26
|
+
- **find_related_files**: Use to understand dependencies for breaking down tasks and identifying impact.
|
|
25
27
|
- **grep**: Use ONLY when searching for exact string patterns (e.g., specific function names, error codes).
|
|
26
28
|
|
|
27
29
|
## Pipeline Position
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: RRCE Research
|
|
3
3
|
description: Interactive research and requirements clarification through constructive dialogue. Achieves 100% understanding before planning.
|
|
4
4
|
argument-hint: REQUEST="<user prompt>" [TASK_SLUG=<slug>] [TITLE="<task title>"] [SOURCE=<url>]
|
|
5
|
-
tools: ['search_knowledge', 'get_project_context', 'list_projects', 'create_task', 'update_task', 'read', 'glob', 'grep', 'write', 'bash']
|
|
5
|
+
tools: ['search_knowledge', 'search_code', 'find_related_files', 'get_project_context', 'list_projects', 'create_task', 'update_task', 'read', 'glob', 'grep', 'write', 'bash']
|
|
6
6
|
required-args:
|
|
7
7
|
- name: TASK_SLUG
|
|
8
8
|
prompt: "Enter a task slug (kebab-case identifier)"
|
|
@@ -28,7 +28,9 @@ Use the pre-resolved paths from the "System Resolved Paths" table in the context
|
|
|
28
28
|
For details, see: `{{RRCE_DATA}}/docs/path-resolution.md`
|
|
29
29
|
|
|
30
30
|
### Tool Usage Guidance
|
|
31
|
-
- **search_knowledge**:
|
|
31
|
+
- **search_knowledge**: Use for finding documentation, concepts, or design decisions in knowledge files.
|
|
32
|
+
- **search_code**: PREFER this for finding code implementations or patterns. Returns code snippets with line numbers and function/class context.
|
|
33
|
+
- **find_related_files**: Use to understand file relationships and dependencies. Helpful for scoping impact.
|
|
32
34
|
- **grep**: Use ONLY when searching for exact string patterns (e.g., specific function names, error codes).
|
|
33
35
|
|
|
34
36
|
## Pipeline Position
|