CLANKER.NET Documentation

Welcome to the official documentation for CLANKER.NET - the AI skill marketplace for developers.

What is CLANKER.NET?

CLANKER.NET is a platform that lets you discover, install, and execute AI skills. Think of skills as specialized AI agents that can perform specific tasks - from generating code to creating documents to analyzing data.

Key Features

  • Skill Marketplace - Browse 370+ ready-to-use AI skills across productivity, development, and creative categories
  • MCP Protocol - Connect your favorite AI tools (Claude Desktop, Cursor, VS Code) directly to clanker
  • REST API - Build custom integrations and automate skill execution
  • GitHub + 400 Integrations - Publish skills to your repositories, create PRs from skill outputs, and connect 400+ third-party apps
  • Artifact Management - Store and organize files generated by skill executions

Choose Your Path

Mobile App

Download the iOS app to discover and execute skills on the go.

  1. Download from App Store
  2. Sign in with Apple or GitHub
  3. Browse the skill marketplace
  4. Install and run skills with natural language

MCP Clients

Connect Claude Desktop, Cursor, or VS Code to access skills via MCP protocol.

  1. Get an API Key
  2. Configure your MCP client
  3. Use natural language to search and execute skills

REST API

Build custom integrations, bots, or CI/CD pipelines.

  1. Get an API Key
  2. Explore the API Reference
  3. Start making requests

Quick Example

Skills are executed via the REST API:

curl -X POST https://clanker.net/api/v1/skills/readme-generator/run \
  -H "x-auth-token: YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"input": "Generate a README for my TypeScript CLI"}'

Over MCP, an assistant discovers and installs skills (then runs them via the REST API):

{
  "tool": "install-skill",
  "arguments": {
    "slug": "readme-generator"
  }
}

Core Concepts

ConceptDescription
SkillA specialized AI agent with a specific purpose (e.g., “readme-generator”, “code-reviewer”)
ArtifactA file or output generated by a skill execution
ExecutionA single run of a skill with specific input
Dollarinos (Ds)In-app compute credits used to run skills

Getting Help

Next Steps