// src/cli/commands/ft-on.ts
// DO NOT RE-ENABLE — see CLAUDE.md "no-global-settings-injection".
// 3 reverts as of 2026-05-22. `fewtok on` used to write ANTHROPIC_BASE_URL
// and ft hook entries into ~/.claude/settings.json. Per-process activation via the
// `cld` wrapper (bin/cld) is now the sole supported path.

export async function cmdFtOn(_positional: string[], verbose: boolean): Promise<number> {
  const msg =
    "fewtok on is disabled — ft does not mutate ~/.claude/settings.json. " +
    "Use the `cld` wrapper to activate the proxy per-session (sets ANTHROPIC_BASE_URL inline).";
  if (verbose) console.log(msg);
  else console.log("err=disabled use=cld-wrapper");
  return 1;
}
