@a5c-ai/babysitter-opencode 5.0.0 → 5.0.1-staging.04ca6ab00d21

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.
@@ -5,4 +5,8 @@ description: Orchestrate a babysitter run. use this command to start babysitting
5
5
 
6
6
  # yolo
7
7
 
8
- Invoke the babysitter:babysit skill (using the Skill tool) and follow its instructions (SKILL.md). but without any user interaction or breakpoints in the run.
8
+ Run the Babysitter orchestration instructions directly through the CLI, without any user interaction or breakpoints. In Claude Code, use Bash to run `babysitter instructions:babysit-skill --harness claude-code --no-interactive`; in Codex, run `babysitter instructions:babysit-skill --harness codex --no-interactive`; in other harnesses, use the same command with that harness id. Then follow the returned instructions in this same turn until completion proof is produced. Do not stop after reading the instructions, do not invoke the Skill tool first, and use the non-interactive/no-breakpoints path when the instructions offer a mode choice.
9
+
10
+ User arguments for this command:
11
+
12
+ $ARGUMENTS
package/versions.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "sdkVersion": "5.0.1-staging.dfac8e4a",
3
- "extensionVersion": "5.0.0"
2
+ "sdkVersion": "5.0.1-staging.04ca6ab00d21",
3
+ "extensionVersion": "5.0.1-staging.04ca6ab00d21"
4
4
  }
@@ -1,24 +0,0 @@
1
- #!/usr/bin/env node
2
- "use strict";
3
- var execSync = require("child_process").execSync;
4
- var path = require("path");
5
- var readFileSync = require("fs").readFileSync;
6
-
7
- var PLUGIN_ROOT = process.env.PLUGIN_ROOT || process.env.PLUGIN_ROOT || path.resolve(__dirname, "..");
8
- var stdin = "";
9
- try { stdin = readFileSync(0, "utf8"); } catch {}
10
- try {
11
- var result = execSync("bash " + JSON.stringify(path.join(PLUGIN_ROOT, "hooks/session-idle.sh")), {
12
- input: stdin,
13
- stdio: ["pipe", "pipe", "pipe"],
14
- timeout: 30000,
15
- env: Object.assign({}, process.env, {
16
- HOOK_TYPE: process.env.HOOK_TYPE || "",
17
- ADAPTER_NAME: process.env.ADAPTER_NAME || "opencode",
18
- PLUGIN_ROOT: PLUGIN_ROOT
19
- })
20
- });
21
- process.stdout.write(result);
22
- } catch (e) {
23
- process.stdout.write("{}\n");
24
- }
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- babysitter hook:run --harness unified --hook-type session-idle --json