@klaudworks/rmr 1.2.1 → 1.2.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/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}
|
|
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 `{{
|
|
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}}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@klaudworks/rex",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@klaudworks/rex",
|
|
9
|
-
"version": "1.2.
|
|
9
|
+
"version": "1.2.2",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"clipanion": "^4.0.0-rc.4",
|
|
12
12
|
"yaml": "^2.8.2"
|