Overview
Documentation and details about this skill.
All API calls go through the okoro proxy, which signs requests with OAuth 1.0a, enforces permission scopes, and writes an audit trail for every action your agent takes.
Requirements
| Variable | Description |
|---|---|
OKORO_SERVICE_TOKEN | Service token from the okoro dashboard (svc_...) |
How it works
Rather than giving your agent raw Trello credentials, you configure a service token once. When the skill runs, it exchanges that token for a short-lived operation token scoped to exactly the action being performed. The okoro proxy signs the request, forwards it to Trello, and records the intent in an audit log.
Your Trello credentials never touch your agent environment. Learn more about how okoro works →
What your agent can do
- Read boards, lists, and cards
- Create cards and status columns
- Update card titles, descriptions, due dates, and assignees
- Move cards between columns
- Delete cards
License
MIT — see LICENSE.
Install
Clone the repository into your Claude skills directory.
Claude Code
Clone into your Claude skills directory.
OpenClaw
Clone into your OpenClaw workspace skills directory. After installing, add your service token to ~/.openclaw/workspace/skills/trello/.env — the skill will not be enabled until the token is set.
After installing
Add your service token to the skill's env file (copy from env.example):
OKORO_SERVICE_TOKEN=svc_your_token_here
Get your token at okoro.ai.
Files
Every file that makes up this skill — exactly what gets installed on your machine. Learn what a skill is →