From a414bc8b24262f166452c208a88c129519855b1f Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 25 Mar 2026 14:20:09 +0000 Subject: [PATCH] fix: disinto init should activate dev, reviewer, and gardener agents by default (#671) Co-Authored-By: Claude Opus 4.6 (1M context) --- bin/disinto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bin/disinto b/bin/disinto index 1c8f88f..17d6898 100755 --- a/bin/disinto +++ b/bin/disinto @@ -1369,6 +1369,13 @@ p.write_text(text) fi fi + # Activate default agents (zero-cost when idle — they only invoke Claude + # when there is actual work, so an empty project burns no LLM tokens) + mkdir -p "${FACTORY_ROOT}/state" + touch "${FACTORY_ROOT}/state/.dev-active" + touch "${FACTORY_ROOT}/state/.reviewer-active" + touch "${FACTORY_ROOT}/state/.gardener-active" + echo "" echo "Done. Project ${project_name} is ready." echo " Config: ${toml_path}"