Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

Notable changes. Format: [Keep a Changelog](https://keepachangelog.com); versioning: pre-1.0, minor bumps may break.

## [Unreleased]

### Added
- Per-key model auto-defaults: with no model configured, the first configured
API key picks its provider's default model (`core.config.KEY_DEFAULT_MODELS`,
ordered free NVIDIA first, Anthropic last for decorrelation) — `/keys` alone
is now a working setup for every supported provider
- `/model` with no argument shows the current resolved model, which layer set
it (flag/env/config/auto), and copy-pasteable examples for configured keys
- `/model`/`/prober` validation at set time: warns (never blocks) on a missing
provider key, malformed `provider/model-id`, or single-segment
`openrouter/...`/`nvidia-nim/...` ids that would 404
- `/keys` now chains into model choice: reports the model the critic will use,
or offers the saved key's default when the current model runs on another key

### Fixed
- `/model` and `/prober` no longer silently lose to a launch-time `--model`
flag or exported `COUNCIL_MODEL`/`COUNCIL_PROBER` on critic restart — a
console-set knob resolves from config.json only

## [0.1.0] — 2026-07-30

First public release. An independent, execution-grounded reviewer for AI
Expand Down
7 changes: 4 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,15 @@ if [ ! -f "$ENV_FILE" ]; then
# GEMINI_API_KEY=...
# GROQ_API_KEY=gsk_...
ENV
say "created $ENV_FILE — add a model key there (see comments inside)"
say "created $ENV_FILE — type /keys in the running council to fill it (guided, hidden input)"
else
say "keeping existing $ENV_FILE"
fi

# --- done -------------------------------------------------------------------
say ""
say "installed. next steps:"
say " 1. add a model key to $ENV_FILE (free: NVIDIA_API_KEY from build.nvidia.com)"
say " 2. codecouncil /path/to/repo-you-code-in"
say " 1. codecouncil /path/to/repo-you-code-in"
say " 2. type /keys in the running council — guided key setup, hidden input"
say " (free: NVIDIA_API_KEY from build.nvidia.com; a model is picked automatically)"
say "docs: https://github.com/adigo-pro/CodeCouncil#sixty-second-start"
Loading