Push AI Assets
Copy. Paste. Push.
You choose exactly what to push and who can see it. Pick specific files, set private or public. Works with Claude Code, Codex, Cursor, Gemini CLI, and more.
🔑
Log in to get your push command
Your API key is generated automatically when you sign up. Just log in, copy, and start pushing.
Supported AI Tools
Works with all major AI coding tools
OpenAI Codex
Cursor
Gemini CLI
Windsurf
Cline
Aider
Bolt.new
TokRepo CLI
REST API
CI/CD
Any Agent
See full usage guide, real examples & FAQ
8 real-world scenarios · Privacy controls explained · Common questions answered · Pro tips
API Reference · Direct endpoint access
POST
https://api.tokrepo.com/api/v1/tokenboard/push/oss/upsertSend a JSON body with Bearer token in the Authorization header to create or update an asset.
curl -X POST https://api.tokrepo.com/api/v1/tokenboard/push/oss/upsert \
-H "Authorization: Bearer tk_your_token_here" \
-H "Content-Type: application/json" \
-d '{
"title": "My Code Review Skill",
"description": "Automated code review checklist",
"visibility": 0,
"files": [
{
"name": "code-review.md",
"content": "## Goal\nReview code for bugs and security issues...",
"type": "skill"
}
]
}'
# visibility: 0 = private (default, only you), 1 = public (everyone)