Skip to content

Commit 0f11ec4

Browse files
Merge branch 'main' into 065-evaluation-foundation
Bring spec 065 (Evaluation Foundation D1+D2) integration branch up to date with main before opening the integration PR. No conflicts; diff vs main is exactly the 23 new spec-065 files. Co-Authored-By: Paperclip <noreply@paperclip.ing>
2 parents 6c960e8 + ccbeb50 commit 0f11ec4

112 files changed

Lines changed: 7360 additions & 387 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node.js
2727
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2828
with:
29-
node-version: '20'
29+
node-version: '22'
3030
cache: 'npm'
3131
cache-dependency-path: website/package-lock.json
3232

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2020
with:
21-
node-version: '20'
21+
node-version: '22'
2222
cache: 'npm'
2323
cache-dependency-path: frontend/package-lock.json
2424

.github/workflows/frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js
2323
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2424
with:
25-
node-version: '20'
25+
node-version: '22'
2626
cache: 'npm'
2727
cache-dependency-path: frontend/package-lock.json
2828

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Setup Node.js
7272
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
7373
with:
74-
node-version: '20'
74+
node-version: '22'
7575
cache: 'npm'
7676
cache-dependency-path: frontend/package-lock.json
7777

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Setup Node.js
8989
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
9090
with:
91-
node-version: '20'
91+
node-version: '22'
9292

9393
- name: Install frontend dependencies
9494
run: cd frontend && npm ci

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ jobs:
282282
- name: Setup Node.js
283283
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
284284
with:
285-
node-version: '20'
285+
node-version: '22'
286286

287287
- name: Install frontend dependencies
288288
run: cd frontend && npm ci
@@ -1609,7 +1609,7 @@ jobs:
16091609
- name: Setup Node.js
16101610
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
16111611
with:
1612-
node-version: '20'
1612+
node-version: '22'
16131613
cache: 'npm'
16141614
cache-dependency-path: website/package-lock.json
16151615

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2020
with:
21-
node-version: '20'
21+
node-version: '22'
2222
cache: 'npm'
2323
cache-dependency-path: frontend/package-lock.json
2424

cmd/mcpproxy/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ func main() {
190190
// Add commands to root
191191
rootCmd.AddCommand(serverCmd)
192192
rootCmd.AddCommand(searchCmd)
193+
rootCmd.AddCommand(GetRegistryCommand())
193194
rootCmd.AddCommand(toolsCmd)
194195
rootCmd.AddCommand(callCmd)
195196
rootCmd.AddCommand(codeCmd)

0 commit comments

Comments
 (0)