首页龙虾技能列表 › Openclaw Startup

Openclaw Startup

v1.0.3

First-run setup wizard for new OpenClaw agents. Interviews the user to generate a tailored SOUL.md, scaffolds memory architecture, installs recommended crons...

0· 131·0 当前·0 累计
by @zurbrick (Don Zurbrick)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/24
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's files, instructions, and requested environment are consistent with a first-run agent setup wizard — it scaffolds workspace files, creates a git repo, and optionally configures crons using the OpenClaw CLI.
评估建议
This skill appears coherent and does what it says: it will ask the interview questions, generate SOUL/USER/IDENTITY/AGENTS files, create a workspace (default: $HOME/.openclaw/workspace or OPENCLAW_WORKSPACE), initialize a git repo, and optionally register crons via the openclaw CLI. Before running: (1) Confirm the workspace path it will write to — avoid pointing it at sensitive directories; (2) Review the generated SOUL.md/USER.md/IDENTITY.md when the agent shows them and only approve writes you...
详细分析 ▾
用途与能力
Name/description match the provided files and scripts: templates, interview guide, memory scaffolding, cron recommendations, and post-setup verification. Required binaries (bash, mkdir, date) are appropriate for the tasks.
指令范围
SKILL.md confines actions to interviewing the user, generating templates, creating a workspace, and optionally installing crons via the openclaw CLI. It explicitly requires user approval before writing. The included scripts create files and verify them; they do not read or transmit unrelated system secrets or call external endpoints.
安装机制
No install spec — instruction-only with two local scripts. Scripts are included in the skill bundle (no remote downloads or third-party package installs). This minimizes install-time risk.
凭证需求
The skill declares no required environment variables or credentials. The scripts optionally respect OPENCLAW_WORKSPACE if set; otherwise they write to a default $HOME/.openclaw/workspace. No unrelated credentials or secrets are requested.
持久化与权限
always is false and the skill is user-invocable. The scripts create files and initialize a local git repo in the workspace (normal for scaffolding). The skill does not modify other skills' configs or request permanent platform-wide presence.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.32026/3/24

- Updated companion skill recommendations: added `summarize`, removed `agent-memory-loop`, `battle-tested-agent`, `openclaw-guide`, and `agent-qa-gates`. - Improved the companion skills table to reflect current best practices and available skills. - No changes to core functionality or setup process.

● 无害

安装命令 点击复制

官方npx clawhub@latest install openclaw-startup
镜像加速npx clawhub@latest install openclaw-startup --registry https://cn.clawhub-mirror.com

技能文档

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 

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
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务