Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

openclaw-quickstartOpenClaw quickstart 效率

Agent Skill

openclaw-quickstart 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,028

周安装

562

GitHub Stars

公开资料未说明

下载量

4,541
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-quickstart(OpenClaw quickstart 效率)
来源仓库:https://github.com/heyuncoder/openclaw-quickstart
安装命令:
openclaw skills install openclaw-quickstart
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-quickstart

简介

OpenClaw 新用户入门指南。当用户询问如何开始使用 OpenClaw、说他们是新用户、要求快速入门或教程、等等时激活

SKILL.md

name
openclaw-quickstart
description
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.

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

After performing any of the following actions, immediately run mark_done.js:

node scripts/mark_done.js --task <N> --workspace ~/.openclaw/workspace
TaskTrigger condition
1SOUL.md or IDENTITY.md written with AI name/rules
2USER.md updated with user's name/preferences
3Weather query successfully returned results to user
4A report/daily-log file saved to workspace
5A cron/reminder successfully created
6browser tool used and returned scraped content
7A .pptx file saved to workspace
8A skill successfully installed via clawhub

If all_done: true is returned → immediately run:

node scripts/cleanup_crons.js

Then send the graduation message (see below).


Heartbeat Cron Behavior (quickstart-heartbeat, every 30 min)

node scripts/check_progress.js --mark-done --workspace ~/.openclaw/workspace
  • --mark-done flag: auto-persists newly detected completions to progress.json
  • If all_done: true → run cleanup_crons.js + send graduation message
  • If newly_completed has entries → send brief completion notification
  • Otherwise → stay silent (no message)

Daily Reminder Format (quickstart-reminder, 9 AM)

🦐 嗨!你的 OpenClaw 新手任务还有 N 个待完成:

✅ 任务1:给 AI 取个名字
✅ 任务2:让 AI 记住你
⬜ 任务3:查今天天气  ← 今天来试试?

直接说「帮我完成任务3」就开始了!

Graduation Message (all tasks done)

Send this, then run cleanup_crons.js:

🎓 恭喜!你已完成全部 8 个新手任务!

OpenClaw 你玩明白了 🦐
以后有任何问题,随时问我。

(每日提醒和自动检测已自动关闭)

Key Principles

  • Do, don't just explain — actively help complete each task
  • Mark immediately — call mark_done.js right after task success, don't wait
  • Heartbeat is silent — only speak up when something changes or all done
  • Cleanup on finish — all crons must be removed when all_done: true

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.39%
按下载量换算3,514

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills