From atlassian-suite
This skill should be used when the user asks to "create a jira issue", "file a bug in jira", "create a story", "open a ticket from this", or runs `/atlassian-suite:create-issue`. Creates a Jira issue with smart defaults pulled from current context (project, type, summary, description, labels), then asks once for confirmation.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suiteThis skill is limited to using the following tools:
Create a Jira issue with sensible defaults derived from context.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Create a Jira issue with sensible defaults derived from context.
$1 = Optional project key (e.g. PROJ).
$2 = Optional summary.
If both omitted, derive from the current conversation. If the conversation lacks enough signal, ask the user.
Resolve the project.
$1 is provided, validate via mcp__acendas-atlassian__jira_get_all_projects (cached).Pick the issue type. Defaults by signal:
BugTaskStory (or Task if Story not available).Validate the chosen type exists in the project via mcp__acendas-atlassian__getJiraProjectIssueTypesMetadata. If not, fall back to Task.
Compose the summary. If $2 is provided, use it. Else generate a one-line summary from the conversation context. Cap at 120 chars.
Compose the description. Markdown with:
Pull from the conversation — don't fabricate steps you didn't see.
Suggest fields. Offer to add: priority, labels, assignee (default: unassigned), epic link. For each, propose a default and let the user accept/change in one prompt.
Confirm before creating. Show the user the assembled payload (project, type, summary, description preview, fields) in a single block. Wait for explicit yes.
Create. Call mcp__acendas-atlassian__jira_create_issue. Report the new key and URL.
READ_ONLY_MODE=true) blocks creation — detect and tell the user instead of failing silently.mcp__acendas-atlassian__jira_batch_create_issues after confirming the full set with the user.