How to Use TokRepo
From browsing assets to CLI sync — everything you need to get started.
Getting Started
- 1
Browse & Discover
Explore the homepage for trending assets, use search to find specific skills, or browse by collection to discover curated content from official accounts.
- 2
Install with One Click
Every asset page includes a ready-to-use install command. Click "Use This Asset", copy the command, and paste it into your AI tool. No account required to browse or install.
- 3
Share Your Work
Install the TokRepo CLI, authenticate with your API key, and push your local skills or prompts in one command. Your assets get a permanent URL, version tracking, and community visibility.
npm install -g tokrepo tokrepo login tokrepo push ./my-skill/
CLI Reference
The TokRepo CLI lets you manage AI assets from your terminal. Install globally to get started:
tokrepo loginAuthenticate with your API key$ tokrepo logintokrepo whoamiShow current logged-in user$ tokrepo whoamitokrepo push <dir>Push a single asset directory$ tokrepo push ./my-skill/ --privatetokrepo status <dir>Preview sync status without pushing$ tokrepo status ~/.claude/skills/tokrepo listList your published assets$ tokrepo listtokrepo search <query>Search community assets$ tokrepo search "code review"tokrepo install <uuid>Install an asset locally$ tokrepo install a1b2c3d4-e5f6-...FAQ
Is TokRepo free to use?
Which AI coding tools are supported?
How do I get my API Key?
Can I make my assets private?
How does forking work?
How are token costs estimated?
Does TokRepo support version history?
API Reference
All APIs use https://api.tokrepo.com as base URL. Authenticated endpoints require Header: Authorization: Bearer tk_xxx.
/api/v1/tokenboard/push/oss/upsertCreate or update an asset (OSS version)
/api/v1/tokenboard/push/diffCompare local assets against remote state
/api/v1/tokenboard/push/createLegacy: Create a new asset (DB version)
/api/v1/tokenboard/workflows/listList and search published assets
/api/v1/tokenboard/workflows/detailGet full asset detail by UUID
/api/v1/tokenboard/workflows/rawGet raw content (agent-friendly)
/api/v1/tokenboard/tags/listList available tags
curl -X POST https://api.tokrepo.com/api/v1/tokenboard/push/oss/upsert \
-H "Authorization: Bearer tk_your_token" \
-H "Content-Type: application/json" \
-d '{
"title": "My Code Review Skill",
"description": "Automated code review workflow",
"visibility": 0,
"files": [
{ "name": "SKILL.md", "content": "# Code Review\n..." },
{ "name": "review.md", "content": "## Steps\n..." }
],
"tags": ["code-review", "skill"]
}'Private assets can be opened by the owner when signed in. The Push API also returns share_token and share_url, so CLI callers can open or share a working private link without an extra detail request.
{
"uuid": "5980ac3a-1bd6-4206-84cf-be98fe1e6a3a",
"url": "https://tokrepo.com/en/workflows/my-code-review-skill-5980ac3a",
"share_token": "6a82928329b411f0a884d4dc9af4b8e2",
"share_url": "/workflows/my-code-review-skill-5980ac3a?share_token=6a82928329b411f0a884d4dc9af4b8e2",
"action": "created",
"version": 1
}Keyboard Shortcuts
Didn't find your answer?
Reach out anytime — we typically respond within 24 hours.