grokkit/config.toml.example
Greg Gauthier ce878f058f
All checks were successful
CI / Test (pull_request) Successful in 36s
CI / Lint (pull_request) Successful in 26s
CI / Build (pull_request) Successful in 20s
feat(workon): enhance command with IDE integration and README updates
- Add colorized output for success/error messages
- Change custom message flag from -m to -M
- Implement branch prefixing (feature/ or fix/)
- Add config for workon.model and workon.ide
- Update README.md index on task completion
- Integrate IDE opening if configured
- Refine error handling and logging
2026-03-31 22:04:33 +01:00

32 lines
997 B
Plaintext

# Example configuration file for Grokkit
# Copy this to ~/.config/grokkit/config.toml and customize as needed.
default_model = "grok-4"
temperature = 0.7
log_level = "info"
timeout = 60
# Model aliases (shorthand names)
[aliases]
beta = "grok-beta-2"
fast = "grok-4-1-fast-non-reasoning"
# Per-command model defaults (overrides code defaults if set)
[commands]
lint.model = "grok-4-1-fast-non-reasoning" # Fast model for code fixes
agent.model = "grok-4" # Reasoning model for agent tasks
chat.model = "grok-4"
commit.model = "grok-4"
commitmsg.model = "grok-4"
edit.model = "grok-4-1-fast-non-reasoning"
history.model = "grok-4"
prdescribe.model = "grok-4"
review.model = "grok-4"
workon.model = "grok-4-1-fast-non-reasoning" # Fast model for work plan generation
workon.ide = "" # IDE command to open repo (e.g. "code", "goland")
# Chat history settings
[chat]
history_file = "~/.config/grokkit/chat_history.json"