lxcong/synclaw · Archived

setup-synclaw

Install and run SyncClaw from scratch. Use when the user says "setup synclaw", "install synclaw", "deploy synclaw", "init synclaw", or needs to get SyncClaw running on a new machine. SyncClaw is an intelligent task console that bridges human task management with autonomous AI agent execution — a kanban board where tasks are dispatched to AI agents with real-time thought streaming.

First seen Mar 3, 2026

Installation

$ npx skills add lxcong/synclaw --skill setup-synclaw

Summary

  • Install and run SyncClaw from scratch.
  • Use when the user says "setup synclaw", "install synclaw", "deploy synclaw", "init synclaw", or needs to get SyncClaw running on a new machine.
  • SyncClaw is an intelligent task console that bridges human task management with autonomous AI agent execution — a kanban board where tasks are dispatched to AI agents with real-time thought streaming.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch master
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,373 B
  • docs SUMMARY.md 406 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Setup SyncClaw

Prerequisites

Quick Setup

Run the bundled setup script:

bash scripts/setup.sh --gateway-url ws://localhost:18789 --gateway-token YOUR_TOKEN

Options:

  • --dir <path> — parent directory for the clone (default: current directory)
  • --gateway-url <url> — OpenClaw Gateway WebSocket endpoint (default: ws://localhost:18789)
  • --gateway-token <token> — Gateway auth token

The script clones the repo, installs deps, configures .env, initializes the SQLite database, builds for production, and installs the synclaw CLI globally.

Manual Setup

git clone https://github.com/lxcong/synclaw.git && cd synclaw
npm install
cp .env.example .env   # edit with your Gateway URL and token
npm run db:generate
npm run db:push
npm run db:seed         # optional: sample data
npm run build
npm install -g synclaw  # install CLI globally

Environment Variables

Variable Description Default
DATABASE_URL SQLite path file:./dev.db
OPENCLAWGATEWAYURL Gateway WebSocket endpoint ws://localhost:18789
OPENCLAWGATEWAYTOKEN Gateway auth token —

CLI Usage

After setup, manage the server with the synclaw CLI (run from the project directory):

synclaw start [-p port] [-H host] [-d dev]   Start server
synclaw stop [-t timeout]                     Stop server
synclaw restart                               Restart server
synclaw status                                Show PID, uptime, Gateway status
synclaw logs [-f] [-n lines]                  View/follow logs

Verification

After setup, verify everything works:

cd synclaw
synclaw start
synclaw status        # should show Running with PID and port
curl localhost:3000   # should return HTML
synclaw stop