skills$openclaw/clawdbot-workspace-template-review
xadenryan9.8k

by xadenryan

clawdbot-workspace-template-review – OpenClaw Skill

clawdbot-workspace-template-review is an OpenClaw Skills integration for writing workflows. Compare a Clawdbot workspace against the official templates installed with Clawdbot (npm or source) and list missing sections to pull in, especially after upgrades.

9.8k stars8.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

nameclawdbot-workspace-template-review
descriptionCompare a Clawdbot workspace against the official templates installed with Clawdbot (npm or source) and list missing sections to pull in, especially after upgrades. OpenClaw Skills integration.
ownerxadenryan
repositoryxadenryan/clawdbot-skill-clawdbot-workspace-template-review
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xadenryan/clawdbot-skill-clawdbot-workspace-template-review
last updatedFeb 7, 2026

Maintainer

xadenryan

xadenryan

Maintains clawdbot-workspace-template-review in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
338 B
SKILL.md
2.1 KB
SKILL.md

name: clawdbot-workspace-template-review description: Compare a Clawdbot workspace against the official templates installed with Clawdbot (npm or source) and list missing sections to pull in, especially after upgrades.

Workspace Template Diff

Use this skill when the user wants to compare their workspace .md files (AGENTS, SOUL, USER, IDENTITY, TOOLS, HEARTBEAT, etc.) against the official Clawdbot templates, then review missing sections and decide what to add.

Locate the official templates

Find the installed Clawdbot source root:

  • If clawdbot is installed via npm/pnpm globally:
    • command -v clawdbot
    • If it points into .../node_modules/.bin/, resolve to the sibling node_modules/clawdbot
    • Or use npm root -g / pnpm root -g and look for clawdbot/
  • If Clawdbot runs from source, use that checkout root (must contain package.json).

Templates live at:

<clawdbot-root>/docs/reference/templates/

If you can’t find the source root, ask the user where their Clawdbot is installed.

Comparison workflow

  1. Identify the workspace root (the user’s “our version” directory).
  2. For each template file in docs/reference/templates (skip *.dev.md):
    • Open the official template and the workspace file with the same name.
    • Ignore template frontmatter (--- block) and any “First Run”/“Bootstrap” sections.
    • Compare the remaining sections and list any missing blocks.

Helpful commands (use ad‑hoc CLI tools like diff):

ls <clawdbot-root>/docs/reference/templates
sed -n '1,200p' <clawdbot-root>/docs/reference/templates/AGENTS.md
sed -n '1,200p' <workspace>/AGENTS.md
diff -u <clawdbot-root>/docs/reference/templates/AGENTS.md <workspace>/AGENTS.md

When reporting diffs:

  • Show the missing sections verbatim from the official template.
  • Explain briefly why they matter, then ask whether to add them.
  • Move file by file; skip files that only differ by frontmatter or bootstrap content.

Output format

Use the “missing section” format we used previously:

  • File path
  • Missing block(s)
  • Suggestion + question to proceed
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install clawdbot-workspace-template-review?

Run openclaw add @xadenryan/clawdbot-skill-clawdbot-workspace-template-review in your terminal. This installs clawdbot-workspace-template-review into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xadenryan/clawdbot-skill-clawdbot-workspace-template-review. Review commits and README documentation before installing.