{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtrack",
    "name": "YouTrack Issue Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/iAhmadZain/youtrack",
    "canonicalUrl": "https://clawhub.ai/iAhmadZain/youtrack",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youtrack",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtrack",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/youtrack"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/youtrack",
    "agentPageUrl": "https://openagent3.xyz/skills/youtrack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtrack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtrack/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "YouTrack CLI",
        "body": "Use ytctl (in scripts/) for YouTrack issue tracking."
      },
      {
        "title": "Setup",
        "body": "Credentials stored in ~/.config/youtrack/config.json:\n\n{\n  \"url\": \"https://your-instance.youtrack.cloud\",\n  \"token\": \"perm:xxx\"\n}\n\nOr set env vars: YOUTRACK_URL, YOUTRACK_TOKEN\n\nGenerate token: YouTrack → Profile → Account Security → New Token"
      },
      {
        "title": "Commands",
        "body": "# List projects\nytctl projects\n\n# List issues (with optional filters)\nytctl issues                           # all issues\nytctl issues SP                        # issues in project SP\nytctl issues SP --query \"state: Open\"  # filtered\nytctl issues --max 50                  # limit results\n\n# Get issue details\nytctl issue SP-123\n\n# Create issue\nytctl create SP \"Bug: Login fails\"\nytctl create SP \"Feature request\" \"Detailed description here\"\n\n# Update issue\nytctl update SP-123 state \"In Progress\"\nytctl update SP-123 assignee john.doe\nytctl update SP-123 priority Critical\n\n# Add comment\nytctl comment SP-123 \"Investigating this now\"\n\n# Search with YouTrack query syntax\nytctl search \"project: SP state: Open assignee: me\"\nytctl search \"created: today\"\nytctl search \"#unresolved sort by: priority\"\n\n# List workflow states for project\nytctl states SP\n\n# List users\nytctl users\nytctl users --query \"john\""
      },
      {
        "title": "Query Syntax",
        "body": "YouTrack query examples:\n\nstate: Open — by state\nassignee: me — assigned to current user\ncreated: today — created today\nupdated: {last week} — updated in last week\n#unresolved — all unresolved\nhas: attachments — with attachments\nsort by: priority desc — sorted\n\nCombine: project: SP state: Open assignee: me sort by: updated"
      },
      {
        "title": "Output",
        "body": "Default: table format. Add --json for raw JSON output:\n\nytctl issues SP --json\nytctl issue SP-123  # always JSON for single issue"
      },
      {
        "title": "Bulk Operations",
        "body": "# Update all matching issues (with dry-run preview)\nytctl bulk-update \"project: SP state: Open\" state \"In Progress\" --dry-run\nytctl bulk-update \"project: SP state: Open\" state \"In Progress\"\n\n# Comment on all matching issues\nytctl bulk-comment \"project: SP state: Open\" \"Batch update notice\"\n\n# Assign all matching issues\nytctl bulk-assign \"project: SP #unresolved\" john.doe --dry-run"
      },
      {
        "title": "Reports",
        "body": "# Project summary (default 7 days)\nytctl report SP\nytctl report SP --days 14\n\n# User activity report\nytctl report-user zain\nytctl report-user zain --days 30\n\n# State distribution with bar chart\nytctl report-states SP"
      },
      {
        "title": "Notes",
        "body": "Project can be shortName (SP) or full name\nFields: state, summary, description, assignee, priority\nUse ytctl states PROJECT to see valid state names\nBulk operations support --dry-run to preview before executing"
      }
    ],
    "body": "YouTrack CLI\n\nUse ytctl (in scripts/) for YouTrack issue tracking.\n\nSetup\n\nCredentials stored in ~/.config/youtrack/config.json:\n\n{\n  \"url\": \"https://your-instance.youtrack.cloud\",\n  \"token\": \"perm:xxx\"\n}\n\n\nOr set env vars: YOUTRACK_URL, YOUTRACK_TOKEN\n\nGenerate token: YouTrack → Profile → Account Security → New Token\n\nCommands\n# List projects\nytctl projects\n\n# List issues (with optional filters)\nytctl issues                           # all issues\nytctl issues SP                        # issues in project SP\nytctl issues SP --query \"state: Open\"  # filtered\nytctl issues --max 50                  # limit results\n\n# Get issue details\nytctl issue SP-123\n\n# Create issue\nytctl create SP \"Bug: Login fails\"\nytctl create SP \"Feature request\" \"Detailed description here\"\n\n# Update issue\nytctl update SP-123 state \"In Progress\"\nytctl update SP-123 assignee john.doe\nytctl update SP-123 priority Critical\n\n# Add comment\nytctl comment SP-123 \"Investigating this now\"\n\n# Search with YouTrack query syntax\nytctl search \"project: SP state: Open assignee: me\"\nytctl search \"created: today\"\nytctl search \"#unresolved sort by: priority\"\n\n# List workflow states for project\nytctl states SP\n\n# List users\nytctl users\nytctl users --query \"john\"\n\nQuery Syntax\n\nYouTrack query examples:\n\nstate: Open — by state\nassignee: me — assigned to current user\ncreated: today — created today\nupdated: {last week} — updated in last week\n#unresolved — all unresolved\nhas: attachments — with attachments\nsort by: priority desc — sorted\n\nCombine: project: SP state: Open assignee: me sort by: updated\n\nOutput\n\nDefault: table format. Add --json for raw JSON output:\n\nytctl issues SP --json\nytctl issue SP-123  # always JSON for single issue\n\nBulk Operations\n# Update all matching issues (with dry-run preview)\nytctl bulk-update \"project: SP state: Open\" state \"In Progress\" --dry-run\nytctl bulk-update \"project: SP state: Open\" state \"In Progress\"\n\n# Comment on all matching issues\nytctl bulk-comment \"project: SP state: Open\" \"Batch update notice\"\n\n# Assign all matching issues\nytctl bulk-assign \"project: SP #unresolved\" john.doe --dry-run\n\nReports\n# Project summary (default 7 days)\nytctl report SP\nytctl report SP --days 14\n\n# User activity report\nytctl report-user zain\nytctl report-user zain --days 30\n\n# State distribution with bar chart\nytctl report-states SP\n\nNotes\nProject can be shortName (SP) or full name\nFields: state, summary, description, assignee, priority\nUse ytctl states PROJECT to see valid state names\nBulk operations support --dry-run to preview before executing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/iAhmadZain/youtrack",
    "publisherUrl": "https://clawhub.ai/iAhmadZain/youtrack",
    "owner": "iAhmadZain",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youtrack",
    "downloadUrl": "https://openagent3.xyz/downloads/youtrack",
    "agentUrl": "https://openagent3.xyz/skills/youtrack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtrack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtrack/agent.md"
  }
}