@klaudworks/rmr 0.4.5 → 1.0.1

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.
@@ -63,3 +63,7 @@ For rejected issues (terminates the workflow):
63
63
  <rmr:summary>Why this issue was rejected</rmr:summary>
64
64
  <rmr:plan>N/A</rmr:plan>
65
65
  ```
66
+
67
+ ## Context
68
+
69
+ Task: {{task}}
@@ -61,3 +61,11 @@ Use `<rmr:next_state>` to route the workflow.
61
61
  - Add unrelated tests
62
62
  - Approve changes that fail build or tests
63
63
  - Skip or weaken tests to make the suite pass
64
+
65
+ ## Context
66
+
67
+ Task: {{task}}
68
+ Plan: {{plan.plan}}
69
+ Developer summary: {{implement.summary}}
70
+ Commit: {{implement.commit}}
71
+ Tests: {{implement.tests}}
@@ -51,3 +51,9 @@ If blocked after 3 attempts:
51
51
  <rmr:status>human_intervention_required</rmr:status>
52
52
  <rmr:reason>What is blocking and what was tried</rmr:reason>
53
53
  ```
54
+
55
+ ## Context
56
+
57
+ Task: {{task}}
58
+ Plan: {{plan.plan}}
59
+ Reviewer feedback: {{verify.issues}}
@@ -1,61 +1,23 @@
1
- # Feature development workflow for rmr.
2
- # Three agents: planner (research + plan), tackle (implement), review (verify).
3
- # The review step can loop back to implement or escalate to human intervention.
4
- #
5
- # Agent prompts are co-located with this workflow in the same folder.
6
- # Step inputs only pass dynamic context (variables from prior steps).
7
- # Variables reference step IDs: {{step_id.key}}
8
- #
9
- # Routing is controlled by <next_state> in agent output.
10
- # The planner can reject a task by setting next_state=done.
11
- # The reviewer can request changes by setting next_state=implement.
12
-
13
1
  id: feature-dev
14
2
  name: Feature Development
15
-
16
- agents:
17
- - id: planner
18
- harness: claude
19
- prompt: planner-agent.md
20
-
21
- - id: developer
22
- harness: claude
23
- prompt: tackle-agent.md
24
-
25
- - id: reviewer
26
- harness: claude
27
- prompt: review-agent.md
3
+ harness: claude
28
4
 
29
5
  steps:
30
6
  - id: plan
31
- agent: planner
32
- default_next: implement
33
- input_required: [task]
34
- outputs:
35
- required: []
36
- input: |
37
- Task: {{task}}
7
+ prompt_file: planner-agent.md
8
+ next_step: implement
9
+ requires:
10
+ inputs: [task]
38
11
 
39
12
  - id: implement
40
- agent: developer
41
- default_next: verify
42
- input_required: [task, plan.plan]
43
- outputs:
44
- required: [summary]
45
- input: |
46
- Task: {{task}}
47
- Plan: {{plan.plan}}
48
- Reviewer feedback: {{verify.issues}}
13
+ prompt_file: tackle-agent.md
14
+ next_step: verify
15
+ requires:
16
+ inputs: [task, plan.plan]
17
+ outputs: [summary]
49
18
 
50
19
  - id: verify
51
- agent: reviewer
52
- default_next: done
53
- input_required: [implement.summary]
54
- outputs:
55
- required: []
56
- input: |
57
- Task: {{task}}
58
- Plan: {{plan.plan}}
59
- Developer summary: {{implement.summary}}
60
- Commit: {{implement.commit}}
61
- Tests: {{implement.tests}}
20
+ prompt_file: review-agent.md
21
+ next_step: done
22
+ requires:
23
+ inputs: [implement.summary]
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@klaudworks/rex",
3
- "version": "0.4.5",
3
+ "version": "1.0.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@klaudworks/rex",
9
- "version": "0.4.5",
9
+ "version": "1.0.1",
10
10
  "dependencies": {
11
11
  "clipanion": "^4.0.0-rc.4",
12
12
  "yaml": "^2.8.2"
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@klaudworks/rmr",
3
- "version": "0.4.5",
3
+ "version": "1.0.1",
4
4
  "description": "Define multi-step coding workflows for AI agents",
5
+ "license": "MIT",
5
6
  "repository": {
6
7
  "type": "git",
7
8
  "url": "https://github.com/klaudworks/ralph-meets-rex"