@w32191/just-loop 0.1.8 → 0.1.9

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.
@@ -4,10 +4,10 @@ export function parseRalphLoopCommand(input) {
4
4
  if (trimmed === "/cancel-ralph") {
5
5
  return { kind: "cancel" };
6
6
  }
7
- if (!/^\/ralph-loop(?:\s|$)/.test(trimmed)) {
7
+ if (!/^\/just-loop(?:\s|$)/.test(trimmed)) {
8
8
  return null;
9
9
  }
10
- let rest = trimmed.slice("/ralph-loop".length);
10
+ let rest = trimmed.slice("/just-loop".length);
11
11
  let maxIterations;
12
12
  let completionPromise = DEFAULT_COMPLETION_PROMISE;
13
13
  while (true) {
@@ -41,8 +41,8 @@ This will:
41
41
  Check if a loop is active and cancel it. Inform the user of the result.`;
42
42
  export function getBuiltinCommands() {
43
43
  return {
44
- "ralph-loop": {
45
- name: "ralph-loop",
44
+ "just-loop": {
45
+ name: "just-loop",
46
46
  description: "(builtin) Start self-referential development loop until completion",
47
47
  template: `<command-instruction>
48
48
  ${RALPH_LOOP_TEMPLATE}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@w32191/just-loop",
3
3
  "type": "module",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
5
5
  "description": "OpenCode plugin package for just-loop.",
6
6
  "license": "MIT",
7
7
  "repository": {