@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.
- package/README.md +17 -19
- package/bin/install-shared.js +1 -1
- package/commands/call.md +10 -6
- package/commands/cleanup.md +30 -8
- package/commands/contrib.md +31 -31
- package/commands/doctor.md +2 -3
- package/commands/forever.md +6 -6
- package/commands/help.md +2 -1
- package/commands/observe.md +6 -1
- package/commands/plan.md +7 -7
- package/commands/plugins.md +249 -249
- package/commands/project-install.md +10 -10
- package/commands/resume.md +8 -8
- package/commands/retrospect.md +55 -55
- package/commands/user-install.md +10 -10
- package/commands/yolo.md +5 -1
- package/hooks/babysitter-proxied-stop-hook.sh +3 -0
- package/hooks/hooks.json +0 -8
- package/package.json +3 -4
- package/plugin.json +1 -1
- package/scripts/publish-from-tag.mjs +32 -3
- package/skills/accomplish-status/SKILL.md +1 -1
- package/skills/babysit/SKILL.md +4 -3
- package/skills/call/SKILL.md +5 -1
- package/skills/cleanup/SKILL.md +30 -8
- package/skills/contrib/SKILL.md +25 -25
- package/skills/doctor/SKILL.md +2 -3
- package/skills/help/SKILL.md +2 -1
- package/skills/observe/SKILL.md +6 -1
- package/skills/plugins/SKILL.md +243 -243
- package/skills/project-install/SKILL.md +3 -3
- package/skills/resume/SKILL.md +1 -1
- package/skills/retrospect/SKILL.md +48 -48
- package/skills/user-install/SKILL.md +3 -3
- package/skills/yolo/SKILL.md +5 -1
- package/versions.json +2 -2
- package/hooks/babysitter-proxied-session-idle.js +0 -24
- package/hooks/babysitter-proxied-session-idle.sh +0 -3
package/skills/yolo/SKILL.md
CHANGED
|
@@ -5,4 +5,8 @@ description: Orchestrate a babysitter run. use this command to start babysitting
|
|
|
5
5
|
|
|
6
6
|
# yolo
|
|
7
7
|
|
|
8
|
-
|
|
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,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
|
-
}
|