LaunchKit · 2026
Back to Skills

yandex-tracker-cli

CLI for Yandex Tracker (bash + curl)

2
638 downloads
by @bkamuz

Setup & Installation

openclaw skills install @bkamuz/yandex-tracker-cli

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install yandex-tracker-cli

Version History

v1.2.8Mar 6, 2026 - Version note by skill developer:

- Добавлен автоматический тег yandex-tracker-cli при создании и обновлении задач (issue-create/issue-update). - Документация обновлена: команды issue-create и issue-update теперь явно указывают на автотегирование. - В раздел "Примечания" добавлено описание поведения автотега и способ его удаления. - Файл version.txt удалён как неиспользуемый.

What This Skill Does

A bash script that wraps the Yandex Tracker API using curl. Manages queues, issues, comments, worklogs, attachments, and runs YQL queries from the command line. No external dependencies beyond curl and jq.

Runs on any system with curl and jq, no SDK installation or language runtime required.

When to use it

  • Log time spent on a task after a work session
  • Create and assign issues to a queue from a terminal
  • Search open issues in a queue using a YQL filter
  • Upload a file attachment to an existing issue
  • Move an issue through status transitions without opening a browser

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: create an issue in the BIMLAB queue titled 'Fix login timeout' with critical priority, then log 2 hours of work

AGENT
  1. 1Run: echo '{"priority":"critical"}' | yandex-tracker issue-create BIMLAB 'Fix login timeout'
  2. 2Parse the returned issue ID from the JSON response
  3. 3Run: yandex-tracker issue-worklog <issue-id> PT2H 'Initial investigation'
OUTPUT

Issue BIMLAB-NNN created with critical priority, 2 hours logged

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Yandex Tracker OAuth token (TOKEN): generated in Tracker UI under Settings → Applications → OAuthOrganization ID (ORG_ID): found in browser DevTools on any Tracker network request as the X-Org-Id header value