skills$openclaw/clawdbot-release-check
pors531ā˜…

by pors

clawdbot-release-check – OpenClaw Skill

clawdbot-release-check is an OpenClaw Skills integration for ai ml workflows. Check for new clawdbot releases and notify once per new version.

531 stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameclawdbot-release-check
descriptionCheck for new clawdbot releases and notify once per new version. OpenClaw Skills integration.
ownerpors
repositorypors/clawdbot-release-check
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @pors/clawdbot-release-check
last updatedFeb 7, 2026

Maintainer

pors

pors

Maintains clawdbot-release-check in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
check.sh
7.5 KB
setup.sh
3.2 KB
_meta.json
472 B
SKILL.md
2.5 KB
SKILL.md

name: clawdbot-release-check description: Check for new clawdbot releases and notify once per new version. homepage: https://github.com/clawdbot/clawdbot metadata: {"clawdbot":{"emoji":"šŸ”„","requires":{"bins":["curl","jq"]}}}

Clawdbot Release Check

Checks for new clawdbot releases from GitHub and notifies you once per version. No nagging.

Installation

clawdhub install clawdbot-release-check

Quick Setup (with cron)

# Add daily update check at 9am, notify via Telegram
{baseDir}/scripts/setup.sh --telegram YOUR_TELEGRAM_ID

# Custom hour (e.g., 8am)
{baseDir}/scripts/setup.sh --hour 8 --telegram YOUR_TELEGRAM_ID

# Remove cron job
{baseDir}/scripts/setup.sh --uninstall

After setup, restart the gateway:

launchctl kickstart -k gui/$(id -u)/com.clawdis.gateway

Manual Usage

# Check for updates (silent if up-to-date or already notified)
{baseDir}/scripts/check.sh

# Show version info
{baseDir}/scripts/check.sh --status

# Force notification (bypass "already notified" state)
{baseDir}/scripts/check.sh --force

# Show highlights from ALL missed releases
{baseDir}/scripts/check.sh --all-highlights

# Clear state (will notify again on next check)
{baseDir}/scripts/check.sh --reset

# Help
{baseDir}/scripts/check.sh --help

How It Works

  1. Fetches latest release from github.com/clawdbot/clawdbot/releases
  2. Compares with your installed version (from package.json)
  3. If behind, shows highlights from release notes
  4. Saves state to prevent repeat notifications

Example Output

šŸ”„ **Clawdbot Update Available!**

Current: `2.0.0-beta5`
Latest:  `2026.1.5-3`

_(3 versions behind)_

**Highlights:**
- Models: add image-specific model config
- Agent tools: new `image` tool
- Config: default model shorthands

šŸ”— https://github.com/clawdbot/clawdbot/releases/tag/v2026.1.5-3

To update: `cd /path/to/clawdis && git pull && pnpm install && pnpm build`

Files

State — ~/.clawdbot/clawdbot-release-check-state.json:

{
  "lastNotifiedVersion": "v2026.1.5-3",
  "lastCheckMs": 1704567890123
}

Cache — ~/.clawdbot/clawdbot-release-check-cache.json:

  • Release data cached for 24 hours (saves API calls)
  • Highlights extracted once per release (saves tokens)
  • Use --clear-cache to force refresh

Configuration

Environment variables:

  • CLAWDBOT_DIR — Path to clawdbot source (auto-detected from ~/dev/clawdis, ~/clawdbot, or npm global)
  • CACHE_MAX_AGE_HOURS — Cache TTL in hours (default: 24)
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:

Configuration

Environment variables: - `CLAWDBOT_DIR` — Path to clawdbot source (auto-detected from `~/dev/clawdis`, `~/clawdbot`, or npm global) - `CACHE_MAX_AGE_HOURS` — Cache TTL in hours (default: 24)

FAQ

How do I install clawdbot-release-check?

Run openclaw add @pors/clawdbot-release-check in your terminal. This installs clawdbot-release-check 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/pors/clawdbot-release-check. Review commits and README documentation before installing.