# Send Jira to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdbot-jira-skill",
    "name": "Jira",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kyjus25/clawdbot-jira-skill",
    "canonicalUrl": "https://clawhub.ai/kyjus25/clawdbot-jira-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdbot-jira-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdbot-jira-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/jira.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/clawdbot-jira-skill"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawdbot-jira-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdbot-jira-skill",
    "agentUrl": "https://openagent3.xyz/skills/clawdbot-jira-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdbot-jira-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdbot-jira-skill/agent.md"
  }
}
```
## Documentation

### Jira Skill

Work with Jira issues and worklogs from Clawdbot (search, status, create, log work, worklog summaries).

### Setup

Get your API key: https://id.atlassian.com/manage-profile/security/api-tokens
Click "Create API Token"
Set environment variables:
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"
export JIRA_URL="https://your-domain.atlassian.net"
# Optional project scope (comma-separated). Empty = search all.
export JIRA_BOARD="ABC"

Requires curl, jq, bc, and python3.

### Quick Commands

All commands live in {baseDir}/scripts/jira.sh.

{baseDir}/scripts/jira.sh search "timeout" [max] — fuzzy search by summary or key inside JIRA_BOARD
{baseDir}/scripts/jira.sh link ABC-123 — browser link for an issue
{baseDir}/scripts/jira.sh issue ABC-123 — quick issue details
{baseDir}/scripts/jira.sh status ABC-123 "In Progress" — move an issue (validates available transitions)
{baseDir}/scripts/jira.sh transitions ABC-123 — list allowed transitions
{baseDir}/scripts/jira.sh assign ABC-123 "name or email" — assign by user search
{baseDir}/scripts/jira.sh assign-me ABC-123 — assign to yourself
{baseDir}/scripts/jira.sh comment ABC-123 "text" — add a comment
{baseDir}/scripts/jira.sh create "Title" ["Description"] — create a Task in JIRA_BOARD
{baseDir}/scripts/jira.sh log ABC-123 2.5 [YYYY-MM-DD] — log hours (defaults to today UTC)
{baseDir}/scripts/jira.sh my [max] — open issues assigned to you
{baseDir}/scripts/jira.sh hours 2025-01-01 2025-01-07 — your logged hours by issue (JSON)
{baseDir}/scripts/jira.sh hours-day 2025-01-07 [name|email] — logged hours for a day grouped by user/issue; optional filter (name/email; also resolves to accountId)
{baseDir}/scripts/jira.sh hours-issue ABC-123 [name|email] — logged hours for an issue; optional filter (name/email; also resolves to accountId)

### Command Reference

Search issues
{baseDir}/scripts/jira.sh search "payment failure" [maxResults]



Issue link
{baseDir}/scripts/jira.sh link ABC-321



Issue details
{baseDir}/scripts/jira.sh issue ABC-321



Update status
{baseDir}/scripts/jira.sh status ABC-321 "Done"



List transitions
{baseDir}/scripts/jira.sh transitions ABC-321



Assign issue
{baseDir}/scripts/jira.sh assign ABC-321 "Jane Doe"



Assign to yourself
{baseDir}/scripts/jira.sh assign-me ABC-321



Add comment
{baseDir}/scripts/jira.sh comment ABC-321 "Deployed to staging"



Create issue
{baseDir}/scripts/jira.sh create "Fix auth timeout" "Users being logged out after 5m"



Log hours
{baseDir}/scripts/jira.sh log PB-321 1.5 2025-01-18



My open issues
{baseDir}/scripts/jira.sh my [maxResults]



Logged hours by issue (me)
{baseDir}/scripts/jira.sh hours 2025-01-01 2025-01-05



Logged hours for a day (everyone)
{baseDir}/scripts/jira.sh hours-day 2025-01-05



Logged hours for a day (user filter)
{baseDir}/scripts/jira.sh hours-day 2025-01-05 "jane"



Logged hours for an issue
{baseDir}/scripts/jira.sh hours-issue ABC-321 "jane"

### Notes

Worklog commands use Jira's worklog/updated + worklog/list combo and may take a few seconds on large projects.
hours filters by JIRA_EMAIL; hours-day returns all users with totals per issue and user.
Outputs for hours commands are JSON for reuse in other tools.
Status transitions are validated against the server-provided transition list before applying.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kyjus25
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdbot-jira-skill)
- [Send to Agent page](https://openagent3.xyz/skills/clawdbot-jira-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdbot-jira-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdbot-jira-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdbot-jira-skill)