Home About Hands-off mode
Automation · optional

Send a directive. Walk away.

Hands-off mode is a small auto-executor that runs on your own machine. It picks up the directives you send from the Hub, runs headless Claude Code in the right repo, and reports the result back to the timeline — with zero terminal babysitting.

Opt-in Whitelist-only Never pushes Pausable

What it is

DirectorHub works fully without it — the Claude Code connector already lets you pull work and report back by hand. Hands-off mode removes the last bit of friction: instead of triggering each directive in a terminal, a small program called directorhub-watcher runs quietly on your machine, watches for the directives you send, and executes them for you.

It's the same pull-only bridge — the Hub never reaches into your machine. The ignition key stays on your side: you install it, you choose which projects it may touch, and you can pause it at any moment.

The loop

Zero-terminal, end to end

You send an @executor directive

From any session, address a directive to the executor — a small, concrete task tied to that project.

The watcher picks it up

Running on your machine, it sees the directive on its next poll, acknowledges it, and the timeline shows “working (auto-executor)”.

It runs headless Claude Code

On a fresh directive/… branch in the mapped repo, with a strict tool allow-list — read, edit, build, test, commit. Never push.

It reports and resolves

A full report lands on the timeline as an executor round and the directive is marked resolved — you review the branch when you're ready.

Guardrails

Automation you stay in charge of

Setup guide

Install hands-off mode, step by step

Before you start

Install the watcher

One global npm install:

npm i -g directorhub-watcher

Configure it

Run init. It asks for the Hub URL (directorhub.app), your token (reused from Claude Code if found), then you pick which projects to watch and map each to a local repo path — use an absolute path (e.g. /Users/you/Git/project). Optionally enable autostart.

directorhub-watcher init

Start it

Run it in the foreground, or install autostart so it runs on login and survives reboots:

directorhub-watcher start # foreground directorhub-watcher autostart # background, on login

Send a directive

From a session in a whitelisted project, address a task to @executor. The watcher picks it up and runs it — no terminal needed.

✓ Verify. In the app, Skills & connectors → Hands-off mode shows ● Online with the version and watched projects. Your directive moves awaiting → working (auto) → resolved on a directive/… branch.

Troubleshooting

Handy commands

directorhub-watcher status # running state + watched projects directorhub-watcher stop # stop the watcher directorhub-watcher autostart --off # remove autostart
Pause anytime from the Hub — Skills & connectors → Hands-off → Pause. It's enforced on the server, so directives just wait while paused.