by @tryosschat
Interact with the Tembo Public API to create coding tasks, list repositories, and manage AI agent workflows. Use when automating Tembo tasks, integrating Tembo into CI/CD pipelines, or building custom tooling around Tembo's AI coding agents.
A CLI tool for interacting with the Tembo Public API - manage AI coding tasks and repositories programmatically.
Use this skill when:
bun add -g github:tryosschat/tembo-cli
Get your API key from app.tembo.io → Settings → API Keys.
# Set your API key
tembo-cli auth login YOUR_API_KEY
# Verify authentication
tembo-cli auth whoami
# Check status
tembo-cli auth status
You can also set the TEMBO_API_KEY environment variable.
Important: Agents using this skill MUST ask for explicit user confirmation before running any command that modifies state. This includes:
tasks create — creates a new coding task (costs compute, triggers an AI agent)auth login / auth logout — modifies stored credentialsRead-only commands (tasks list, tasks search, repos list, auth whoami, auth status) are safe to run without confirmation.
Example: Before creating a task, always confirm:
"I'd like to create a Tembo task: Fix the login bug on repo
myorg/myapp. Should I proceed?"
Never run background tasks or batch-create tasks without the user explicitly allowing it.
| Command | Description |
|---|---|
tembo-cli auth login <key> | Save API key (validates against API) |
tembo-cli auth logout | Remove stored API key |
tembo-cli auth whoami | Show current user/organization |
tembo-cli auth status | Show config path and key status |
| Command | Description |
|---|---|
tembo-cli tasks list | List tasks (--page, --limit, --json) |
tembo-cli tasks search <query> | Search tasks (--limit, --json) |
| `temb... |