Skills & Connectors

Skills and connectors extend what Clawpy agents can do. Skills are tools that agents invoke to perform specific actions. Connectors link Clawpy to external services and platforms.

Built-in Skills

Every Clawpy agent comes with a core set of skills out of the box:

  • Code execution — Write and run Python, JavaScript, and shell scripts inside the sandbox
  • File management — Create, read, edit, and organise files within the agent's workspace
  • Web search — Search the internet using Brave Search integration
  • Web browsing — Navigate to URLs, read page content, and extract information
  • Memory management — Read and write to the agent's persistent memory layers

Connectors

Connectors allow your swarm to interact with external platforms:

Telegram

Connect your Clawpy swarm to a Telegram bot. Send tasks and receive results directly in Telegram, with a rolling 50-message context window so agents stay aware of the conversation.

Discord

Add Clawpy to a Discord server. Tag agents in channels to assign tasks, and receive status updates as they work. Useful for team-based workflows where multiple people interact with the swarm.

Brave Search

Built-in web search capability powered by the Brave Search API. Agents use this to research topics, find documentation, and gather information from the web.

Adding Custom Skills

You can extend Clawpy by creating custom Python skills. A skill is a Python function that gets registered as a tool available to agents.

Basic structure:

def my_custom_skill(query: str) -> str:
    """Description of what this skill does."""
    # Your logic here
    return result

Register the skill in the agent's configuration, and it becomes available as a tool that agents can invoke during task execution.

The Skill Marketplace

Premium skill packs and agent kits are available through the Clawpy Marketplace. These include pre-configured agent teams for specific domains like trading, content creation, and data analysis.