plugins/lisa/skills/jira-create/SKILL.md
This skill should be used when creating JIRA epics, stories, and tasks from code files or descriptions. It analyzes the provided input, determines the appropriate issue hierarchy, and creates issues with comprehensive quality requirements including test-first development and documentation.
npx skillsauth add codyswanngt/lisa jira-createInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
All Atlassian operations in this skill go through lisa:atlassian-access. Do not call MCP tools or acli directly.
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 invoke lisa:atlassian-access write operations directly from this skill — all writes go through lisa:jira-write-ticket.
lisa:tracker-source-artifacts skill, then enumerate every external URL, embed, attachment, or example payload in the input and classify each by domain per its rules. Build the artifacts map (one entry per artifact: url, title, domain, source page, classification reason). See "Source Artifacts" below.lisa:product-walkthrough skill to capture current behavior, design-vs-product divergence, and reuse candidates. Skip when the work is purely backend or affects a screen that does not yet exist. See "Live Product Walkthrough" below.Epic → User Story → Tasks (test, implement, document, cleanup)
lisa:jira-write-ticket in 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 per lisa:tracker-source-artifacts inheritance rules) and the walkthrough findings (under ## Current Product). See "Delegation to jira-write-ticket" below.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.Test-First: Write tests before implementation Quality Gates: All tests/checks must pass, no SonarCloud violations Documentation: Check existing, update/create new, remove obsolete Cleanup: Remove temporary code, scripts, dev configs
Tickets that change runtime behavior should include a Validation Journey section in the description. This section is consumed by the lisa:jira-journey skill to automate verification.
Include a Validation Journey when the ticket involves:
Skip the Validation Journey for:
Design the journey based on the change type. The agent executing the journey determines how to verify each step using patterns from the project's verfication.md. Place [EVIDENCE: name] markers at key verification points.
Add this section to the ticket description:
h2. Validation Journey
h3. Prerequisites
- Local dev server running
- Database accessible
- Required environment variables set
h3. Steps
1. Verify the current state before changes
2. Apply the change (run migration, deploy, etc.)
3. Verify the expected new state [EVIDENCE: state-after-change]
4. Test error/edge cases [EVIDENCE: error-handling]
5. Verify rollback or cleanup if applicable [EVIDENCE: rollback-check]
h3. Assertions
- Describe what must be true after verification
- Each assertion is verified against the captured evidence
curl -s localhost:3000/health" not "Check the API"[EVIDENCE: name] at states that prove the change works. Use descriptive kebab-case names (e.g., api-response, schema-check, rate-limit-hit)If $ARGUMENTS includes (or references) any external artifact — PRD, design doc, Figma URL, Lovable prototype, Loom walkthrough, screenshot, example payload — those references MUST be preserved as remote links on the created tickets. Silent artifact loss is the single most common quality failure in this pipeline.
Invoke the lisa:tracker-source-artifacts skill for the canonical rules: domains, per-tool classification (Figma /proto/ vs design, Lovable, Loom, screenshots), source precedence, conflict handling under ## Open Questions, inheritance from epic → story → sub-task, and the existing-component reuse expectation. Do not restate the rules here — invoke the skill so any rule change propagates uniformly.
When delegating actual writes to lisa:jira-write-ticket, pass the extracted artifact list so its Phase 4c (Remote Links) step can attach them.
When the work touches existing user-facing surfaces, invoke the lisa:product-walkthrough skill before drafting tickets. The walkthrough findings (current behavior, design-vs-product divergence, reuse candidates, behavioral surprises) become inputs to the ticket plan and surface under ## Current Product on the resulting tickets. Skip only when the work is purely backend or affects a screen that does not yet exist.
Each issue must clearly communicate to:
Default project: from jira-cli config (override via arguments) Exclude unless requested: migration plans, performance tests
Mandatory. Every ticket created by this skill MUST go through lisa:jira-write-ticket. This skill never invokes lisa:atlassian-access write operations itself — all writes are delegated so the gate cannot be bypassed.
lisa:jira-write-ticket enforces things this skill does not, and which determine ticket quality:
blocks / is blocked by / relates to / duplicates / clones)Tickets must be created in parent-before-child order so each child can be passed its parent key:
lisa:jira-write-ticket for the epic. Capture the returned key.lisa:jira-write-ticket with the epic key as the epic parent. Capture each story key.lisa:jira-write-ticket with the parent story key.For every delegated write, pass:
lisa:jira-write-ticket Phase 4c attaches them as remote linkslisa:jira-add-journey after create)This skill owns:
It does not own the actual JIRA write — that's lisa:jira-write-ticket's job.
documentation
Onboard a user to the project via its LLM Wiki. Interviews the user about themselves in relation to the project, captures that to project-scoped memory only, then gives a guided tour of what the project is and sample questions they can ask. Use when someone is new to the project or asks to be onboarded. Read-mostly — it does not open PRs or write PII into the wiki.
documentation
Migrate an existing, hand-rolled wiki implementation onto the lisa-wiki kernel — phased and compatibility-first, with a strict no-loss guarantee. Use when adopting lisa-wiki in a repo that already has its own wiki/, ingest skills, docs, or roles. Renaming things into the canonical shape is fine; losing functionality or data is not. Ends by running /doctor.
development
Health-check the LLM Wiki. Reports orphan pages, contradictions, stale claims, broken internal links, missing index/log coverage, structure-manifest violations, and secret/tenant leaks. Use periodically or before hardening a wiki. Read-only — it reports findings, it does not fix them.
testing
Ingest source material into the LLM Wiki. With an argument (URL, file path, or prompt) it ingests that one source; with no argument it runs a full ingest across every enabled non-external-write source. Routes to the right connector, then runs the ordered pipeline (source note → synthesis → index → log → verify → state → commit/PR). Use whenever new knowledge should enter the wiki.