braintrust-lite 0.1.0 → 0.1.2
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/package.json +12 -5
- package/src/providers.js +1 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braintrust-lite",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Lightweight multi-model advisor for Claude Code — parallel Codex + Gemini consultation via MCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"consult": "
|
|
8
|
-
"braintrust-lite": "
|
|
7
|
+
"consult": "bin/consult",
|
|
8
|
+
"braintrust-lite": "src/server.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node src/server.js"
|
|
@@ -16,10 +16,17 @@
|
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">=18"
|
|
18
18
|
},
|
|
19
|
-
"keywords": [
|
|
19
|
+
"keywords": [
|
|
20
|
+
"mcp",
|
|
21
|
+
"claude-code",
|
|
22
|
+
"codex",
|
|
23
|
+
"gemini",
|
|
24
|
+
"multi-model",
|
|
25
|
+
"ai"
|
|
26
|
+
],
|
|
20
27
|
"license": "MIT",
|
|
21
28
|
"repository": {
|
|
22
29
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/HongjieRen/braintrust-lite.git"
|
|
30
|
+
"url": "git+https://github.com/HongjieRen/braintrust-lite.git"
|
|
24
31
|
}
|
|
25
32
|
}
|
package/src/providers.js
CHANGED
|
@@ -3,7 +3,7 @@ import { spawn } from 'child_process';
|
|
|
3
3
|
// ─── Provider argv constants ──────────────────────────────────────────────────
|
|
4
4
|
|
|
5
5
|
export const CODEX_ARGS_PREFIX = ['exec', '--json', '--skip-git-repo-check', '--ephemeral'];
|
|
6
|
-
export const GEMINI_ARGS_PREFIX = ['-o', 'json'
|
|
6
|
+
export const GEMINI_ARGS_PREFIX = ['-o', 'json'];
|
|
7
7
|
|
|
8
8
|
// ─── Process runner ───────────────────────────────────────────────────────────
|
|
9
9
|
|