agentsclimarketplace

Jira ticket

Skill muhammadrivaldy/agent-skills/jira-ticket

Collection of agent skills for AI coding assistants

Install
npx -y skills add muhammadrivaldy/agent-skills --skill jira-ticket

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Create well-structured Jira tickets using a consistent User Story template with Acceptance Criteria, Technical Notes, Definition of Done, and Links/References sections. Use when user asks to create a Jira issue, ticket, task, story, or file a bug.

SKILL.md

2.5 KB, as published. Nobody here has run it

Jira Ticket

Create Jira tickets following a consistent team template. User Story format with optional sections.

When to Use

User says: "create a ticket", "file a Jira issue", "make a new task", "write a Jira story", "create a new issue", "file a bug".

Template

As a <role>, I want <capability> so that <benefit>.

### Acceptance Criteria
- Each bullet must be independently verifiable pass/fail

### Technical Notes
- Implementation details, gotchas, file paths, patterns to follow

### Definition of Done
- [ ] go test ./... passes
- [ ] go vet ./... passes
- [ ] MR created against <branch>

### Links / References
- Related issues: #
- MR: #

Section Rules

SectionRequiredPurpose
User StoryYesSingle line: role + capability + concrete benefit
Acceptance CriteriaYesClear pass/fail conditions, no ambiguity
Technical NotesNoTribal knowledge, gotchas, file paths, reference patterns
Definition of DoneYesVerification checklist. Update commands and branch per project
Links / ReferencesNoCross-references to issues, MRs, designs, docs

Formatting Rules

  • ### for section headings (Markdown h3)
  • - [ ] for DoD checklist items
  • - for bullet lists in AC and Technical Notes
  • Plain intro paragraph before sections — no heading, serves as Jira description preview
  • Omit empty sections entirely — never include blank sections

Workflow

1. Gather requirements

Ask user for:

  • User story (role + capability + benefit)
  • Acceptance criteria
  • Technical notes (if any)
  • Parent Epic key (default: SPPI-19)
  • Issue type (Task / Bug / Story — default Task)
  • Priority (default Medium)
  • Target branch for DoD MR item

2. Resolve cloud ID

Use atlassian_getAccessibleAtlassianResources to discover cloud ID.

3. Create issue

Use atlassian_createJiraIssue:

  • projectKey: "SPPI"
  • issueTypeName: as determined
  • summary: short descriptive title
  • description: full template body as plain text with Markdown
  • assignee_account_id: reporter's account ID (or ask user)
  • additional_fields: {"parent":{"key":"<EPIC_KEY>"}}

4. Return result

Show URL: https://<domain>.atlassian.net/browse/<KEY>

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.