clawmagic 1.0.7 → 1.0.8

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/web/index.html +47 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmagic",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "OpenClaw, Configured Automagically. Transform a fresh OpenClaw install into production-ready setup.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -638,12 +638,56 @@ function renderReview() {
638
638
  return providerNames[id] + ' ⏭️';
639
639
  }).join('<br>');
640
640
 
641
+ // Skill descriptions for display
642
+ const skillDescriptions = {
643
+ 'weather': '🌤 Weather — forecasts & conditions for any location',
644
+ 'web_search': '🔍 Web Search — search the internet in real time',
645
+ 'web_fetch': '📄 Web Fetch — extract content from any URL',
646
+ 'github': '🐙 GitHub — PRs, issues, CI runs, code review',
647
+ 'gog': '📧 Google Workspace — Gmail, Calendar, Drive, Docs',
648
+ 'nano-banana-pro': '🎨 Image Generation — create images with AI',
649
+ 'session-logs': '📋 Session Logs — search past conversations',
650
+ 'three-tier-memory': '🧠 Three-Tier Memory — knowledge graph + daily notes + long-term memory',
651
+ 'healthcheck': '🔒 Security Hardening — audits, firewall, SSH hardening',
652
+ 'tmux': '🖥 Tmux — remote terminal session control',
653
+ 'voice-call': '📞 Voice Calls — make and receive phone calls',
654
+ 'nano-pdf': '📑 PDF Editor — edit PDFs with natural language',
655
+ 'coding-agent': '🤖 Coding Agent — delegate code tasks to sub-agents',
656
+ 'gh-issues': '🐛 GitHub Issues — auto-implement fixes and open PRs',
657
+ 'mcporter': '🔌 MCP Servers — connect to any MCP tool server',
658
+ 'skill-creator': '🛠 Skill Creator — build new skills for your agent',
659
+ 'blogwatcher': '📰 Blog Watcher — monitor RSS feeds for updates',
660
+ 'video-frames': '🎬 Video Frames — extract frames from videos',
661
+ '1password': '🔐 1Password — secure secret management',
662
+ 'humanizer': '✍️ Humanizer — remove AI patterns from writing',
663
+ 'financial-analysis': '💰 Financial Analysis — statements, valuations, models',
664
+ };
665
+
666
+ const skillsList = (flavorInfo.skills || [])
667
+ .map(s => skillDescriptions[s] || `📦 ${s}`)
668
+ .map(s => `<div style="padding:4px 0; font-size:13px; border-bottom:1px solid rgba(255,255,255,0.04);">${s}</div>`)
669
+ .join('');
670
+
671
+ const featuresList = (flavorInfo.features || [])
672
+ .map(f => `<span style="display:inline-block; padding:4px 10px; margin:3px; background:var(--accent-glow); border:1px solid rgba(218,119,86,0.2); border-radius:20px; font-size:12px; color:var(--accent);">${f}</span>`)
673
+ .join('');
674
+
641
675
  document.getElementById('review-summary').innerHTML = `
642
676
  <div class="review-row"><span class="review-label">Flavor</span><span class="review-value">${flavorInfo.icon || ''} ${flavorInfo.name || state.flavor}</span></div>
643
- <div class="review-row"><span class="review-label">Skills</span><span class="review-value">${flavorInfo.skillCount || 0} active</span></div>
644
677
  <div class="review-row"><span class="review-label">Providers</span><span class="review-value" style="text-align:right">${providerList}</span></div>
645
- <div class="review-row"><span class="review-label">Security</span><span class="review-value">File permissions, auth hardening</span></div>
646
- <div class="review-row"><span class="review-label">Files</span><span class="review-value">openclaw.json, workspace files, memory dirs</span></div>
678
+ <div class="review-row"><span class="review-label">Security</span><span class="review-value">File permissions, auth hardening, gateway token</span></div>
679
+ <div class="review-row"><span class="review-label">Memory</span><span class="review-value">Three-tier system, daily notes, knowledge graph</span></div>
680
+ <div class="review-row"><span class="review-label">Automation</span><span class="review-value">Onboarding interview, daily check-in, weekly review</span></div>
681
+ ${featuresList ? `<div style="padding:16px 0 8px;"><span class="review-label">Highlights</span><div style="margin-top:8px;">${featuresList}</div></div>` : ''}
682
+ <div style="padding:12px 0 0;">
683
+ <div style="display:flex; align-items:center; justify-content:space-between; cursor:pointer;" onclick="this.parentElement.querySelector('.skill-list').style.display = this.parentElement.querySelector('.skill-list').style.display === 'none' ? 'block' : 'none'; this.querySelector('.arrow').textContent = this.parentElement.querySelector('.skill-list').style.display === 'none' ? '▶' : '▼';">
684
+ <span class="review-label">${flavorInfo.skillCount || 0} Skills Included</span>
685
+ <span class="arrow" style="font-size:11px; color:var(--text-dim);">▶</span>
686
+ </div>
687
+ <div class="skill-list" style="display:none; margin-top:8px; max-height:300px; overflow-y:auto;">
688
+ ${skillsList}
689
+ </div>
690
+ </div>
647
691
  `;
648
692
  }
649
693