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.
Sign in to Youclaw
Create an account or sign in. New users receive 20 free credits to get started.
Start a conversation
Open the app and start a new chat. Select your preferred AI model from the input bar.
Share a GitHub URL
Paste a public GitHub repository URL. The agent will analyze the codebase structure.
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
https://github.com/owner/repohttps://github.com/owner/repo/tree/main/srchttps://github.com/owner/repo/blob/main/utils.pySkill Generation
The skill generation process involves multiple steps:
AI Models
Youclaw supports multiple AI models through OpenRouter. Each model has different strengths and credit costs:
Credits & Billing
Youclaw uses a credit-based billing system. Credits are consumed when you use AI features.
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:
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...The wrapper script that provides a CLI interface to the original function.
Dependency manifest listing all required packages.
CLI Usage
Install generated Skills using the OpenClaw CLI:
$ openclaw install process-data$ openclaw run process-data --input_file data.csv$ openclaw listAPI Reference
Youclaw provides a tRPC API for programmatic access. Full API documentation coming soon.
API access is available on Pro and Annual plans. Contact us for enterprise API keys.