# clawhub **Repository Path**: gdfan/clawhub ## Basic Information - **Project Name**: clawhub - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-09 - **Last Updated**: 2026-02-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ClawHub
ClawHub is the **public skill registry for Clawdbot**: publish, version, and search text-based agent skills (a `SKILL.md` plus supporting files). It’s designed for fast browsing + a CLI-friendly API, with moderation hooks and vector search. onlycrabs.ai is the **SOUL.md registry**: publish and share system lore the same way you publish skills. Live: `https://clawhub.ai` onlycrabs.ai: `https://onlycrabs.ai` ## What you can do with it - Browse skills + render their `SKILL.md`. - Publish new skill versions with changelogs + tags (including `latest`). - Browse souls + render their `SOUL.md`. - Publish new soul versions with changelogs + tags. - Search via embeddings (vector index) instead of brittle keywords. - Star + comment; admins/mods can curate and approve skills. ## onlycrabs.ai (SOUL.md registry) - Entry point is host-based: `onlycrabs.ai`. - On the onlycrabs.ai host, the home page and nav default to souls. - On ClawHub, souls live under `/souls`. - Soul bundles only accept `SOUL.md` for now (no extra files). ## How it works (high level) - Web app: TanStack Start (React, Vite/Nitro). - Backend: Convex (DB + file storage + HTTP actions) + Convex Auth (GitHub OAuth). - Search: OpenAI embeddings (`text-embedding-3-small`) + Convex vector search. - API schema + routes: `packages/schema` (`clawhub-schema`). ## Telemetry ClawHub tracks minimal **install telemetry** (to compute install counts) when you run `clawhub sync` while logged in. Disable via: ```bash export CLAWHUB_DISABLE_TELEMETRY=1 ``` Details: `docs/telemetry.md`. ## Repo layout - `src/` — TanStack Start app (routes, components, styles). - `convex/` — schema + queries/mutations/actions + HTTP API routes. - `packages/schema/` — shared API types/routes for the CLI and app. - `docs/spec.md` — product + implementation spec (good first read). ## Local dev Prereqs: Bun + Convex CLI. ```bash bun install cp .env.local.example .env.local # terminal A: web app bun run dev # terminal B: Convex dev deployment bunx convex dev ``` ## Auth (GitHub OAuth) setup Create a GitHub OAuth App, set `AUTH_GITHUB_ID` / `AUTH_GITHUB_SECRET`, then: ```bash bunx auth --deployment-name