Generate installable AI skill packs from GitHub profiles, repositories, documentation URLs, and raw text.
The Talocode Skills API generates SKILL.md files compatible with Cursor, Claude Code, OpenCode, Codra, and other SKILL.md-compatible agent workflows.
Base URL: https://api.talocode.site
Auth: Authorization: Bearer $TALOCODE_API_KEY
POST /v1/skills/generate/github-profile
Scrapes a public GitHub profile and generates a skill pack. 80 credits
POST /v1/skills/generate/github-repo
Analyzes a public GitHub repository and generates a skill pack. 100 credits
POST /v1/skills/generate/docs
Fetches documentation from a URL and generates a skill pack. 100 credits
POST /v1/skills/generate/text
Generates a skill pack from raw text input. 40 credits
POST /v1/skills/export/cursor
Exports a generated skill as Cursor-compatible files. 10 credits
POST /v1/skills/export/claude
Exports a generated skill as Claude Code-compatible files. 10 credits
GET /v1/skills/health
Returns the health status of the Skills API. Free
import { Talocode } from "@talocode/sdk";
const talocode = new Talocode();
// Generate skill from GitHub profile
const skill = await talocode.skills.generate.githubProfile({
username: "octocat",
target: "cursor"
});
// Generate skill from GitHub repository
const repoSkill = await talocode.skills.generate.githubRepo({
repoUrl: "https://github.com/talocode/codra",
target: "cursor"
});
// Generate skill from documentation
const docsSkill = await talocode.skills.generate.docs({
url: "https://docs.example.com/api",
target: "cursor"
});
// Generate skill from text
const textSkill = await talocode.skills.generate.text({
name: "my-project",
content: "Project context and patterns...",
target: "cursor"
});
| Tool Name | Description | Credits |
|---|---|---|
skills_generate_github_profile | Generate a skill from a GitHub profile | 80 |
skills_generate_github_repo | Generate a skill from a GitHub repo | 100 |
skills_generate_docs | Generate a skill from a docs URL | 100 |
skills_generate_text | Generate a skill from text | 40 |
skills_export_cursor | Export a skill for Cursor | 10 |
skills_export_claude | Export a skill for Claude Code | 10 |
| Action | Credits | USD Value |
|---|---|---|
| skills.generate.github_profile | 80 | $0.80 |
| skills.generate.github_repo | 100 | $1.00 |
| skills.generate.docs | 100 | $1.00 |
| skills.generate.text | 40 | $0.40 |
| skills.export.cursor | 10 | $0.10 |
| skills.export.claude | 10 | $0.10 |