yandex-tracker
Installation
SKILL.md
Yandex Tracker
Use yandex_tracker_client to interact with Yandex Tracker API v2. Use the execution, secret-management, and temporary-file facilities available in the current runtime.
Workflow
- Identify whether the request is read-only or mutating. Do not create, update, transition, delete, or bulk-change data unless the user has authorized that action and its scope is clear.
- Read only the topic references needed for the request.
- Before the first API call in an environment, follow setup and authentication.
- For multi-step work, create one self-contained Python script in a runtime-appropriate temporary or working directory. Combine related queries and mutations in that script, then print a concise structured result.
- Materialize lazy API iterables with
list(...)before counting, sorting, reusing, or summarizing them. - Discover queue-specific values instead of guessing custom field keys, transition IDs, resolutions, users, or sprint IDs.
- After a mutation, report the affected issue keys and the confirmed result. For asynchronous bulk changes, wait for completion and surface failures.