Yandex Tracker CLI for humans and LLM agents.
A command-line client for Yandex Tracker — Yandex's project management tool, similar to Jira. Designed primarily for LLM agents calling commands programmatically, with a strong secondary focus on human developers in the terminal.
- Issue management (create, list, view, update, transition, changelog)
- Comments, links, worklogs, checklists as sub-resources
- Bulk operations (move, update, transition) with async polling
- Reference data (statuses, priorities, resolutions, issue types)
- Field discovery (global and queue-local fields)
- Components and queue management
- User lookup and organization listing
- Structured JSON output with
--jsonfield selection and--jqfiltering - Shell completions (bash, zsh, fish)
- Designed for LLM agents with predictable output and semantic exit codes
brew install slavkluev/tap/ytr
go install github.com/slavkluev/ytr@latest
Download the latest release from GitHub Releases.
# Authenticate
export YTR_TOKEN="your-oauth-token"
export YTR_ORG_ID="your-org-id"
export YTR_ORG_TYPE="360" # or "cloud"
# Issue management
ytr issue create --queue PROJ --summary "New task"
ytr issue list --filter queue=PROJ --json key,summary,status
ytr issue transition PROJ-123 --to "In Progress"
# Comments and worklogs
ytr comment create PROJ-123 --body "Working on this"
ytr worklog create PROJ-123 --duration PT2H --start 2026-03-30T10:00:00Z
# Bulk operations
ytr bulk move PROJ-1 PROJ-2 PROJ-3 --queue TARGET
echo "PROJ-1\nPROJ-2" | ytr bulk update --field priority=critical
# Reference data
ytr status list --json key,name
ytr field list --queue PROJ
# JSON output with jq
ytr issue list --filter queue=PROJ --jq '.items[].key'ytr supports three authentication methods (in order of precedence):
- Flags:
--token,--org-id, and--org-typeon any command; provide all three together - Environment variables:
YTR_TOKEN,YTR_ORG_ID, andYTR_ORG_TYPE - Config file:
ytr auth loginsaves credentials to~/.config/ytr/config.yaml
- Run
ytr --helpfor a list of commands - Run
ytr <command> --helpfor command-specific help - See SKILL.md for LLM agent integration guide
MIT — see LICENSE for details.