Back to Registry View Author Profile
Official Verified
clawboard
Install and operate Clawboard with OpenClaw. Use for scripted/manual/agentic install, token setup, Docker startup, logger plugin wiring, and validation.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/sirouk/ralphieOr
Clawboard
Status
- ClawHub: not available yet.
- Install path today: scripted bootstrap or manual repo install.
- If OpenClaw is missing and user wants Chutes provider, start with
add_chutes.shafter creating ahttps://chutes.aiaccount.
Current Architecture Snapshot
web(Next.js):http://localhost:3010api(FastAPI + SQLite):http://localhost:8010classifier(async stage-2 worker): topic/task classification loopqdrant(vector index): dense retrieval backend on internal Docker networkclawboard-loggerplugin: stage-1 firehose logging + response-time context extension
Retrieval/search stack:
- Dense vectors + BM25 + lexical matching
- Reciprocal rank fusion + reranking
- Qdrant primary, SQLite embeddings mirror/fallback
Goal
Get a user to a working Clawboard install where:
- Clawboard web/api/classifier are running.
clawboard-loggerplugin is installed and enabled.- Token flow is configured correctly (required for writes + non-localhost reads).
- OpenClaw gateway is restarted and logging into Clawboard.
Hard Rules (Repo vs Installed Skill)
- Repo copy (version controlled):
$CLAWBOARD_DIR/skills/clawboard - Installed skill path (what OpenClaw reads):
$HOME/.openclaw/skills/clawboard - Default install mode is symlink (
~/.openclaw/skills/clawboard -> $CLAWBOARD_DIR/skills/clawboard). - Detect mode deterministically at runtime:
if [ -L "$HOME/.openclaw/skills/clawboard" ]; then
echo "symlink"
else
echo "copy"
fi
- In symlink mode (default), repo edits are immediately visible to OpenClaw.
- In copy mode, repo edits do not update OpenClaw until you sync/copy again. After skill file changes (SKILL.md,
agents/,references/,scripts/), sync into OpenClaw:
cd "$CLAWBOARD_DIR"
bash scripts/sync_openclaw_skill.sh --to-openclaw --apply --force
- If you changed files under
~/.openclaw/skills/clawboardwhile in copy mode, sync them back before committing:
cd "$CLAWBOARD_DIR"
bash scripts/sync_openclaw_skill.sh --to-repo --apply
Workspace + Runtime Assumptions (for coding tasks)
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-sirouk-ralphie": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.