@klaudworks/rmr 1.2.1 → 1.2.3

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/README.md CHANGED
@@ -149,10 +149,13 @@ Run state is persisted after every step to `.rmr/runs/`, so `rmr continue <run-i
149
149
 
150
150
  ## Provided Workflows
151
151
 
152
- ### [feature-dev](docs/workflows/feature-dev/)
152
+ <details open>
153
+ <summary><strong>feature-dev</strong></summary>
153
154
 
154
155
  Plan, implement, and review a single feature end-to-end with an automatic revision loop.
155
156
 
157
+ See docs for more info: [docs/workflows/feature-dev/](docs/workflows/feature-dev/)
158
+
156
159
  <p align="center">
157
160
  <img src="docs/workflows/feature-dev/flow.svg" width="720" />
158
161
  </p>
@@ -162,17 +165,20 @@ rmr install feature-dev
162
165
  rmr run .rmr/workflows/feature-dev/workflow.yaml
163
166
  ```
164
167
 
168
+ </details>
169
+
165
170
  <details>
166
171
  <summary><strong>beads</strong> (requires beads + toon)</summary>
167
172
 
168
173
  Autonomous issue loop powered by Beads: pick the next issue, plan, implement,
169
174
  review, then continue with the next issue.
170
175
 
171
- See docs: [docs/workflows/beads/](docs/workflows/beads/)
176
+ See docs for more info: [docs/workflows/beads/](docs/workflows/beads/)
172
177
 
173
178
  Prerequisites:
174
179
  - [beads](https://github.com/steveyegge/beads)
175
180
  - [toon](https://github.com/toon-format/toon?tab=readme-ov-file)
181
+ - Beads issues created semi-automatically together with your coding agent
176
182
 
177
183
  ```bash
178
184
  rmr install beads
package/dist/index.js CHANGED
@@ -12095,18 +12095,16 @@ class InstallCommand extends BaseCommand {
12095
12095
  const installedWorkflowPath = `.rmr/workflows/${this.workflowName}/${workflowFileName}`;
12096
12096
  const runHint = workflowRequiresTask(sourceWorkflow) ? `${binaryName} run ${installedWorkflowPath} --task "Describe your task"` : `${binaryName} run ${installedWorkflowPath}`;
12097
12097
  const defaultHarness = getWorkflowDefaultHarness(sourceWorkflow);
12098
- const harnessHint = `To use codex or opencode, edit ${installedWorkflowPath} and change "harness:"` + ` (optionally "model:").`;
12098
+ const harnessHint = `Default harness: ${defaultHarness}. ` + `To use codex or opencode, edit ${installedWorkflowPath}.`;
12099
12099
  if (existsSync(destinationDir)) {
12100
12100
  ui.info(`Workflow already installed at .rmr/workflows/${this.workflowName}/`);
12101
12101
  ui.info(`Run it with: ${runHint}`);
12102
- ui.info(`Default harness: ${defaultHarness}`);
12103
12102
  ui.info(harnessHint);
12104
12103
  return 0;
12105
12104
  }
12106
12105
  await cp(sourceDir, destinationDir, { recursive: true, force: false, errorOnExist: true });
12107
12106
  ui.success(`installed .rmr/workflows/${this.workflowName}/`);
12108
12107
  ui.info(`Run it with: ${runHint}`);
12109
- ui.info(`Default harness: ${defaultHarness}`);
12110
12108
  ui.info(harnessHint);
12111
12109
  return 0;
12112
12110
  }
@@ -12,8 +12,7 @@ Use issue comments as the source of truth for research context and plan.
12
12
  ## Workflow
13
13
 
14
14
  1. Determine issue id:
15
- - Use `{{verify.issue_id}}` if present (loop-back from review).
16
- - Otherwise use `{{plan.issue_id}}`.
15
+ - Use `{{plan.issue_id}}`.
17
16
  2. If needed, claim issue:
18
17
  `bd update <issue-id> --status in_progress --json | toon`
19
18
  3. Read issue comments once:
@@ -76,4 +75,3 @@ If blocked after 3 attempts:
76
75
 
77
76
  Reviewer feedback: {{verify.issues}}
78
77
  Planned issue: {{plan.issue_id}}
79
- Loop issue: {{verify.issue_id}}
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@klaudworks/rex",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@klaudworks/rex",
9
- "version": "1.2.1",
9
+ "version": "1.2.3",
10
10
  "dependencies": {
11
11
  "clipanion": "^4.0.0-rc.4",
12
12
  "yaml": "^2.8.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klaudworks/rmr",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Define multi-step coding workflows for AI agents",
5
5
  "license": "MIT",
6
6
  "repository": {