โ† All skills
Tencent SkillHub ยท Content Creation

JIRA

Use when the user mentions Jira issues (e.g., "PROJ-123"), asks about tickets, wants to create/view/update issues, check sprint status, or manage their Jira...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use when the user mentions Jira issues (e.g., "PROJ-123"), asks about tickets, wants to create/view/update issues, check sprint status, or manage their Jira...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, _meta.json, references/commands.md, references/mcp.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Jira

Natural language interaction with Jira. Supports multiple backends.

Backend Detection

Run this check first to determine which backend to use: 1. Check if jira CLI is available: โ†’ Run: which jira โ†’ If found: USE CLI BACKEND 2. If no CLI, check for Atlassian MCP: โ†’ Look for mcp__atlassian__* tools โ†’ If available: USE MCP BACKEND 3. If neither available: โ†’ GUIDE USER TO SETUP BackendWhen to UseReferenceCLIjira command availablereferences/commands.mdMCPAtlassian MCP tools availablereferences/mcp.mdNoneNeither availableGuide to install CLI

Quick Reference (CLI)

Skip this section if using MCP backend. IntentCommandView issuejira issue view ISSUE-KEYList my issuesjira issue list -a$(jira me)My in-progressjira issue list -a$(jira me) -s"In Progress"Create issuejira issue create -tType -s"Summary" -b"Description"Move/transitionjira issue move ISSUE-KEY "State"Assign to mejira issue assign ISSUE-KEY $(jira me)Unassignjira issue assign ISSUE-KEY xAdd commentjira issue comment add ISSUE-KEY -b"Comment text"Open in browserjira open ISSUE-KEYCurrent sprintjira sprint list --state activeWho am Ijira me

Quick Reference (MCP)

Skip this section if using CLI backend. IntentMCP ToolSearch issuesmcp__atlassian__searchJiraIssuesUsingJqlView issuemcp__atlassian__getJiraIssueCreate issuemcp__atlassian__createJiraIssueUpdate issuemcp__atlassian__editJiraIssueGet transitionsmcp__atlassian__getTransitionsForJiraIssueTransitionmcp__atlassian__transitionJiraIssueAdd commentmcp__atlassian__addCommentToJiraIssueUser lookupmcp__atlassian__lookupJiraAccountIdList projectsmcp__atlassian__getVisibleJiraProjects See references/mcp.md for full MCP patterns.

Triggers

"create a jira ticket" "show me PROJ-123" "list my tickets" "move ticket to done" "what's in the current sprint"

Issue Key Detection

Issue keys follow the pattern: [A-Z]+-[0-9]+ (e.g., PROJ-123, ABC-1). When a user mentions an issue key in conversation: CLI: jira issue view KEY or jira open KEY MCP: mcp__atlassian__jira_get_issue with the key

Workflow

Creating tickets: Research context if user references code/tickets/PRs Draft ticket content Review with user Create using appropriate backend Updating tickets: Fetch issue details first Check status (careful with in-progress tickets) Show current vs proposed changes Get approval before updating Add comment explaining changes

Before Any Operation

Ask yourself: What's the current state? โ€” Always fetch the issue first. Don't assume status, assignee, or fields are what user thinks they are. Who else is affected? โ€” Check watchers, linked issues, parent epics. A "simple edit" might notify 10 people. Is this reversible? โ€” Transitions may have one-way gates. Some workflows require intermediate states. Description edits have no undo. Do I have the right identifiers? โ€” Issue keys, transition IDs, account IDs. Display names don't work for assignment (MCP).

NEVER

NEVER transition without fetching current status โ€” Workflows may require intermediate states. "To Do" โ†’ "Done" might fail silently if "In Progress" is required first. NEVER assign using display name (MCP) โ€” Only account IDs work. Always call lookupJiraAccountId first, or assignment silently fails. NEVER edit description without showing original โ€” Jira has no undo. User must see what they're replacing. NEVER use --no-input without all required fields (CLI) โ€” Fails silently with cryptic errors. Check project's required fields first. NEVER assume transition names are universal โ€” "Done", "Closed", "Complete" vary by project. Always get available transitions first. NEVER bulk-modify without explicit approval โ€” Each ticket change notifies watchers. 10 edits = 10 notification storms.

Safety

Always show the command/tool call before running it Always get approval before modifying tickets Preserve original information when editing Verify updates after applying Always surface authentication issues clearly so the user can resolve them

No Backend Available

If neither CLI nor MCP is available, guide the user: To use Jira, you need one of: 1. **jira CLI** (recommended): https://github.com/ankitpokhrel/jira-cli Install: brew install ankitpokhrel/jira-cli/jira-cli Setup: jira init 2. **Atlassian MCP**: Configure in your MCP settings with Atlassian credentials.

Deep Dive

LOAD reference when: Creating issues with complex fields or multi-line content Building JQL queries beyond simple filters Troubleshooting errors or authentication issues Working with transitions, linking, or sprints Do NOT load reference for: Simple view/list operations (Quick Reference above is sufficient) Basic status checks (jira issue view KEY) Opening issues in browser TaskLoad Reference?View single issueNoList my ticketsNoCreate with descriptionYes โ€” CLI needs /tmp patternTransition issueYes โ€” need transition ID workflowJQL searchYes โ€” for complex queriesLink issuesYes โ€” MCP limitation, need script References: CLI patterns: references/commands.md MCP patterns: references/mcp.md

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • references/commands.md Docs
  • references/mcp.md Docs
  • _meta.json Config