Help Center
How to Use TokRepo
From browsing assets to CLI sync — everything you need to get started.
1 Getting Started
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.
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.
Share Your Work
Install the TokRepo CLI, authenticate with your API token, 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/2 CLI Reference
The TokRepo CLI lets you manage AI assets from your terminal. Install globally to get started:
tokrepo login— Authenticate with your API tokentokrepo logintokrepo whoami— Show current logged-in usertokrepo whoamitokrepo push <dir>— Push a single asset directorytokrepo push ./my-skill/ --privatetokrepo sync <dir>— Scan and sync all assets in a directorytokrepo sync ~/.claude/skills/tokrepo status <dir>— Preview sync status without pushingtokrepo status ~/.claude/skills/tokrepo list— List your published assetstokrepo listtokrepo search <query>— Search community assetstokrepo search "code review"tokrepo install <uuid>— Install an asset locallytokrepo install a1b2c3d4-e5f6-...3 FAQ
Is TokRepo free to use?
Which AI coding tools are supported?
How do I get my API Token?
Can I make my assets private?
What does tokrepo sync do exactly?
How does forking work?
How are token costs estimated?
Does TokRepo support version history?
4 API Reference
All APIs use https://api.tokrepo.com as base URL. Authenticated endpoints require Header: Authorization: Bearer tk_xxx.
/api/v1/tokenboard/push/upsertCreate or update an asset (idempotent)
/api/v1/tokenboard/push/diffCompare local assets against remote state
/api/v1/tokenboard/push/createCreate a new asset (always creates)
/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
Push Example
curl -X POST https://api.tokrepo.com/api/v1/tokenboard/push/upsert \
-H "Authorization: Bearer tk_your_token" \
-H "Content-Type: application/json" \
-d '{
"title": "My Code Review Skill",
"description": "Automated code review workflow",
"files": [
{ "name": "SKILL.md", "content": "# Code Review\n..." },
{ "name": "review.md", "content": "## Steps\n..." }
],
"tags": ["code-review", "skill"]
}'5 Keyboard Shortcuts
Didn't find your answer?
Reach out anytime — we typically respond within 24 hours.
ethanfrostcool@gmail.com