clamper-ai 1.5.4 → 1.5.5

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/package.json +1 -1
  2. package/src/status.mjs +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clamper-ai",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Transform your OpenClaw agent into a production-ready AI assistant with memory, skills, and a dashboard",
5
5
  "type": "module",
6
6
  "bin": {
package/src/status.mjs CHANGED
@@ -67,12 +67,11 @@ export function runStatus() {
67
67
  // What's new (version-specific)
68
68
  const version = config.version || '1.0.0';
69
69
  if (version.startsWith('1.5')) {
70
- console.log(`${c.cyan} 📦 What's new in v1.5.4:${c.reset}`);
70
+ console.log(`${c.cyan} 📦 What's new in v1.5.5:${c.reset}`);
71
+ console.log(` • ${c.green}Fixed${c.reset} syntax error in status.mjs (extra closing brace removed)`);
71
72
  console.log(` • ${c.green}Fixed${c.reset} missing templates/ folder (AGENTS.md, MEMORY.md, SOUL.md now included)`);
72
73
  console.log(` • ${c.green}Fixed${c.reset} "npx clamper init" error (use npm install -g clamper-ai instead)`);
73
- console.log(` • ${c.green}Fixed${c.reset} missing src/ folder in npm package (all commands now work)`);
74
- console.log(` • ${c.green}Added${c.reset} friendly onboarding messages and skill suggestions`);
74
+ console.log(` • ${c.green}All commands${c.reset} now work properly`);
75
75
  console.log();
76
76
  }
77
77
  }
78
- }