clamper-ai 1.5.2 → 1.5.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.
- package/package.json +1 -1
- package/src/status.mjs +39 -4
package/package.json
CHANGED
package/src/status.mjs
CHANGED
|
@@ -29,15 +29,50 @@ export function runStatus() {
|
|
|
29
29
|
|
|
30
30
|
const check = (ok) => ok ? `${c.green}✔${c.reset}` : `${c.red}✖${c.reset}`;
|
|
31
31
|
|
|
32
|
-
console.log(`\n${c.bold}${c.cyan}
|
|
32
|
+
console.log(`\n${c.bold}${c.cyan}🐾 Clamper Status${c.reset}\n`);
|
|
33
33
|
console.log(` Workspace: ${workspace}`);
|
|
34
|
-
console.log(` Agent: ${config.agentName || '
|
|
35
|
-
console.log(` Tier: ${config.tier || 'free'}`);
|
|
34
|
+
console.log(` Agent: ${config.agentName || 'Not set yet'}`);
|
|
35
|
+
console.log(` Tier: ${config.tier || 'free'}${config.tier === 'free' ? ` ${c.dim}(upgrade at clamper.tech for 60+ premium skills)${c.reset}` : ''}`);
|
|
36
36
|
console.log(` Version: ${config.version || 'unknown'}`);
|
|
37
|
-
console.log(` Installed: ${config.installedAt || '
|
|
37
|
+
console.log(` Installed: ${config.installedAt || 'just now'}\n`);
|
|
38
38
|
console.log(` ${check(hasAgents)} AGENTS.md`);
|
|
39
39
|
console.log(` ${check(hasMemory)} Memory system`);
|
|
40
40
|
console.log(` ${check(hasCron)} Nightly consolidation`);
|
|
41
41
|
console.log(` ${check(skillCount > 0)} Skills (${skillCount} installed)`);
|
|
42
42
|
console.log();
|
|
43
|
+
|
|
44
|
+
// Friendly onboarding message
|
|
45
|
+
const isNew = !config.installedAt || (Date.now() - new Date(config.installedAt).getTime()) < 5 * 60 * 1000; // 5 min
|
|
46
|
+
if (isNew) {
|
|
47
|
+
console.log(`${c.green}${c.bold} 🎉 Welcome to Clamper!${c.reset}\n`);
|
|
48
|
+
console.log(` ${c.dim}Your OpenClaw agent now has:${c.reset}`);
|
|
49
|
+
console.log(` • ${c.cyan}3-layer persistent memory${c.reset} (daily notes, knowledge graph, long-term recall)`);
|
|
50
|
+
console.log(` • ${c.cyan}${skillCount}+ ready-to-use skills${c.reset} (weather, CSV, code mentor, productivity tools)`);
|
|
51
|
+
console.log(` • ${c.cyan}Nightly memory consolidation${c.reset} (runs automatically at 2 AM)`);
|
|
52
|
+
console.log(` • ${c.cyan}LEARNINGS.md${c.reset} (your agent learns from mistakes and improves)`);
|
|
53
|
+
console.log();
|
|
54
|
+
console.log(` ${c.yellow}${c.bold}What your agent can do now:${c.reset}`);
|
|
55
|
+
console.log(` • Remember conversations across sessions (try asking "what did we discuss yesterday?")`);
|
|
56
|
+
console.log(` • Process CSV data, check weather, answer coding questions`);
|
|
57
|
+
console.log(` • Track tasks in tasks/QUEUE.md and update you on progress`);
|
|
58
|
+
console.log(` • ${config.tier === 'pro' ? 'Send emails, manage Google Sheets, post to social media' : `${c.dim}(Pro: email, Google Sheets, Stripe, social media)${c.reset}`}`);
|
|
59
|
+
console.log();
|
|
60
|
+
console.log(` ${c.cyan}Next steps:${c.reset}`);
|
|
61
|
+
console.log(` 1. Start your OpenClaw agent: ${c.dim}openclaw gateway start${c.reset}`);
|
|
62
|
+
console.log(` 2. Ask it about the new skills: ${c.dim}"What can you do now with Clamper?"${c.reset}`);
|
|
63
|
+
console.log(` 3. Check the dashboard: ${c.dim}clamper dashboard${c.reset} ${c.green}(coming soon)${c.reset}`);
|
|
64
|
+
console.log();
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// What's new (version-specific)
|
|
68
|
+
const version = config.version || '1.0.0';
|
|
69
|
+
if (version.startsWith('1.5')) {
|
|
70
|
+
console.log(`${c.cyan} 📦 What's new in v1.5.3:${c.reset}`);
|
|
71
|
+
console.log(` • ${c.green}Fixed${c.reset} "npx clamper init" error (use npm install -g clamper-ai instead)`);
|
|
72
|
+
console.log(` • ${c.green}Fixed${c.reset} missing src/ folder in npm package (all commands now work)`);
|
|
73
|
+
console.log(` • ${c.green}Added${c.reset} friendly onboarding messages and skill suggestions`);
|
|
74
|
+
console.log(` • ${c.green}Updated${c.reset} website install instructions (clamper.tech/get-started)`);
|
|
75
|
+
console.log();
|
|
76
|
+
}
|
|
77
|
+
}
|
|
43
78
|
}
|