Install
openclaw skills install kaitenManage Kaiten.ru project boards via REST API for creating, viewing, updating, moving cards, managing spaces, boards, columns, tags, comments, checklists, and...
openclaw skills install kaitenManage Kaiten project boards via REST API (api/latest).
Environment variables (loaded from ~/.openclaw/secrets/kaiten.env):
KAITEN_TOKEN — Bearer API tokenKAITEN_DOMAIN — Company subdomain (e.g. company.kaiten.ru)Before any API call, source the env file:
source ~/.openclaw/secrets/kaiten.env
All requests go to: https://$KAITEN_DOMAIN/api/latest/
Auth header: Authorization: Bearer $KAITEN_TOKEN
| Action | Endpoint | Method |
|---|---|---|
| List spaces | /spaces | GET |
| Get space | /spaces/{id} | GET |
| List boards in space | /spaces/{space_id}/boards | GET |
| Get board | /boards/{id} | GET |
| List columns | /boards/{board_id}/columns | GET |
| List lanes | /boards/{board_id}/lanes | GET |
| List cards | /cards?limit=N&offset=M | GET |
| Get card | /cards/{card_id} | GET |
| Get card comments | /cards/{card_id}/comments | GET |
| Get card checklists | /cards/{card_id}/checklists | GET |
| Get card members | /cards/{card_id}/members | GET |
| Get card files | /cards/{card_id}/files | GET |
| Get card tags | /cards/{card_id}/tags | GET |
| Get card children | /cards/{card_id}/children | GET |
| Get card time logs | /cards/{card_id}/time | GET |
| List all tags | /tags | GET |
| List users | /users | GET |
| Current user | /users/current | GET |
| Search | /search?query=TEXT | GET |
| Action | Endpoint | Method |
|---|---|---|
| Create card | /cards | POST |
| Update card | /cards/{card_id} | PATCH |
| Move card | /cards/{card_id}/location | PATCH |
| Delete card | /cards/{card_id} | DELETE |
| Add comment | /cards/{card_id}/comments | POST |
| Add tag to card | /cards/{card_id}/tags | POST |
| Remove tag | /cards/{card_id}/tags/{tag_id} | DELETE |
| Add member | /cards/{card_id}/members | POST |
| Remove member | /cards/{card_id}/members/{id} | DELETE |
| Create checklist | /cards/{card_id}/checklists | POST |
| Add checklist item | /cards/{card_id}/checklists/{cl_id}/items | POST |
| Toggle checklist item | /cards/{card_id}/checklists/{cl_id}/items/{item_id} | PATCH |
| Log time | /cards/{card_id}/time | POST |
| Create board | /spaces/{space_id}/boards | POST |
| Create column | /boards/{board_id}/columns | POST |
Required fields:
{
"title": "Card title",
"board_id": 123,
"column_id": 456,
"lane_id": 789
}
Optional fields: description, owner_id, type_id, size, size_text, asap, due_date, planned_start, planned_end, tag_ids, member_ids, sort_order.
1 — active (default)2 — archived{
"board_id": 123,
"column_id": 456,
"lane_id": 789
}
State file: SKILL_DIR/scripts/kaiten-state.json
Stores default_space_id, default_board_id, last_space_id, last_board_id, last_column_id, last_lane_id.
Rules:
default_* fieldslast_* fieldsdefault_board_id, fall back to last_board_idlast_board_id# Read state
bash SKILL_DIR/scripts/kaiten.sh state
# Set default space
bash SKILL_DIR/scripts/kaiten.sh set-default-space <space_id>
# Set default board
bash SKILL_DIR/scripts/kaiten.sh set-default-board <board_id>
source ~/.openclaw/secrets/kaiten.envbash SKILL_DIR/scripts/kaiten.sh statescripts/kaiten.sh for common operationsThe scripts/kaiten.sh helper wraps common operations:
# Source env first
source ~/.openclaw/secrets/kaiten.env
# List spaces
bash SKILL_DIR/scripts/kaiten.sh spaces
# List boards in a space
bash SKILL_DIR/scripts/kaiten.sh boards <space_id>
# List columns on a board
bash SKILL_DIR/scripts/kaiten.sh columns <board_id>
# List lanes on a board
bash SKILL_DIR/scripts/kaiten.sh lanes <board_id>
# Get cards (with optional limit/offset)
bash SKILL_DIR/scripts/kaiten.sh cards [limit] [offset]
# Search cards
bash SKILL_DIR/scripts/kaiten.sh search "query text"
# Get single card
bash SKILL_DIR/scripts/kaiten.sh card <card_id>
# Create card
bash SKILL_DIR/scripts/kaiten.sh create-card <board_id> <column_id> <lane_id> "title" ["description"]
# Update card
bash SKILL_DIR/scripts/kaiten.sh update-card <card_id> '{"title":"new title"}'
# Move card
bash SKILL_DIR/scripts/kaiten.sh move-card <card_id> <board_id> <column_id> <lane_id>
# Add comment
bash SKILL_DIR/scripts/kaiten.sh comment <card_id> "comment text"
# List tags
bash SKILL_DIR/scripts/kaiten.sh tags
# Add tag to card
bash SKILL_DIR/scripts/kaiten.sh add-tag <card_id> <tag_id>
# List users
bash SKILL_DIR/scripts/kaiten.sh users
# Current user
bash SKILL_DIR/scripts/kaiten.sh me
# Card checklists
bash SKILL_DIR/scripts/kaiten.sh checklists <card_id>
# Create checklist
bash SKILL_DIR/scripts/kaiten.sh create-checklist <card_id> "checklist name"
# Add checklist item
bash SKILL_DIR/scripts/kaiten.sh add-checklist-item <card_id> <checklist_id> "item text"
# Log time
bash SKILL_DIR/scripts/kaiten.sh log-time <card_id> <minutes> ["comment"]
For full endpoint documentation and field schemas, see references/api-reference.md.