Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

openclaw-startupOpenClaw startup 效率

Agent Skill

openclaw-startup 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,232

周安装

218

GitHub Stars

公开资料未说明

下载量

1,744
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-startup

简介

openclaw-startup 是新 OpenClaw 代理的首次运行设置向导。

  • 自动生成定制 SOUL.md 与内存架构,简化初始化流程。
  • 通过 clawhub 安装,使用 openclaw skills install 命令部署。
  • 安装前需确认权限范围、维护状态及是否触发系统配置变更。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
openclaw-startup
version
1.0.3
description
>
author
Zye ⚡ (Don Zurbrick)
license
MIT
metadata
openclaw
emoji
🚀
requires
bins
["bash", "mkdir", "date"]
optionalBins
["openclaw", "clawhub"]
platforms

OpenClaw Startup

First-run setup wizard for new OpenClaw agents. Interviews the user, generates tailored workspace files, scaffolds memory, installs operational crons, and recommends companion skills.

Use when

  • setting up a new OpenClaw agent from scratch
  • onboarding a new user who just installed OpenClaw
  • resetting an agent workspace to a clean baseline
  • someone says "set up my agent" or "help me get started"

Do not use when

  • the agent is already configured and running (use openclaw-guide instead)
  • the user wants to change one specific config setting
  • the task is skill authoring (use skill-builder)
  • the task is security hardening of an existing agent (use agent-hardening)

Phases

Run these in order. Each phase confirms with the user before proceeding.

Phase 1 — Identity Interview

Resuming a partial setup: Before starting the interview, check if any of SOUL.md, USER.md, or IDENTITY.md already exist. If they do, show the user what's already configured and ask: "Want to pick up where we left off, start fresh, or keep these and skip to memory setup?" Respect their choice.

Ask the user 8 questions to understand who they are and what the agent should do. Use the interview guide at references/interview-guide.md.

From the answers, generate:

  • SOUL.md — agent identity, personality, tone, boundaries
  • USER.md — human's key details
  • IDENTITY.md — agent name, emoji, presentation
  • AGENTS.md — customized from assets/agents-template.md with principles

tailored to the user's main job (Q4) and communication style (Q5)

Show the user the generated files and ask for approval before writing.

Phase 2 — Memory Scaffolding

Run the install script to create the memory directory structure:

bash {baseDir}/scripts/install.sh

This creates:

  • memory/ directory with daily log structure
  • MEMORY.md — durable fact index
  • ACTIVE.md — current priorities tracker
  • memory/FUTURE_INTENTS.md — commitments and deferred actions
  • .learnings/ — error and learning capture (agent-memory-loop)

Phase 3 — Operational Crons

Review recommended crons with the user. See references/cron-recipes.md.

If openclaw CLI is not available: Skip cron installation. Instead, show the user the recommended cron configs from references/cron-recipes.md and explain they can install them later once OpenClaw is set up. Proceed to Phase 4.

If openclaw CLI is available:

Always recommend:

  • Heartbeat (configurable frequency)
  • Workspace backup (daily)

Recommend if applicable:

  • Weekly memory consolidation
  • Session health watchdog
  • Security monitoring

Install only what the user approves. Use the OpenClaw cron tool directly.

Phase 4 — Security Baseline

Walk through the security checklist at references/security-baseline.md.

Key items:

  • Channel access controls (allowlist vs open)
  • Injection defense rules in SOUL.md
  • Escalation framework (green/yellow/red)
  • Tool restrictions for sub-agents

Phase 5 — Companion Skills

Recommend installing these skills based on the user's needs:

SkillWhen to recommendClawHub
cognitionAlways — memory architectureclawhub.com/skills/cognition
summarizeAlways — extract text/transcripts from URLs, videos, PDFsclawhub.com/skills/summarize
agent-hardeningIf the agent handles sensitive data or external channelsclawhub.com/skills/agent-hardening
openclaw-backupIf the user wants disaster recoveryclawhub.com/skills/openclaw-backup

Install via ClawHub if available:

clawhub install <skill-name>

Phase 6 — Verification

After setup, run a quick health check:

  • Verify all generated files exist and are non-empty
  • Verify crons are registered and have valid next-run times
  • Verify the agent can respond to a basic prompt
  • Show the user a summary of everything that was set up

Interview principles

  • Ask one question at a time — don't dump all 8 at once
  • Accept short answers — infer reasonable defaults from context
  • Show what you're generating before writing it
  • Never write to core files without user confirmation
  • Keep the tone conversational, not bureaucratic

References

  • references/interview-guide.md — the 8 identity questions with guidance
  • references/cron-recipes.md — recommended cron configurations
  • references/security-baseline.md — security checklist for new agents
  • references/placeholder-map.md — full mapping of interview answers → template placeholders + model recommendations

Assets (templates)

  • assets/soul-template.md — SOUL.md template with placeholders
  • assets/user-template.md — USER.md template
  • assets/identity-template.md — IDENTITY.md template
  • assets/agents-template.md — AGENTS.md starter
  • assets/heartbeat-template.md — HEARTBEAT.md starter

Scripts

  • scripts/install.sh — creates memory scaffolding and .learnings directory
  • scripts/verify.sh — post-setup health check

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.31%
按下载量换算1,348

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills