skill/SKILL.md
# clawharbor Installer Skill **Install and launch the clawharbor virtual office dashboard.** ## What This Does 1. Clones the clawharbor repo to `~/clawharbor/` 2. Installs dependencies 3. Launches the Next.js server on port 3333 4. Opens your browser to the dashboard 5. Shows your agents in a charming retro office ## When to Use - User asks to "install clawharbor" - User wants to "connect clawharbor to workspace" - User wants to "see the virtual office" - User clicks the CTA on clawharbor.w
npx skillsauth add clawharbor/clawharbor skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Install and launch the clawharbor virtual office dashboard.
~/clawharbor/# 1. Clone repo
git clone https://github.com/clawharbor/clawharbor.git ~/clawharbor
# 2. Install dependencies
cd ~/clawharbor && npm install
# 3. Create launcher script
cat > ~/.local/bin/clawharbor <<'EOF'
#!/bin/bash
cd ~/clawharbor && npm run dev
EOF
chmod +x ~/.local/bin/clawharbor
# 4. Launch
clawharbor
~/clawharbor/After installation, the user can:
clawharbor from anywhere to launchPort 3333 already in use?
# Find and kill the process
lsof -ti:3333 | xargs kill -9
OpenClaw not found?
openclaw statusls ~/.openclaw/openclaw.jsonNo agents showing?
~/.openclaw/openclaw.json → agents.list[]rm -rf ~/clawharbor
rm ~/.local/bin/clawharbor
~/clawharbor/ (user directory, no sudo)~/.openclaw/ (no writes)./install.sh (in this skill directory)data-ai
Virtual office dashboard — pixel-art NPCs for your OpenClaw agents. Install, manage, and interact with your retro AI office.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------