In src/cli/init.ts, the config.md generation hardcodes the LLM provider and model instead of using the values selected during the runSetup phase.
Current code:
const configLines = [
"# FreeTurtle Config\n",
"## LLM",
"- provider: claude_api",
"- model: claude-sonnet-4-5",
...
Expected behavior:
It should use state.setupResult.provider and state.setupResult.model to ensure the config matches the .env and the user's choice.
In
src/cli/init.ts, theconfig.mdgeneration hardcodes the LLM provider and model instead of using the values selected during therunSetupphase.Current code:
Expected behavior:
It should use
state.setupResult.providerandstate.setupResult.modelto ensure the config matches the.envand the user's choice.