Documentation
¶
Overview ¶
Package config reads and writes syntropy's per-user config file, ~/.syntropy/config.yaml. It's the persisted counterpart to the interactive choices `syntropy setup` walks a user through (ADR-0051): which runner and model to use by default when a spec doesn't pin its own.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct {
// Runner is the default coding-agent runner name (see runner.Registry),
// e.g. "claude". Empty means no default has been set yet.
Runner string `yaml:"runner"`
// Model is the default model override passed to the runner, e.g.
// "claude-sonnet-5". Empty means the runner's own default.
Model string `yaml:"model"`
}
Config is the on-disk shape of ~/.syntropy/config.yaml.
Click to show internal directories.
Click to hide internal directories.