sisyphi 1.1.40 → 1.2.1
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/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/templates/agent-plugin/hooks/CLAUDE.md +4 -4
- package/dist/templates/agent-plugin/hooks/hooks.json +1 -1
- package/dist/templates/agent-plugin/hooks/register-bg-task.sh +10 -7
- package/dist/templates/orchestrator-base.md +8 -10
- package/dist/templates/orchestrator-impl.md +5 -1
- package/dist/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -1
- package/package.json +2 -2
- package/templates/agent-plugin/hooks/CLAUDE.md +4 -4
- package/templates/agent-plugin/hooks/hooks.json +1 -1
- package/templates/agent-plugin/hooks/register-bg-task.sh +10 -7
- package/templates/orchestrator-base.md +8 -10
- package/templates/orchestrator-impl.md +5 -1
- package/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -1
package/dist/cli.js
CHANGED
|
@@ -5287,7 +5287,7 @@ function registerAgentRestart(program2) {
|
|
|
5287
5287
|
|
|
5288
5288
|
// src/cli/commands/yield.ts
|
|
5289
5289
|
function registerYield(program2) {
|
|
5290
|
-
program2.command("yield").description("Yield control back to daemon (orchestrator only)").option("--prompt <text>", "Short orienting nudge for the next cycle (or pipe via stdin) \u2014 name what just happened; leave tactical decisions to the fresh read of the reports").option("--stdin", "Force-read prompt from stdin (avoids shell escaping for long prompts)").
|
|
5290
|
+
program2.command("yield").description("Yield control back to daemon (orchestrator only)").option("--prompt <text>", "Short orienting nudge for the next cycle (or pipe via stdin) \u2014 name what just happened; leave tactical decisions to the fresh read of the reports").option("--stdin", "Force-read prompt from stdin (avoids shell escaping for long prompts)").requiredOption("--mode <mode>", "System prompt mode for next cycle (discovery, planning, implementation, validation, completion). Required \u2014 pass the current mode to stay in it.").option("--session <sessionId>", "Session ID (defaults to SISYPHUS_SESSION_ID env var)").action(async (opts) => {
|
|
5291
5291
|
assertTmux();
|
|
5292
5292
|
const sessionId = opts.session ?? process.env.SISYPHUS_SESSION_ID;
|
|
5293
5293
|
if (!sessionId) {
|