Getting Started

Youclaw is an AI-powered platform that converts functions from GitHub repositories into installable OpenClaw Skills. Follow these steps to create your first Skill.

1

Sign in to Youclaw

Create an account or sign in. New users receive 20 free credits to get started.

2

Start a conversation

Open the app and start a new chat. Select your preferred AI model from the input bar.

3

Share a GitHub URL

Paste a public GitHub repository URL. The agent will analyze the codebase structure.

4

Generate a Skill

Tell the agent which function to wrap. It will generate SKILL.md, wrapper script, and dependencies.

GitHub Integration

Youclaw can analyze any public GitHub repository. Simply paste the URL in the chat and the agent will:

  • Fetch repository metadata (name, description, language, stars)
  • Index the file tree and identify code files
  • Detect the primary programming language
  • Read specific files for function extraction
Example URL formats:
https://github.com/owner/repohttps://github.com/owner/repo/tree/main/srchttps://github.com/owner/repo/blob/main/utils.py

Skill Generation

The skill generation process involves multiple steps:

AST Analysis
Parses the source code to extract function signatures, parameters, types, and docstrings.
AI Enhancement
Uses the selected AI model to generate descriptions, usage examples, and documentation.
Package Assembly
Generates SKILL.md frontmatter, CLI wrapper script, and dependency manifest.

AI Models

Youclaw supports multiple AI models through OpenRouter. Each model has different strengths and credit costs:

ModelBest ForCredits
GPT-5.2General purpose, code analysis5
Claude 4.6 (Kimi)Long context, documentation5
MiniMax M1Fast responses, simple tasks2

Credits & Billing

Youclaw uses a credit-based billing system. Credits are consumed when you use AI features.

Free Tier

New users receive 20 free credits upon registration. No credit card required.

View our for subscription plans and credit packages.

Skill Format

Each generated Skill consists of three files:

SKILL.md

The skill manifest with YAML frontmatter containing metadata, parameters, and documentation.

---
name: process-data
version: 1.0.0
description: Process and transform data
parameters:
  - name: input_file
    type: string
    required: true
  - name: format
    type: string
    default: "csv"
---

# process-data

Processes and transforms data files...
run.py / run.js

The wrapper script that provides a CLI interface to the original function.

requirements.txt / package.json

Dependency manifest listing all required packages.

CLI Usage

Install generated Skills using the OpenClaw CLI:

Install a skill:
$ openclaw install process-data
Run a skill:
$ openclaw run process-data --input_file data.csv
List installed skills:
$ openclaw list

API Reference

Youclaw provides a tRPC API for programmatic access. Full API documentation coming soon.

API Access

API access is available on Pro and Annual plans. Contact us for enterprise API keys.