一键导入
youtrack
Use when integrating with YouTrack via REST API (authentication, issue search/read/write, pagination, custom fields, and OpenAPI-driven clients).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when integrating with YouTrack via REST API (authentication, issue search/read/write, pagination, custom fields, and OpenAPI-driven clients).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | youtrack |
| description | Use when integrating with YouTrack via REST API (authentication, issue search/read/write, pagination, custom fields, and OpenAPI-driven clients). |
Use this skill when a task needs real YouTrack data or automation through HTTP APIs.
/api (for example: https://<instance>/api/...).Authorization: Bearer <token>.fields query parameter.$top and $skip./api/openapi.json.YOUTRACK_TOKEN), never hardcode.Authorization: Bearer ${YOUTRACK_TOKEN}Accept: application/jsonfields=....$top and $skip in loops for large sets.query=... where supported (for example issues listing).# Health check (auth + minimal payload)
curl -sS \
-H "Authorization: Bearer $YOUTRACK_TOKEN" \
-H "Accept: application/json" \
"https://<instance>/api/users/me?fields=id,login,name"
# Issues page with query + fields + pagination
curl -sS \
-H "Authorization: Bearer $YOUTRACK_TOKEN" \
-H "Accept: application/json" \
"https://<instance>/api/issues?query=project:%20ABC&fields=idReadable,summary,updated,project(name)&\$top=50&\$skip=0"
id, version-related fields if needed).fields=... and verify changed state.https://<instance>/api/openapi.json.fields in all non-trivial reads.Use when the user mentions Feishu. Handles Feishu Docs/Drive/Wiki operations in Chrome via Playwright only, preferring headless execution with saved auth state. Supports browsing, reading, summarizing, editing, publishing local files as separate Feishu docs, deterministic template-center creation, and true wiki child-page creation via move-into-wiki flow. If login is stale, switch to QR login in a visible browser.
Git operations for local repos and GitHub workflows. Use when Codex needs to inspect repo state, craft commits, manage branches, rebase/merge safely, or decide on Git/GitHub commands (including gh usage) while following safety constraints and commit conventions.
Use Peekaboo on macOS for GUI-level automation (screenshots, UI inspection, clicks/typing, window/app control). Trigger this skill when tasks require real GUI interaction, screenshot automation, or browser-level automation on macOS.
Create, edit, validate, and render Mermaid diagrams (.mmd or Mermaid blocks in Markdown/HTML). Use when asked to convert visuals or specs into Mermaid, fix Mermaid syntax errors, add labels/line breaks, or render SVG/PNG via mmdc or a Mermaid CDN.
Use when Codex is asked to automate local GUI workflows with SakuraProj using skpr-local/skpr-cli scripts, including probe-driven readiness and repeatable local task orchestration.
Use when handling JavaScript package management and scripts, with pnpm as the default package manager.