You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Bounded Autonomy (v3.5.0):** Goal queue + cron/file triggers + skill-lifecycle manager + autonomous daemon. Three hard safety invariants: no gate → no daemon; headless → ask=deny; budget exhausted → hook summons the human.
71
71
72
+
**SinCode Loop System (always-on Definition-of-Done):** Every goal automatically carries the "self-evident" follow-through — write tests, debug, remove scaffolding, finish the job, and keep `README`/`CHANGELOG`/`AGENTS.md`/`MASTER_TODO`/`.doc.md` CoDocs in sync — so you never have to tell an agent to do that work again. The baseline is merged into every contract, stated to the worker up front, and enforced by the independent stop-gate. ON by default in `daemon` and `auto run`; escape with `--no-baseline` or `SIN_BASELINE=off`.
73
+
72
74
**Self-Extending (v3.4.0+):**`sin_bootstrap_skill` writes Python MCP servers from natural-language specs, tests them, and deploys them on the fly (defense-in-depth: requires `SIN_ALLOW_BOOTSTRAP=1`).
73
75
74
76
**Time-Travel Debugging:** Fork any session at any turn to explore parallel solution paths (`sin-code session fork <id> <turn>`).
cmd.Flags().IntVar(&maxExperiments, "max-experiments", 0, "experiment cap (overrides program.md)")
173
192
cmd.Flags().IntVar(&maxTurns, "max-turns", 60, "max agent turns per experiment")
193
+
cmd.Flags().BoolVar(&noBaseline, "no-baseline", false, "disable the always-on SinCode loop baseline (tests/debug/docs/completeness DoD); also via SIN_BASELINE=off")
0 commit comments