@jdalbright

Specialized Agents

Manage and orchestrate 25 specialized AI agents across content, development, QA, personalization, and meta tasks for parallel workflows.

Current version
v1.1.0
4 2.3万All installs 0

SKILLS.md - Installed Skills Index

Master index of all OpenClaw skills available to Scout 🐕

Last Updated: 2026-02-08


📋 Quick Reference

SkillPurposeCLI ToolAuth Status
ai-image-editorLocal ComfyUI image generationgenerate_comfyui.py✅ Local (no auth)
apple-notesManage Apple Notesmemo✅ macOS native
apple-remindersManage Apple Remindersremindctl✅ macOS native
birdX/Twitter CLIbird✅ Safari cookies
blogwatcherRSS/Atom feed monitoringblogwatcherN/A
camsnapRTSP/ONVIF camera capturecamsnapCamera-dependent
clawhubSkill marketplaceclawhubN/A
coding-agentRun Codex/Claude Code/OpenCodecodex, claude, opencodeUser-dependent
content-repurposerCross-platform contentrepurposer.pyN/A
geminiGoogle Gemini CLIgeminiAPI key
gifgrepGIF search & extractiongifgrepN/A
githubGitHub CLIgh✅ OAuth
gogGoogle Workspacegog✅ OAuth
healthcheckSecurity hardeningopenclaw healthcheckN/A
imsgiMessage/SMSimsg✅ macOS native
model-usageAPI cost trackingmodel_usage.pyReads local logs
openhuePhilips Hue controlopenhue✅ Bridge paired
parallel-agents25 AI agent typesparallel-agentsN/A
peekaboomacOS UI automationpeekaboo✅ macOS native
songseeAudio spectrogramssongseeN/A
summarizeText/video summarizationsummarizeN/A
things-macThings 3 task managerthings✅ macOS native
video-framesVideo frame extractionvideo-framesN/A
weatherWeather forecastsweatherN/A

🔥 Most-Used Skills (My Top 10)

1. ai-image-editor — Local Image Generation

Location: ~/.openclaw/skills/ai-image-editor/

Quick Commands:

# Z-Image Turbo (~3s, preferred)
python3 ~/.openclaw/skills/ai-image-editor/scripts/generate_comfyui.py "prompt" --model zimage --count 3

# Flux Dev (~45s, max quality)
python3 ~/.openclaw/skills/ai-image-editor/scripts/generate_flux.py "prompt" --count 2

# img2img transformation
python3 ~/.openclaw/skills/ai-image-editor/scripts/img2img_comfyui.py photo.jpg "new setting" --strength 0.5

# Test connection
python3 ~/.openclaw/skills/ai-image-editor/scripts/test_comfyui.py

Output: ~/.openclaw/workspace/comfyui_output/ Server: 192.168.1.183:8188 (RTX 4070) Docs: ~/.openclaw/skills/ai-image-editor/SKILL.md


2. content-repurposer — Cross-Platform Posts

Location: ~/.openclaw/skills/content-repurposer/

Quick Commands:

# Generate all platform variants
python3 ~/.openclaw/skills/content-repurposer/scripts/repurposer.py \
  --source "Happy #humpday!" --pretty

# With content type hint
python3 ~/.openclaw/skills/content-repurposer/scripts/repurposer.py \
  --source "Gym time 🔥" --type lifestyle --output captions.json

# Single platform only
python3 ~/.openclaw/skills/content-repurposer/scripts/repurposer.py \
  --source "Coffee ☕️" --platform onlyfans --pretty

Content Types: humpday, fcf, scs, collab, travel, lifestyle Platforms: twitter, onlyfans, instagram, bluesky Docs: ~/.openclaw/skills/content-repurposer/SKILL.md


3. parallel-agents — Multi-Agent System

Location: ~/.openclaw/skills/parallel-agents/

Quick Commands:

# Test the system
~/.openclaw/skills/parallel-agents/scripts/parallel-agents test

# Run parallel demo
~/.openclaw/skills/parallel-agents/scripts/parallel-agents demo

# Generate content with parallel agents
~/.openclaw/skills/parallel-agents/scripts/parallel-agents content

25 Agent Types:

  • Content (5): creative_writer, funny_writer, educational_writer, trendy_writer, controversial_writer
  • Development (5): frontend_dev, backend_dev, database_dev, api_dev, devops_dev
  • QA (5): code_qa, security_qa, performance_qa, accessibility_qa, test_qa
  • Personalized (5): travel_event_planner, donut_care_coordinator, pup_community_engager, print_project_manager, training_assistant
  • Meta (4): agent_creator, agent_design_reviewer, agent_refiner, agent_orchestrator

Key Docs:

  • SKILL.md — Main documentation
  • META_AGENT_COMPLETE.md — Full system docs
  • AGENT_ORCHESTRATOR.md — Orchestrator guide

4. model-usage — Cost Tracking

Location: ~/.openclaw/skills/model-usage/

Quick Commands:

# Current model cost
python3 ~/.openclaw/skills/model-usage/scripts/model_usage.py --provider claude --mode current

