jira-create
Installation
SKILL.md
Create JIRA Issues from $ARGUMENTS
Analyze the provided file(s) and plan a JIRA hierarchy. This skill plans structure only — every individual ticket write is delegated to lisa:jira-write-ticket. Do not call mcp__atlassian__createJiraIssue from this skill; the necessary write tools are intentionally not in allowed-tools.
Process
- Analyze: Read $ARGUMENTS to understand scope.
- Extract source artifacts: invoke the
lisa:tracker-source-artifactsskill, then enumerate every external URL, embed, attachment, or example payload and classify each by domain per its rules. Build theartifactsmap. See "Source Artifacts" below. - Walk the live product (when applicable): if the work touches existing user-facing surfaces, invoke the
lisa:product-walkthroughskill to capture current behavior, design-vs-product divergence, and reuse candidates. Especially load-bearing for Expo/React Native — a UI ticket without a current-product walkthrough is missing context the implementer needs. Skip only when the work is purely backend or affects a screen that does not yet exist. See "Live Product Walkthrough" below. - Determine structure:
- Epic needed if: multiple features, major changes, >3 related files
- Direct tasks if: bug fix, single file, minor change
- Plan hierarchy:
Epic → User Story → Tasks (test, implement, document, cleanup) - Delegate every write to
lisa:jira-write-ticketin dependency order (epic first, then stories with the epic as parent, then sub-tasks with their story as parent). Pass the artifacts (filtered by domain perlisa:tracker-source-artifactsinheritance rules), the walkthrough findings (under## Current Product), and — for UI tickets — the Validation Journey draft with[SCREENSHOT: ...]markers. See "Delegation to jira-write-ticket" below. - Run the artifact preservation gate (
lisa:tracker-source-artifacts§8): after all writes complete, build the preservation matrix and verify every extracted artifact is reachable from the created tickets. Fail loudly if anything was dropped.