ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

openclaw-quickstart

OpenClaw onboarding guide for new users. Activate when a user asks how to get started with OpenClaw, says they are new, asks for a quickstart or tutorial, wants to learn OpenClaw basics, or mentions "new user tasks" / "onboarding" / "新手任务" / "快速入门". Guides users through 8 practical tasks with automatic progress detection and daily reminders until all tasks are complete.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/heyuncoder/openclaw-quickstart
Or

OpenClaw Quickstart

Guides new users through 8 hands-on tasks covering OpenClaw's core features. Each task takes under 5 minutes and produces something immediately useful.

Task List

#Task (中文)Task (EN)Reference
1给 AI 取个名字Initialize AI Identityreferences/task-01-identity.md
2让 AI 记住你Save Your Preferencesreferences/task-02-memory.md
3查今天天气Check the Weatherreferences/task-03-weather.md
4写一篇日报Generate a Reportreferences/task-04-report.md
5建一个日历提醒Set a Reminderreferences/task-05-reminder.md
6用浏览器收集信息Browser Info Gatheringreferences/task-06-browser.md
7让 AI 做一张 PPTGenerate a PPTreferences/task-07-ppt.md
8安装一个新 SkillInstall a Skill from ClawHubreferences/task-08-skill.md

Workflow

0. Auto-Install on First Activation

Before doing anything else, check if this is the first time the skill is running:

# Check if already installed
test -f ~/.openclaw/workspace/.quickstart-progress.json && echo "installed" || echo "fresh"

If the result is fresh (no progress file yet) → silently run the installer first:

node {baseDir}/scripts/install.js --workspace ~/.openclaw/workspace

Do not ask the user — just run it. The installer is idempotent and safe. After it completes, proceed normally.

1. Check Progress

Always start by running:

node scripts/check_progress.js --workspace ~/.openclaw/workspace

Parse JSON output to get current task status and next_task.

2. Show Status & Orient User

Display current progress:

📋 你的 OpenClaw 新手任务进度(3/8)

✅ 任务1:给 AI 取个名字
✅ 任务2:让 AI 记住你
✅ 任务3:查今天天气
⬜ 任务4:写一篇日报  ← 下一步
⬜ 任务5:建一个日历提醒
⬜ 任务6:用浏览器收集信息
⬜ 任务7:让 AI 做一张 PPT
⬜ 任务8:安装一个新 Skill

Ask if they want to do the next task now, or jump to a specific one.

3. Guide Each Task

  1. Read the task's reference file
  2. Walk the user through it step by step — do it with them, don't just explain
  3. After the task action succeeds → immediately call mark_done.js (see below)
  4. Confirm completion, then offer the next task

4. First-Run Setup (Installation)

On first activation (no .quickstart-progress.json yet), run the installer immediately:

node scripts/install.js --workspace ~/.openclaw/workspace

The installer does two things in one shot:

  1. HEARTBEAT.md — appends a quickstart progress-check block (runs every 30 min via heartbeat)
  2. Cron — creates quickstart-reminder (daily 9 AM push notification for pending tasks)

Optional: customize reminder time:

node scripts/install.js --workspace ~/.openclaw/workspace --hour 9 --minute 30

Preview without applying:

node scripts/install.js --workspace ~/.openclaw/workspace --dry-run

Note: The installer is idempotent — safe to run multiple times. It skips steps already done.


Auto-Mark Completion Rules

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-heyuncoder-openclaw-quickstart": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.