# All models breakdown
python3 ~/.openclaw/skills/model-usage/scripts/model_usage.py --provider claude --mode all

# JSON output
python3 ~/.openclaw/skills/model-usage/scripts/model_usage.py --provider claude --mode all --format json --pretty

Last Known: $127.97 total (Sonnet $98.87, Opus $25.66, Haiku $3.44)


5. openhue — Smart Lights

Location: ~/.openclaw/skills/openhue/

Quick Commands:

openhue get light                              # List all lights
openhue get scene                              # List scenes
openhue set light "Bedroom lamp" --on          # Turn on
openhue set light ac8767b6-... --brightness 30 # By ID
openhue set room "Living Room" --brightness 75 # Whole room

Bridge: 192.168.1.217 ✅ paired Key Light: Bedroom lamp (ac8767b6-ee86-455d-beeb-19b5a705a9d9)


6. bird — X/Twitter

Location: ~/.openclaw/skills/bird/

Quick Commands:

bird tweet "text"                           # Post
bird tweet "text" --media photo.jpg         # With image
bird read <tweet-url>                       # Read tweet
bird home                                   # Timeline

Auth: Safari cookies ✅ Handle: good boi Jax


7. gog — Google Workspace

Location: ~/.openclaw/skills/gog/

Quick Commands:

# Gmail
gog gmail search 'newer_than:7d' --max 10
gog gmail thread show <threadId>
gog gmail send --to x@y.com --subject "Hi" --body "Hello"

# Calendar
gog calendar events primary --from today --to tomorrow

# Drive
gog drive files list --max 10

Account: jdalbright1@gmail.com


8. github — GitHub CLI

Location: ~/.openclaw/skills/github/

Quick Commands:

gh issue list --repo owner/repo               # List issues
gh pr list                                    # List PRs
gh run list                                   # CI runs
gh api repos/:owner/:repo/issues              # API queries

Auth: ✅ OAuth as jdalbright


9. imsg — iMessage/SMS

Location: ~/.openclaw/skills/imsg/

Quick Commands:

imsg send +19195551234 "message"              # Send
imsg list                                     # List chats
imsg history <chat-id>                        # View history

Auth: ✅ macOS native Note: Read receipts disabled → use time-based tracking


10. things-mac — Task Manager

Location: ~/.openclaw/skills/things-mac/

Quick Commands:

things list inbox                             # Inbox items
things list today                             # Today's tasks
things add "Task name" --list Inbox           # Add task
things search "keyword"                       # Search

Auth: ✅ macOS native (Things 3)


📚 All Skills (Alphabetical)

ai-image-editor

Purpose: Local AI image generation using ComfyUI on RTX 4070 Status: ✅ Fully operational (9 models tested) Location: ~/.openclaw/skills/ai-image-editor/ Docs: SKILL.md Key Scripts:

  • scripts/generate_comfyui.py — SDXL/Z-Image generation
  • scripts/generate_flux.py — Flux generation
  • scripts/img2img_comfyui.py — Image transformation
  • scripts/test_comfyui.py — Connection test

apple-notes

Purpose: Manage Apple Notes via CLI Status: ✅ Available Location: ~/.openclaw/skills/apple-notes/ CLI: memo Docs: SKILL.md


apple-reminders

Purpose: Manage Apple Reminders via CLI Status: ✅ Available Location: ~/.openclaw/skills/apple-reminders/ CLI: remindctl Docs: SKILL.md


bird

Purpose: X/Twitter CLI for posting and reading Status: ✅ Authenticated via Safari cookies Location: ~/.openclaw/skills/bird/ CLI: bird Docs: SKILL.md


blogwatcher

Purpose: Monitor blogs and RSS/Atom feeds Status: Available Location: ~/.openclaw/skills/blogwatcher/ CLI: blogwatcher Docs: SKILL.md


camsnap

Purpose: Capture frames/clips from RTSP/ONVIF cameras Status: Available Location: ~/.openclaw/skills/camsnap/ CLI: camsnap Docs: SKILL.md


clawhub

Purpose: Search, install, update skills from clawhub.com Status: Available Location: ~/.openclaw/skills/clawhub/ CLI: clawhub Docs: SKILL.md


coding-agent

Purpose: Run Codex CLI, Claude Code, OpenCode, or Pi Coding Agent Status: Available Location: ~/.openclaw/skills/coding-agent/ CLI: codex, claude, opencode Docs: SKILL.md


content-repurposer

Purpose: Transform one post into platform-optimized variants Status: ✅ Active use Location: ~/.openclaw/skills/content-repurposer/ CLI: repurposer.py Docs: SKILL.md


gemini

Purpose: Google Gemini CLI for Q&A and generation Status: Available Location: ~/.openclaw/skills/gemini/ CLI: gemini Docs: SKILL.md


gifgrep

Purpose: Search GIF providers, download, extract stills Status: Available Location: ~/.openclaw/skills/gifgrep/ CLI: gifgrep Docs: SKILL.md


github

