@yagni-app/code-staging 0.3.2-staging.1115.1 → 0.3.2-staging.1119.1
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/dist/extension/index.js +6 -1
- package/package.json +2 -2
package/dist/extension/index.js
CHANGED
|
@@ -140,7 +140,12 @@ export async function registerYagni(pi, deps = {}) {
|
|
|
140
140
|
// `yagni` provider, so /model and Ctrl+P show a single entry. Child
|
|
141
141
|
// processes (/go, subagents, advisor) fetch their own catalog and register
|
|
142
142
|
// their own provider, so they are unaffected by this filter.
|
|
143
|
-
|
|
143
|
+
//
|
|
144
|
+
// Eval mode is exempt: a headless harness (scoping sessions, code evals)
|
|
145
|
+
// names its tier explicitly — the backend's scoping sessions run `--model
|
|
146
|
+
// standard` — and there is no /model picker to keep tidy. Filtering there
|
|
147
|
+
// turns a valid tier request into "no models match".
|
|
148
|
+
const catalog = evalMode ? fullCatalog : fullCatalog.filter((m) => m.id === "advanced");
|
|
144
149
|
// YAG-471: the driver's own completions carry attribution headers read from
|
|
145
150
|
// this process's env (YAGNI_SESSION_ID minted by the launcher; YAGNI_CALLER
|
|
146
151
|
// defaults to "driver" when unset, i.e. every session that is not a /go
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yagni-app/code-staging",
|
|
3
|
-
"version": "0.3.2-staging.
|
|
3
|
+
"version": "0.3.2-staging.1119.1",
|
|
4
4
|
"description": "YAGNI Code: a terminal coding agent that already knows your company. One YAGNI login routes the model and grounds the agent in your team's context.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "YAGNI, Inc. <jack@yagni.app> (https://yagni.app)",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"smol-toml": "^1.8.0",
|
|
40
40
|
"typebox": "^1.3.11"
|
|
41
41
|
},
|
|
42
|
-
"yagniSourceSha": "
|
|
42
|
+
"yagniSourceSha": "44ed4bcc995ffa2b075c202e5aa1a23f5ec808b6"
|
|
43
43
|
}
|