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

Claude Code logo

Claude Code

OpenAI Codex logo

OpenAI Codex

Cursor logo

Cursor

Gemini CLI logo

Gemini CLI

Windsurf logo

Windsurf

Cline logo

Cline

Aider logo

Aider

Bolt.new logo

Bolt.new

TokRepo CLI logo

TokRepo CLI

REST API logo

REST API

CI/CD logo

CI/CD

Any Agent logo

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
POSThttps://api.tokrepo.com/api/v1/tokenboard/push/oss/upsert

Send 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)