cc-claw 0.4.3 → 0.4.4

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/README.md CHANGED
@@ -174,6 +174,7 @@ Read commands work offline (direct DB access). Write commands require the daemon
174
174
  | Command | Description |
175
175
  |---------|-------------|
176
176
  | `/memory` | List memories |
177
+ | `/remember <text>` | Save a memory |
177
178
  | `/forget <keyword>` | Remove memories |
178
179
  | `/history` | Past session summaries |
179
180
  | `/cost` | API cost breakdown |
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.4.3" : (() => {
51
+ VERSION = true ? "0.4.4" : (() => {
52
52
  try {
53
53
  return JSON.parse(readFileSync(join2(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
54
54
  } catch {
@@ -7416,6 +7416,7 @@ var init_telegram2 = __esm({
7416
7416
  { command: "cwd", description: "Set or show working directory" },
7417
7417
  // Memory
7418
7418
  { command: "memory", description: "List stored memories" },
7419
+ { command: "remember", description: "Save a memory" },
7419
7420
  { command: "forget", description: "Remove a memory by keyword" },
7420
7421
  { command: "history", description: "List recent session summaries" },
7421
7422
  // Cost & usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-claw",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
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",