Purpose: GitHub CLI (issues, PRs, CI runs, API) Status: ✅ Authenticated as jdalbright Location: ~/.openclaw/skills/github/ CLI: gh Docs: SKILL.md


gog

Purpose: Google Workspace (Gmail, Calendar, Drive, Contacts, Sheets, Docs) Status: ✅ OAuth as jdalbright1@gmail.com Location: ~/.openclaw/skills/gog/ CLI: gog Docs: SKILL.md


healthcheck

Purpose: Host security hardening and risk configuration Status: Available Location: ~/.openclaw/skills/healthcheck/ CLI: openclaw healthcheck Docs: SKILL.md


imsg

Purpose: iMessage/SMS CLI (list, history, watch, send) Status: ✅ macOS native Location: ~/.openclaw/skills/imsg/ CLI: imsg Docs: SKILL.md


model-usage

Purpose: Track per-model API costs (Codex/Claude) Status: ✅ Active use Location: ~/.openclaw/skills/model-usage/ CLI: model_usage.py Docs: SKILL.md


openai-image-gen

Purpose: Batch-generate images via OpenAI Images API Status: Available (cloud alternative to local ComfyUI) Location: ~/.openclaw/skills/openai-image-gen/ Docs: SKILL.md


openai-whisper

Purpose: Local speech-to-text with Whisper CLI Status: Available Location: ~/.openclaw/skills/openai-whisper/ CLI: whisper Docs: SKILL.md


openai-whisper-api

Purpose: Transcribe audio via OpenAI Whisper API Status: Available Location: ~/.openclaw/skills/openai-whisper-api/ Docs: SKILL.md


openhue

Purpose: Control Philips Hue lights and scenes Status: ✅ Bridge paired at 192.168.1.217 Location: ~/.openclaw/skills/openhue/ CLI: openhue Docs: SKILL.md


parallel-agents

Purpose: 25 AI agent types with meta-agent creation system Status: ✅ Fully operational (spawned 20 agents successfully) Location: ~/.openclaw/skills/parallel-agents/ CLI: parallel-agents Docs: SKILL.md, META_AGENT_COMPLETE.md


peekaboo

Purpose: Capture and automate macOS UI Status: ✅ macOS native Location: ~/.openclaw/skills/peekaboo/ CLI: peekaboo Docs: SKILL.md


songsee

Purpose: Generate spectrograms and audio visualizations Status: Available Location: ~/.openclaw/skills/songsee/ CLI: songsee Docs: SKILL.md


summarize

Purpose: Extract/summarize text from URLs, podcasts, files Status: Available Location: ~/.openclaw/skills/summarize/ CLI: summarize Docs: SKILL.md


things-mac

Purpose: Manage Things 3 tasks and projects Status: ✅ macOS native Location: ~/.openclaw/skills/things-mac/ CLI: things Docs: SKILL.md


video-frames

Purpose: Extract frames/clips from videos using ffmpeg Status: Available Location: ~/.openclaw/skills/video-frames/ CLI: video-frames Docs: SKILL.md


weather

Purpose: Current weather and forecasts (no API key needed) Status: Available Location: ~/.openclaw/skills/weather/ CLI: weather Docs: SKILL.md


🛠️ Workspace-Level Tools (Non-Skills)

These are custom scripts in ~/.openclaw/workspace/ that I use daily:

ToolPurposeCommand
heartbeat-v2.pySystem status checkspython3 heartbeat-v2.py
morning-briefing.pyDaily 8 AM briefingpython3 morning-briefing.py
check-imessages-v4.pyiMessage alertspython3 check-imessages-v4.py
check-jax-dms.pyBluesky DM checkerpython3 check-jax-dms.py
printer-status.pyBambu printer statuspython3 printer-status.py
fetch-rss-digest.pyDaily news digestpython3 fetch-rss-digest.py
guardrails.pySafety/cost monitoringpython3 guardrails.py
jax-content-assistant.pyCaption generatorpython3 jax-content-assistant.py
screenshot-bluesky-analytics.pyWeekly analyticspython3 screenshot-bluesky-analytics.py

Full docs: See TOOLS.md


🔧 Skills I Should Explore

Not yet used but potentially useful:

  • blogwatcher — Could monitor competitor/content creator blogs
  • camsnap — If you get security cameras
  • gemini — Alternative AI for specific tasks
  • gifgrep — For finding reaction GIFs quickly
  • songsee — If analyzing audio content
  • video-frames — For content creation workflows

Maintenance: Update this file when adding new skills or changing auth status.

Security Scan

Status

suspicious

Open VirusTotal

OpenClaw

gpt-5-mini

suspicious

OpenClaw analysis

The bundle contains a very large multi-agent codebase and runtime instructions that ask the agent to read and act on many local files and to run system-level setup/download scripts — but the registry metadata declares no credentials, no install steps, and provides no description, which is inconsistent and warrants caution.

Confidence: high

Metadata

  • Owner: @jdalbright
  • Created: 2026/02/10
  • Updated: 2026/02/26
  • Versions: 1
  • Comments: 0
  • Scan checked at: 2026/02/11

Runtime

No runtime requirements are exposed in the official public payload.