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.
- package/package.json +1 -1
- package/src/status.mjs +3 -4
package/package.json
CHANGED
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.
|
|
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}
|
|
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
|
-
}
|