create-openclaw-bot 5.8.0 → 5.8.2

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.
@@ -29,7 +29,6 @@
29
29
  // ── CLI-facing SKILLS (value = selection key, slug = ClawHub package name) ────
30
30
  // Keep in sync with setup/data/skills.js skill IDs
31
31
  const SKILLS = [
32
- { value: 'browser', name: '🌐 Browser Automation (Playwright) (⭐ Khuyên dùng)', slug: null },
33
32
  { value: 'memory', name: '🧠 Long-term Memory (⭐ Khuyên dùng)', slug: 'memory' },
34
33
  { value: 'scheduler', name: '⏰ Native Cron Scheduler (⭐ Khuyên dùng)', slug: null },
35
34
  { value: 'rag', name: '📚 RAG / Knowledge Base', slug: 'rag' },
@@ -1,4 +1,4 @@
1
- // @ts-nocheck
1
+ // @ts-nocheck
2
2
  /* eslint-disable no-undef, no-unused-vars */
3
3
  /**
4
4
  * @fileoverview Part of the OpenClaw Setup Wizard IIFE bundle.
@@ -20,6 +20,13 @@
20
20
  */
21
21
  // ========== Available Plugins (npm packages — runtime/channel extensions) ==========
22
22
  const PLUGINS = [
23
+ {
24
+ id: 'browser-automation',
25
+ name: 'Browser Automation ⭐',
26
+ icon: '🌐',
27
+ descVi: 'Smart Search + Điều khiển trình duyệt Chrome/Chromium (ẩn & thật)', descEn: 'Smart Search + Chrome/Chromium browser control (headless & real)',
28
+ package: 'openclaw-browser-automation',
29
+ },
23
30
  {
24
31
  id: 'telegram-multibot-relay',
25
32
  name: 'Telegram Multi-Bot Relay',
@@ -1,4 +1,4 @@
1
- // @ts-nocheck
1
+ // @ts-nocheck
2
2
  /* eslint-disable no-undef, no-unused-vars */
3
3
  /**
4
4
  * @fileoverview Part of the OpenClaw Setup Wizard IIFE bundle.
@@ -20,14 +20,6 @@
20
20
  */
21
21
  // ========== Available Skills (ClawHub registry — agent capabilities) ==========
22
22
  const SKILLS = [
23
- {
24
- id: 'browser',
25
- name: 'Browser Automation ⭐(Khuyên dùng)',
26
- icon: '🌐',
27
- descVi: 'Tự động thao tác trình duyệt (Playwright)', descEn: 'Automated browser control (Playwright)',
28
- slug: 'browser-automation',
29
- noteVi: 'Cần bật Chrome Debug Mode trên máy host', noteEn: 'Requires Chrome Debug Mode on host',
30
- },
31
23
  {
32
24
  id: 'memory',
33
25
  name: 'Long-term Memory ⭐(Khuyên dùng)',
@@ -126,7 +118,7 @@
126
118
  className: 'plugin-card__badge plugin-card__badge--recommended'
127
119
  };
128
120
  }
129
- if (skill.id === 'browser' || skill.id === 'scheduler') {
121
+ if (skill.id === 'scheduler') {
130
122
  return {
131
123
  text: isVi ? 'Khuyên dùng' : 'Recommended',
132
124
  className: 'plugin-card__badge plugin-card__badge--recommended'