sisyphi 1.2.0 → 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.
Files changed (23) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/cli.js.map +1 -1
  3. package/dist/templates/agent-plugin/hooks/CLAUDE.md +4 -4
  4. package/dist/templates/agent-plugin/hooks/hooks.json +1 -1
  5. package/dist/templates/agent-plugin/hooks/register-bg-task.sh +10 -7
  6. package/dist/templates/orchestrator-base.md +8 -10
  7. package/dist/templates/orchestrator-impl.md +5 -1
  8. package/dist/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -1
  9. package/package.json +2 -2
  10. package/templates/agent-plugin/hooks/CLAUDE.md +4 -4
  11. package/templates/agent-plugin/hooks/hooks.json +1 -1
  12. package/templates/agent-plugin/hooks/register-bg-task.sh +10 -7
  13. package/templates/orchestrator-base.md +8 -10
  14. package/templates/orchestrator-impl.md +5 -1
  15. package/templates/orchestrator-plugin/skills/orchestration/CLAUDE.md +1 -1
  16. package/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/CHANGELOG.md +0 -1277
  17. package/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/LICENSE +0 -373
  18. package/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/README.md +0 -202
  19. package/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/terraform-provider-hcloud_v1.62.0 +0 -0
  20. package/dist/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/CHANGELOG.md +0 -1277
  21. package/dist/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/LICENSE +0 -373
  22. package/dist/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/README.md +0 -202
  23. package/dist/deploy/hetzner/.terraform/providers/registry.terraform.io/hetznercloud/hcloud/1.62.0/darwin_arm64/terraform-provider-hcloud_v1.62.0 +0 -0
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)").option("--mode <mode>", "System prompt mode for next cycle (discovery, planning, implementation, validation, completion)").option("--session <sessionId>", "Session ID (defaults to SISYPHUS_SESSION_ID env var)").action(async (opts) => {
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) {