DocsCliInit

quell init

Adds a [tool.quell] configuration block to your pyproject.toml. Safe to run on an existing file — it checks for the block before adding.

Usage

quell init [OPTIONS]

Options

OptionDefaultDescription
--root.Project root directory

Example

quell init
# Added [tool.quell] to pyproject.toml

Generated block

[tool.quell]
llm_provider = "anthropic"
llm_model = "claude-sonnet-4-5"
max_verification_attempts = 3
verification_timeout_seconds = 30
auto_write = false
enable_docstring = true
enable_types = true
enable_mutations = false
score_threshold = 0.0

If [tool.quell] already exists, the command prints a notice and exits without modifying the file.

Next steps

After running quell init, see the pyproject.toml configuration reference for a full list of options.