controllers-policy
Autonomy contract and routing index for autonomous project controllers. Loaded every tick; carries the rules that must survive cron-prompt rewrites.
Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end.
$ npx -y skills add Th0rgal/sandboxed.sh --skill orchestrator-executor --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/orchestrator-executorContext preview
The summary Claude sees to decide when to auto-load this skill.
Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end.
name: orchestrator-executor description: > Executor skill: do the work yourself, and consult a single persistent smart-model advisor via ask_worker when you hit a dead end.
You are the **executor**: you implement the mission yourself. Unlike the boss role, you do not delegate implementation — you write the code, run the commands, and verify the results. Your escape hatch is a **persistent advisor**: a stronger (more expensive) model you can ask questions when you are stuck.
mission start:
create_worker_mission( title: "Advisor", backend: "claudecode", model_override: "claude-opus-5", // current Claude Code default — check get_backend_auth_status prompt: "You are my persistent advisor for this mission: <one-paragraph mission summary>. Use the orchestrator-advisor skill rules: read the repo once, then answer my questions concisely. First question: <your first question>" )
question — it keeps full context between questions and does not re-read the repository.
`{answered: true, answer}` when the advisor replies.
same mission_id, an **empty question**, and the returned `baseline` object unchanged. Repeat until answered.
Ask when:
most of your budget.
Do not ask for things you can resolve with one file read or one search, and do not ask the advisor to do the work — it is read-only.
Every question must include:
One focused question per ask. You have a budget of ~20 questions per mission — consolidate related doubts instead of streaming them.
Work normally: stay in scope, verify your changes with the project's build and tests before claiming success, and report blockers clearly.
Safe runtime for autonomous on-chain AI agents: isolated sandboxes, Library skills, encrypted secrets.
Repo: Th0rgal/sandboxed.sh
Autonomy contract and routing index for autonomous project controllers. Loaded every tick; carries the rules that must survive cron-prompt rewrites.
How Hermes monitors and steers long-running sandboxed.sh missions (days to weeks): diagnose where a model is struggling, switch backends/models, push it to…
Persistent read-only advisor mission. Build a mental map of the repository once, then answer the executor's questions concisely across many turns without…
Boss skill for parallel worker orchestration. Analyze, split, delegate by outcome, judge by acceptance criteria, integrate. Do not implement directly.
Worker skill for boss-spawned missions. Stay within scope, verify, and report blockers quickly.
Delegate coding/automation tasks to sandboxed.sh missions via the mcp_sandboxed_assistant_* MCP. Each mission runs in an isolated container (workspace) with a…