Best fit
- Reading a Jira ticket for context (bug reports, feature requests)
- Creating new Jira issues from discovered bugs or planned work
- Transitioning ticket status (e.g., "In Progress" → "In Review")
event4u-app/agent-config
Use when the user says "check Jira", "create ticket", "update issue", or needs JQL queries, ticket transitions, or branch-to-ticket linking.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/jira-integration"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Reorganized from the pinned upstream SKILL.md
According to the pinned SKILL.md from event4u-app/agent-config: Use when the user says "check Jira", "create ticket", "update issue", or needs JQL queries, ticket transitions, or branch-to-ticket linking.
npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/jira-integration"Best fit
Bring this context
Expected outputs
Key source sections
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
1. Identify action — Search, read, create, update, or transition a ticket? 2. Use the correct endpoint — See API table below. 3. Execute — Make the API call with required fields. 4. Verify — Confirm the response contains expected data or the ticket was updated.
Use this skill when: - Reading a Jira ticket for context (bug reports, feature requests) - Creating new Jira issues from discovered bugs or planned work - Transitioning ticket status (e.g., "In Progress" → "In Review") - Writing JQL queries to find related issues - Linking branc…
Extract ticket IDs from branch names automatically:
Review the “JQL patterns” section in the pinned source before continuing.
Review the “Common queries” section in the pinned source before continuing.
SkillSignal prompt templates
These prompts were written by SkillSignal from the source structure; they are not upstream text.
Task-start prompt
Confirm source fit, inputs, and outputs before acting.
Use jira-integration to help me with: [specific task]. Context: [files, data, or background]. Constraints: [environment, scope, and prohibited actions]. Before acting, check the pinned SKILL.md and explain which sections apply, what inputs are still missing, and what you will deliver.
Source-guided execution
Make the Agent explicitly follow the key extracted sections.
Apply the pinned jira-integration source to [task]. Pay particular attention to these source sections: “Procedure: Work with Jira”, “When to use”, “Branch-to-ticket detection”, “JQL patterns”, “Common queries”. Preserve the important decision at each step. Mark facts not covered by the source as “needs confirmation” instead of inventing them. Then verify the result against my acceptance criteria: [criteria].
Result-review prompt
Check omissions, permissions, and source drift before delivery.
Review the current jira-integration result: (1) does it satisfy the original task; (2) were any applicable steps or limits in the pinned SKILL.md missed; (3) did it perform any unauthorized file, command, network, or data action; and (4) which conclusions remain unverified? List issues first, then fix only what the source or user authorization supports.
Output checklist
The task matches the purpose documented in the SKILL.md.
The source section “Procedure: Work with Jira” has been checked.
The source section “When to use” has been checked.
The source section “Branch-to-ticket detection” has been checked.
The source section “JQL patterns” has been checked.
Inputs, constraints, and acceptance criteria are explicit.
Unverified facts, compatibility, and outcome claims are clearly marked.
Any file, command, network, or data action has been reviewed.
Choose a different workflow
Use this skill when retrieving Jira tickets, analyzing requirements, updating ticket status, adding comments, or transitioning issues. Provides Jira API patterns via MCP or direct REST calls.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailJira チケットの取得、要件分析、チケットステータスの更新、コメントの追加、またはイシューのトランジションを行う際に使用します。MCP または直接 REST 呼び出しによる Jira API パターンを提供します。
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detail在检索Jira工单、分析需求、更新工单状态、添加评论或转换问题时使用此技能。通过MCP或直接REST调用提供Jira API模式。
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailFAQ
Use when the user says "check Jira", "create ticket", "update issue", or needs JQL queries, ticket transitions, or branch-to-ticket linking.
The catalog detected this source-specific install command: npx skills add https://github.com/event4u-app/agent-config --skill "src/skills/jira-integration". Inspect the command and pinned source before running it.
No dedicated Agent platform is declared in the pinned source record.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
Compare before choosing
These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.
Use this skill when retrieving Jira tickets, analyzing requirements, updating ticket status, adding comments, or transitioning issues. Provides Jira API patterns via MCP or direct REST calls.
Jira チケットの取得、要件分析、チケットステータスの更新、コメントの追加、またはイシューのトランジションを行う際に使用します。MCP または直接 REST 呼び出しによる Jira API パターンを提供します。
在检索Jira工单、分析需求、更新工单状态、添加评论或转换问题时使用此技能。通过MCP或直接REST调用提供Jira API模式。
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
Use this skill when:
Do NOT use when:
github-api tool directly)| Tool | Purpose |
|---|---|
jira-integration (GET /search/jql) | Search issues with JQL |
jira-integration (GET /issue/{key}) | Read a specific ticket |
jira-integration (POST /issue) | Create a new ticket |
jira-integration (PUT /issue/{key}) | Update a ticket |
jira-integration (GET /issue/{key}/transitions) | Get available status transitions |
jira-integration (POST /issue/{key}/transitions) | Transition ticket status |
jira-integration (POST /issue/{key}/comment) | Add a comment |
jira-integration (GET /project) | List projects |
jira-integration (GET /field) | List available fields (check before writing JQL) |
Extract ticket IDs from branch names automatically:
feat/DEV-1234/user-notifications → DEV-1234
fix/DEV-5678/null-pointer → DEV-5678
hotfix/DEV-999/critical-fix → DEV-999
Pattern: [A-Z]+-[0-9]+ anywhere in the branch name.
Use git branch --show-current to detect, then fetch the ticket:
jira GET /issue/DEV-1234
# My open tickets
assignee = currentUser() AND status != Done ORDER BY priority DESC
# Tickets in current sprint
project = DEV AND sprint in openSprints() AND assignee = currentUser()
# Recently updated bugs
project = DEV AND type = Bug AND updated >= -7d ORDER BY updated DESC
# Tickets by component
project = DEV AND component = "Import" AND status != Done
GET /fieldcurrentUser() for the authenticated usersprint in openSprints() for current sprintAlways check issue types first: GET /issue/createmeta/{project}/issuetypes
Minimum fields for creation:
project — project key (e.g., DEV)issuetype — issue type (Bug, Task, Story, etc.)summary — short titleJira uses Atlassian Document Format for descriptions:
{
"version": 1,
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{ "type": "text", "text": "Description text here." }
]
}
]
}
Always add attribution when creating issues or comments:
Co-authored by Augment Code
With link to https://www.augmentcode.com/?utm_source=atlassian&utm_medium=jira_issue&utm_campaign=jira
Before transitioning, always get available transitions first:
GET /issue/DEV-1234/transitions
Then transition with the correct ID:
POST /issue/DEV-1234/transitions
{ "transition": { "id": "31" } }
Important: Never transition without explicit user permission (see rules/no-commit.md — same principle applies to ticket status changes).
When creating PRs, include the Jira ticket in:
feat/DEV-1234/descriptionfeat(DEV-1234): descriptionbug-analyzer — uses Jira as input source for bug investigationfeature-planning — uses Jira for feature context/bug-investigate — auto-detects Jira tickets from branch/feature-plan — auto-detects Jira tickets from branchno-commit.md — never change ticket status without permissionstatus works, Status doesn't.accountId is required for assignee — display name alone doesn't work in the API.