cc-claw 0.22.2 → 0.22.3

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 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -33,7 +33,7 @@ var VERSION;
33
33
  var init_version = __esm({
34
34
  "src/version.ts"() {
35
35
  "use strict";
36
- VERSION = true ? "0.22.2" : (() => {
36
+ VERSION = true ? "0.22.3" : (() => {
37
37
  try {
38
38
  return JSON.parse(readFileSync(join(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
39
39
  } catch {
@@ -30837,6 +30837,8 @@ function generateAiSkill() {
30837
30837
  return `---
30838
30838
  name: cc-claw-cli
30839
30839
  description: "Manage, troubleshoot, and operate CC-Claw from the terminal. Use for system management, agent orchestration, scheduling, memory, and configuration."
30840
+ type: tool
30841
+ status: approved
30840
30842
  ---
30841
30843
 
30842
30844
  # CC-Claw CLI Reference (v${version})
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-claw",
3
- "version": "0.22.2",
3
+ "version": "0.22.3",
4
4
  "description": "CC-Claw: Personal AI assistant on Telegram — multi-backend (Claude, Gemini, Codex, Cursor), sub-agent orchestration, MCP management",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",