@chatpanel/gateway 0.6.48 → 0.6.49
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 +1 -1
- package/src/connect-agents.js +9 -3
- package/src/server.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatpanel/gateway",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.49",
|
|
4
4
|
"description": "Local privacy gateway \u2014 redacts PII out of OpenAI/Anthropic API traffic before it reaches a model, then restores it in the reply. Point opencode, codex, aider, Claude Code, etc. at it.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/connect-agents.js
CHANGED
|
@@ -18,9 +18,15 @@ import { execFileSync } from 'node:child_process';
|
|
|
18
18
|
import { join } from 'node:path';
|
|
19
19
|
import os from 'node:os';
|
|
20
20
|
|
|
21
|
-
// The
|
|
22
|
-
// the Codex approval blocks stay in step with what the server actually advertises.
|
|
23
|
-
|
|
21
|
+
// The READ-ONLY tools the ChatPanel MCP server exposes (history, memory, skills). Named here
|
|
22
|
+
// so the Codex approval blocks stay in step with what the server actually advertises.
|
|
23
|
+
// `remember` and `forget` are deliberately absent: they WRITE to the user's memory store, and
|
|
24
|
+
// pre-approving a write without the user seeing it once is not ours to decide.
|
|
25
|
+
const TOOLS = [
|
|
26
|
+
'smart_search', 'search_history', 'get_record', 'find_related', 'list_history',
|
|
27
|
+
'recall',
|
|
28
|
+
'list_skills', 'open_skill', 'read_skill_file',
|
|
29
|
+
];
|
|
24
30
|
|
|
25
31
|
// Resolve the command a config should launch. A bare name works when the client inherits a
|
|
26
32
|
// normal PATH; an absolute path is the safe fallback when it does not.
|
package/src/server.js
CHANGED
|
@@ -49,7 +49,7 @@ import * as openai from './openai.js';
|
|
|
49
49
|
import * as responses from './responses.js';
|
|
50
50
|
import * as anthropic from './anthropic.js';
|
|
51
51
|
|
|
52
|
-
export const VERSION = '0.6.
|
|
52
|
+
export const VERSION = '0.6.49';
|
|
53
53
|
|
|
54
54
|
// WARM search tier — SQLite + FTS5 record store (falls back to an encrypted-JSON
|
|
55
55
|
// store if SQLite can't load), fed by the extension's ingest sync + backup-ingest.
|