Context
skrun init currently asks an interactive prompt to choose the LLM provider. It would be useful to skip this with a CLI flag.
Proposal
# Today: interactive
skrun init my-agent
# → "Choose a provider:" (prompt)
# With flag: no prompt
skrun init my-agent --provider google
The flag should set the model.provider and a default model.name in the generated agent.yaml.
Files to change
packages/cli/src/commands/init.ts — add --provider option, skip prompt if provided
Context
skrun initcurrently asks an interactive prompt to choose the LLM provider. It would be useful to skip this with a CLI flag.Proposal
The flag should set the
model.providerand a defaultmodel.namein the generatedagent.yaml.Files to change
packages/cli/src/commands/init.ts— add--provideroption, skip prompt if provided