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
removes the --headless and --idle-timeout root flags. The session-scoped standalone proxy (refcounted, /shutdown, idle-timeout, settings.json restore-on-exit) is now databricks-claude serve --session-mode. --idle-timeout becomes a serve flag. The long-lived daemon now requires explicit serve --daemon (bare serve with no mode flag or sub-subcommand is a hard error — eliminates silent-degradation hazard at the hooks spawn site). serve install|uninstall|status unchanged. The hooks deployment mode (#173) now spawns serve --session-mode instead of --headless; the SessionStart/SessionEnd lifecycle is verified intact.
removes 4 root flags. Replacements: --install-hooks → hooks install --uninstall-hooks → hooks uninstall --headless-ensure → hooks session-start (hook-invoked internal) --headless-release → hooks session-end (hook-invoked internal) Old flags are removed, not aliased. The generated SessionStart/SessionEnd hook JSON now invokes the new command names. No back-compat for already-installed hooks (none deployed). The hooks deployment mode itself is unchanged — proxy still spins up on SessionStart and tears down on SessionEnd.
removes 14 root flags. Replacements: --otel / --otel--table → config otel enable [...] --no-otel / --no-otel-{m,l,t} → config otel disable [...] --with-websearch / --websearch- → config websearch enable [...] --write-claude-config → config write --print-env → config show Old flags are removed, not aliased — they now pass through to claude. Storage semantics (two-store model, sentinel guards, state preservation on disable, OTEL section removal) are unchanged.
Features
cli: --write-claude-config flag for scriptable settings.json bootstrap (d3b9a3b)
cli: --write-claude-config flag for scriptable settings.json bootstrap (8da1957), closes #162
cli: scope --help to wrapper; advertise -- passthrough (7d63ba4)
consolidate --headless proxy mode into serve --session-mode (89c952a)
consolidate hooks lifecycle flags under a hooks subcommand (5b4a496)
consolidate persistent-config flags under a config subcommand (92b56d0)
daemon: add serve subcommand for long-lived MDM-deployed instances (52931b2)