Back to Docs

Kits Overview

A kit is a GitHub repo containing a collection of agent skills and configs. Think of it as a portable skill pack for AI agents.

What’s in a Kit

Skills

Skills are directories with SKILL.md files following the Agent Skills standard:

---
name: voice-assistant
description: Process voice commands and respond with TTS
agents: [openclaw, cursor, windsurf]
tools: [exec, read, write]
---

# Voice Assistant

When the user sends a voice message...

Agent Configs

Config files tell agents how to behave:

FileAgent
CLAUDE.mdClaude Code
.cursorrulesCursor
.windsurfrulesWindsurf
AGENTS.mdOpenClaw, Codex
codex.jsonCodex
.clinerulesCline
.aider.conf.ymlAider
.continue/config.jsonContinue

Kit Lifecycle

  1. Create — Organize skills and configs in a directory
  2. Push to GitHub — Your repo is the kit
  3. Push to registrynpx clawclawgo push adds to the index
  4. Add — Others clone with npx clawclawgo add owner/repo

How Others Use Your Kit

npx clawclawgo add yourname/your-repo

This clones your repo (shallow, no git history), finds all SKILL.md files and agent configs, runs a security scan, and generates a CLAWCLAWGO.md documenting what’s inside.

Next Steps

clawclawgo