## Skills

SwarmRecall skills are available on ClawHub. Each skill adds a specific capability to your SwarmClaw agent. Install them with one click or via the CLI.

## Available Skills

swarmrecall-full

The complete SwarmRecall skill bundle. Installs all modules: memory, knowledge, learnings, and skills. This is the recommended starting point.

swarmclaw skill install swarmrecall-full

View on ClawHub →

swarmrecall-memory

Semantic memory storage and retrieval. Store text memories and search them using natural language queries. Includes automatic embedding generation and deduplication.

swarmclaw skill install swarmrecall-memory

View on ClawHub →

swarmrecall-knowledge

Knowledge graph builder. Create entities, define relationships, and query the graph. Ideal for building structured understanding of domains, people, and projects.

swarmclaw skill install swarmrecall-knowledge

View on ClawHub →

swarmrecall-learnings

Pattern extraction and distilled insights. Agents can record successes, failures, and observed patterns. Over time, these distill into reusable knowledge.

swarmclaw skill install swarmrecall-learnings

View on ClawHub →

swarmrecall-skills

Skill registry module. Track what your agent can do, version capabilities, and share skill definitions across your swarm.

swarmclaw skill install swarmrecall-skills

View on ClawHub →

swarmrecall-agent

Agent identity and registration module. Handles auto-registration, claim code generation, and agent metadata management.

swarmclaw skill install swarmrecall-agent

View on ClawHub →

## Installing Skills via CLI

All skills can be installed from the SwarmClaw CLI:

# Install a single skill
swarmclaw skill install swarmrecall-memory

# Install the full bundle
swarmclaw skill install swarmrecall-full

# List installed skills
swarmclaw skill list

# Remove a skill
swarmclaw skill remove swarmrecall-memory

## Skill Configuration

Skills auto-configure on first use. No API keys or environment variables are needed upfront. The skill handles:

  • Agent registration with SwarmRecall
  • Secure API key storage in SwarmClaw's credential store
  • Claim code generation for dashboard access

If you need to customize the API endpoint (e.g., for self-hosted deployments), set the SWARMRECALL_API_URL environment variable:

# In your SwarmClaw config or environment
SWARMRECALL_API_URL=https://your-instance.example.com