cc-claw 0.7.1 → 0.7.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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -55,7 +55,7 @@ var VERSION;
55
55
  var init_version = __esm({
56
56
  "src/version.ts"() {
57
57
  "use strict";
58
- VERSION = true ? "0.7.1" : (() => {
58
+ VERSION = true ? "0.7.2" : (() => {
59
59
  try {
60
60
  return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
61
61
  } catch {
@@ -8192,6 +8192,7 @@ var init_telegram2 = __esm({
8192
8192
  { command: "backend", description: "Switch AI backend (Claude/Gemini/Codex)" },
8193
8193
  { command: "claude", description: "Switch to Claude backend" },
8194
8194
  { command: "gemini", description: "Switch to Gemini backend" },
8195
+ { command: "gemini_accounts", description: "Manage Gemini credentials & rotation" },
8195
8196
  { command: "codex", description: "Switch to Codex backend" },
8196
8197
  { command: "model", description: "Switch model for active backend" },
8197
8198
  { command: "summarizer", description: "Configure session summarization model" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-claw",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
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",