cc-claw 0.2.6 → 0.2.7

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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -48,7 +48,7 @@ var VERSION;
48
48
  var init_version = __esm({
49
49
  "src/version.ts"() {
50
50
  "use strict";
51
- VERSION = true ? "0.2.6" : (() => {
51
+ VERSION = true ? "0.2.7" : (() => {
52
52
  try {
53
53
  return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
54
54
  } catch {
@@ -2437,8 +2437,8 @@ var init_gemini = __esm({
2437
2437
  opts.prompt,
2438
2438
  "-o",
2439
2439
  "stream-json",
2440
- "--allowed-mcp-server-names"
2441
- // no values = skip all user MCP servers (avoids crash/hang from broken servers)
2440
+ "--allowed-mcp-server-names=__none__"
2441
+ // nonexistent name = skip all user MCP servers (avoids crash/hang from broken servers)
2442
2442
  ];
2443
2443
  if (opts.sessionId) args.push("--resume", opts.sessionId);
2444
2444
  if (opts.model) args.push("-m", opts.model);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-claw",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "CC-Claw: Personal AI assistant on Telegram — multi-backend (Claude, Gemini, Codex), sub-agent orchestration, MCP management",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",