@brendangraham/steer 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +27 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.0](https://github.com/BrendanGraham14/steer/compare/steer-v0.4.0...steer-v0.5.0) - 2025-08-19
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- catalog discovery, --catalog flag, and session config auto-
|
|
15
|
+
- *(models)* Introduce data-driven model registry
|
|
16
|
+
- implement ModelRegistry with config loading and merge logic
|
|
17
|
+
|
|
18
|
+
### Other
|
|
19
|
+
|
|
20
|
+
- merge models & providers into a single catalog file
|
|
21
|
+
- tweak model helptext
|
|
22
|
+
- *(core,grpc,cli)* [**breaking**] inject ProviderRegistry and centralize AppConfig creation
|
|
23
|
+
- a few more hardcoded strings
|
|
24
|
+
- core app holds model registry, tui lists/resolves models via grpc
|
|
25
|
+
- generate constants for builtin models
|
|
26
|
+
- *(auth)* rename AuthTokens to OAuth2Token with backward compatibility
|
|
27
|
+
|
|
10
28
|
## [0.2.0](https://github.com/BrendanGraham14/steer/compare/steer-v0.1.21...steer-v0.2.0) - 2025-08-01
|
|
11
29
|
|
|
12
30
|
### Fixed
|
package/README.md
CHANGED
|
@@ -47,13 +47,15 @@ Options:
|
|
|
47
47
|
-d, --directory <DIRECTORY>
|
|
48
48
|
Optional directory to work in
|
|
49
49
|
-m, --model <MODEL>
|
|
50
|
-
Model to use [
|
|
50
|
+
Model to use [possible values: claude-3-5-sonnet-20240620, claude-3-5-sonnet-20241022, claude-3-7-sonnet-20250219, claude-3-5-haiku-20241022, claude-sonnet-4-20250514, claude-opus-4-20250514, claude-opus-4-1-20250805, gpt-4.1-2025-04-14, gpt-4.1-mini-2025-04-14, gpt-4.1-nano-2025-04-14, gpt-5-2025-08-07, o3-2025-04-16, o3-pro-2025-06-10, o4-mini-2025-04-16, gemini-2.5-flash-preview-04-17, gemini-2.5-pro-preview-05-06, gemini-2.5-pro-preview-06-05, grok-3, grok-3-mini, grok-4-0709]
|
|
51
51
|
--remote <REMOTE>
|
|
52
52
|
Connect to a remote gRPC server instead of running locally
|
|
53
53
|
--system-prompt <SYSTEM_PROMPT>
|
|
54
54
|
Custom system prompt to use instead of the default
|
|
55
55
|
--session-config <SESSION_CONFIG>
|
|
56
56
|
Path to session configuration file (TOML format) for new sessions
|
|
57
|
+
--catalog <PATH>
|
|
58
|
+
Additional catalog file containing models and providers (repeatable)
|
|
57
59
|
--theme <THEME>
|
|
58
60
|
Theme to use for the TUI (defaults to "default")
|
|
59
61
|
-h, --help
|
|
@@ -88,14 +90,34 @@ steer
|
|
|
88
90
|
/auth
|
|
89
91
|
```
|
|
90
92
|
|
|
93
|
+
### Catalogs
|
|
94
|
+
|
|
95
|
+
Catalogs are TOML files that define both model providers and models. Steer ships with a built-in default catalog and will also auto-discover:
|
|
96
|
+
- ./.steer/catalog.toml (project-level)
|
|
97
|
+
- <user config dir>/catalog.toml (user-level; platform-specific)
|
|
98
|
+
- macOS: ~/Library/Application Support/steer/catalog.toml
|
|
99
|
+
- Linux: ~/.config/steer/catalog.toml
|
|
100
|
+
- Windows: %APPDATA%\steer\catalog.toml
|
|
101
|
+
|
|
102
|
+
For session config, Steer will auto-discover:
|
|
103
|
+
- ./.steer/session.toml (project-level)
|
|
104
|
+
- <user config dir>/session.toml (user-level; same user config dir as above)
|
|
105
|
+
|
|
106
|
+
You can add more with --catalog (repeatable). Later catalogs override earlier entries. Note: project configs live under ./.steer (e.g., ./.steer/session.toml, ./.steer/catalog.toml).
|
|
107
|
+
|
|
91
108
|
### gRPC server / remote mode
|
|
92
109
|
|
|
110
|
+
You can supply one or more catalogs with `--catalog`.
|
|
111
|
+
|
|
112
|
+
- Server: catalogs passed to `steer server` are loaded on the server and define available providers/models.
|
|
113
|
+
- Local TUI: passing `--catalog` affects the in-process server started by the CLI.
|
|
114
|
+
|
|
93
115
|
```bash
|
|
94
|
-
# Start a standalone server (default 127.0.0.1:50051)
|
|
95
|
-
steer server --port 50051
|
|
116
|
+
# Start a standalone server (default 127.0.0.1:50051) with additional catalogs
|
|
117
|
+
steer server --port 50051 --catalog ./my-catalog.toml
|
|
96
118
|
|
|
97
|
-
#
|
|
98
|
-
steer
|
|
119
|
+
# Local TUI using a custom catalog (applies to the local in-process server)
|
|
120
|
+
steer --catalog ./my-catalog.toml
|
|
99
121
|
```
|
|
100
122
|
|
|
101
123
|
### Sessions
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"hasInstallScript": true,
|
|
25
25
|
"license": "AGPL-3.0-or-later",
|
|
26
26
|
"name": "@brendangraham/steer",
|
|
27
|
-
"version": "0.
|
|
27
|
+
"version": "0.5.0"
|
|
28
28
|
},
|
|
29
29
|
"node_modules/@isaacs/cliui": {
|
|
30
30
|
"dependencies": {
|
|
@@ -714,5 +714,5 @@
|
|
|
714
714
|
}
|
|
715
715
|
},
|
|
716
716
|
"requires": true,
|
|
717
|
-
"version": "0.
|
|
717
|
+
"version": "0.5.0"
|
|
718
718
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/brendangraham14/steer/releases/download/steer-v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/brendangraham14/steer/releases/download/steer-v0.5.0",
|
|
3
3
|
"author": "Brendan Graham <brendanigraham@gmail.com>",
|
|
4
4
|
"bin": {
|
|
5
5
|
"schema-generator": "run-schema-generator.js",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"zipExt": ".tar.xz"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"version": "0.
|
|
71
|
+
"version": "0.5.0",
|
|
72
72
|
"volta": {
|
|
73
73
|
"node": "18.14.1",
|
|
74
74
|
"npm": "9.5.0"
|