@codyswann/lisa 2.10.1 → 2.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/README.md +65 -14
  2. package/package.json +1 -1
  3. package/plugins/lisa/.claude-plugin/plugin.json +1 -1
  4. package/plugins/lisa/agents/confluence-prd-intake.md +1 -1
  5. package/plugins/lisa/agents/github-prd-intake.md +2 -2
  6. package/plugins/lisa/agents/linear-agent.md +128 -0
  7. package/plugins/lisa/agents/linear-build-intake.md +62 -0
  8. package/plugins/lisa/agents/linear-prd-intake.md +2 -2
  9. package/plugins/lisa/agents/notion-prd-intake.md +1 -1
  10. package/plugins/lisa/commands/plan.md +1 -1
  11. package/plugins/lisa/rules/config-resolution.md +187 -0
  12. package/plugins/lisa/rules/intent-routing.md +13 -13
  13. package/plugins/lisa/skills/confluence-prd-intake/SKILL.md +9 -4
  14. package/plugins/lisa/skills/confluence-to-tracker/SKILL.md +23 -16
  15. package/plugins/lisa/skills/github-create/SKILL.md +4 -4
  16. package/plugins/lisa/skills/github-prd-intake/SKILL.md +8 -3
  17. package/plugins/lisa/skills/github-to-tracker/SKILL.md +22 -13
  18. package/plugins/lisa/skills/github-write-issue/SKILL.md +2 -2
  19. package/plugins/lisa/skills/implement/SKILL.md +1 -1
  20. package/plugins/lisa/skills/intake/SKILL.md +3 -3
  21. package/plugins/lisa/skills/jira-build-intake/SKILL.md +6 -3
  22. package/plugins/lisa/skills/jira-create/SKILL.md +4 -4
  23. package/plugins/lisa/skills/jira-validate-ticket/SKILL.md +1 -1
  24. package/plugins/lisa/skills/jira-write-ticket/SKILL.md +3 -3
  25. package/plugins/lisa/skills/linear-add-journey/SKILL.md +104 -0
  26. package/plugins/lisa/skills/linear-build-intake/SKILL.md +160 -0
  27. package/plugins/lisa/skills/linear-create/SKILL.md +146 -0
  28. package/plugins/lisa/skills/linear-evidence/SKILL.md +86 -0
  29. package/plugins/lisa/skills/linear-journey/SKILL.md +134 -0
  30. package/plugins/lisa/skills/linear-prd-intake/SKILL.md +11 -6
  31. package/plugins/lisa/skills/linear-read-issue/SKILL.md +200 -0
  32. package/plugins/lisa/skills/linear-sync/SKILL.md +89 -0
  33. package/plugins/lisa/skills/linear-to-tracker/SKILL.md +20 -13
  34. package/plugins/lisa/skills/linear-validate-issue/SKILL.md +270 -0
  35. package/plugins/lisa/skills/linear-verify/SKILL.md +51 -0
  36. package/plugins/lisa/skills/linear-write-issue/SKILL.md +282 -0
  37. package/plugins/lisa/skills/notion-prd-intake/SKILL.md +12 -6
  38. package/plugins/lisa/skills/notion-to-tracker/SKILL.md +21 -15
  39. package/plugins/lisa/skills/plan/SKILL.md +3 -2
  40. package/plugins/lisa/skills/prd-ticket-coverage/SKILL.md +1 -1
  41. package/plugins/lisa/skills/product-walkthrough/SKILL.md +2 -2
  42. package/plugins/lisa/skills/spec-conformance/SKILL.md +1 -2
  43. package/plugins/lisa/skills/ticket-triage/SKILL.md +1 -1
  44. package/plugins/lisa/skills/tracker-add-journey/SKILL.md +5 -3
  45. package/plugins/lisa/skills/tracker-build-intake/SKILL.md +5 -3
  46. package/plugins/lisa/skills/tracker-create/SKILL.md +5 -3
  47. package/plugins/lisa/skills/tracker-evidence/SKILL.md +5 -3
  48. package/plugins/lisa/skills/tracker-journey/SKILL.md +5 -3
  49. package/plugins/lisa/skills/tracker-read/SKILL.md +6 -4
  50. package/plugins/lisa/skills/{jira-source-artifacts → tracker-source-artifacts}/SKILL.md +5 -5
  51. package/plugins/lisa/skills/tracker-sync/SKILL.md +6 -4
  52. package/plugins/lisa/skills/tracker-validate/SKILL.md +8 -7
  53. package/plugins/lisa/skills/tracker-verify/SKILL.md +4 -2
  54. package/plugins/lisa/skills/tracker-write/SKILL.md +12 -10
  55. package/plugins/lisa/skills/verify/SKILL.md +1 -1
  56. package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
  57. package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
  58. package/plugins/lisa-expo/skills/jira-create/SKILL.md +4 -4
  59. package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
  60. package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
  61. package/plugins/lisa-rails/skills/jira-create/SKILL.md +4 -4
  62. package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
  63. package/plugins/src/base/agents/confluence-prd-intake.md +1 -1
  64. package/plugins/src/base/agents/github-prd-intake.md +2 -2
  65. package/plugins/src/base/agents/linear-agent.md +128 -0
  66. package/plugins/src/base/agents/linear-build-intake.md +62 -0
  67. package/plugins/src/base/agents/linear-prd-intake.md +2 -2
  68. package/plugins/src/base/agents/notion-prd-intake.md +1 -1
  69. package/plugins/src/base/commands/plan.md +1 -1
  70. package/plugins/src/base/rules/config-resolution.md +187 -0
  71. package/plugins/src/base/rules/intent-routing.md +13 -13
  72. package/plugins/src/base/skills/confluence-prd-intake/SKILL.md +9 -4
  73. package/plugins/src/base/skills/confluence-to-tracker/SKILL.md +23 -16
  74. package/plugins/src/base/skills/github-create/SKILL.md +4 -4
  75. package/plugins/src/base/skills/github-prd-intake/SKILL.md +8 -3
  76. package/plugins/src/base/skills/github-to-tracker/SKILL.md +22 -13
  77. package/plugins/src/base/skills/github-write-issue/SKILL.md +2 -2
  78. package/plugins/src/base/skills/implement/SKILL.md +1 -1
  79. package/plugins/src/base/skills/intake/SKILL.md +3 -3
  80. package/plugins/src/base/skills/jira-build-intake/SKILL.md +6 -3
  81. package/plugins/src/base/skills/jira-create/SKILL.md +4 -4
  82. package/plugins/src/base/skills/jira-validate-ticket/SKILL.md +1 -1
  83. package/plugins/src/base/skills/jira-write-ticket/SKILL.md +3 -3
  84. package/plugins/src/base/skills/linear-add-journey/SKILL.md +104 -0
  85. package/plugins/src/base/skills/linear-build-intake/SKILL.md +160 -0
  86. package/plugins/src/base/skills/linear-create/SKILL.md +146 -0
  87. package/plugins/src/base/skills/linear-evidence/SKILL.md +86 -0
  88. package/plugins/src/base/skills/linear-journey/SKILL.md +134 -0
  89. package/plugins/src/base/skills/linear-prd-intake/SKILL.md +11 -6
  90. package/plugins/src/base/skills/linear-read-issue/SKILL.md +200 -0
  91. package/plugins/src/base/skills/linear-sync/SKILL.md +89 -0
  92. package/plugins/src/base/skills/linear-to-tracker/SKILL.md +20 -13
  93. package/plugins/src/base/skills/linear-validate-issue/SKILL.md +270 -0
  94. package/plugins/src/base/skills/linear-verify/SKILL.md +51 -0
  95. package/plugins/src/base/skills/linear-write-issue/SKILL.md +282 -0
  96. package/plugins/src/base/skills/notion-prd-intake/SKILL.md +12 -6
  97. package/plugins/src/base/skills/notion-to-tracker/SKILL.md +21 -15
  98. package/plugins/src/base/skills/plan/SKILL.md +3 -2
  99. package/plugins/src/base/skills/prd-ticket-coverage/SKILL.md +1 -1
  100. package/plugins/src/base/skills/product-walkthrough/SKILL.md +2 -2
  101. package/plugins/src/base/skills/spec-conformance/SKILL.md +1 -2
  102. package/plugins/src/base/skills/ticket-triage/SKILL.md +1 -1
  103. package/plugins/src/base/skills/tracker-add-journey/SKILL.md +5 -3
  104. package/plugins/src/base/skills/tracker-build-intake/SKILL.md +5 -3
  105. package/plugins/src/base/skills/tracker-create/SKILL.md +5 -3
  106. package/plugins/src/base/skills/tracker-evidence/SKILL.md +5 -3
  107. package/plugins/src/base/skills/tracker-journey/SKILL.md +5 -3
  108. package/plugins/src/base/skills/tracker-read/SKILL.md +6 -4
  109. package/plugins/src/base/skills/{jira-source-artifacts → tracker-source-artifacts}/SKILL.md +5 -5
  110. package/plugins/src/base/skills/tracker-sync/SKILL.md +6 -4
  111. package/plugins/src/base/skills/tracker-validate/SKILL.md +8 -7
  112. package/plugins/src/base/skills/tracker-verify/SKILL.md +4 -2
  113. package/plugins/src/base/skills/tracker-write/SKILL.md +12 -10
  114. package/plugins/src/base/skills/verify/SKILL.md +1 -1
  115. package/plugins/src/expo/skills/jira-create/SKILL.md +4 -4
  116. package/plugins/src/rails/skills/jira-create/SKILL.md +4 -4
  117. package/plugins/lisa/rules/tracker-resolution.md +0 -76
  118. package/plugins/src/base/rules/tracker-resolution.md +0 -76
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: notion-to-tracker
3
3
  description: >
4
- Break down a Notion PRD into Epics, Stories, and Sub-tasks in the configured destination tracker (JIRA or GitHub Issues per .lisa.config.json). Use this skill whenever the user
4
+ Break down a Notion PRD into Epics, Stories, and Sub-tasks in the configured destination tracker (JIRA, GitHub Issues, or Linear per .lisa.config.json). Use this skill whenever the user
5
5
  shares a Notion PRD URL and wants it converted into tracker tickets, or asks to "break down a PRD",
6
6
  "create tickets from a PRD", "turn this PRD into tickets", or similar. Also trigger when the user
7
7
  mentions creating epics/stories/tasks from a Notion document. This skill handles the full pipeline:
@@ -11,7 +11,7 @@ description: >
11
11
 
12
12
  # Notion PRD to Tracker Breakdown
13
13
 
14
- Convert a Notion PRD into a structured ticket hierarchy in the configured destination tracker (JIRA or GitHub Issues per .lisa.config.json): Epics > Stories > Sub-tasks.
14
+ Convert a Notion PRD into a structured ticket hierarchy in the configured destination tracker (JIRA, GitHub Issues, or Linear per .lisa.config.json): Epics > Stories > Sub-tasks.
15
15
  Each sub-task is scoped to exactly one repo and includes an empirical verification plan.
16
16
 
17
17
  ## Modes
@@ -84,21 +84,27 @@ A Notion PRD URL. The PRD is expected to have:
84
84
 
85
85
  ## Configuration
86
86
 
87
- This skill reads project-specific configuration from environment variables. If these are not set,
88
- ask the user for the values before proceeding.
87
+ This skill reads project configuration from `.lisa.config.json` (with `.lisa.config.local.json` overriding per key) and operational E2E test config from environment variables. See the `config-resolution` rule for the full schema.
88
+
89
+ ### From `.lisa.config.json`
90
+
91
+ This skill is a **PRD source** (Notion); destination tracker resolution is handled by `lisa:tracker-write` and `lisa:tracker-validate` internally — this skill does NOT read `tracker` directly. The relevant config for the source side:
92
+
93
+ | Field | Purpose | Required when |
94
+ |-------|---------|---------------|
95
+ | `notion.prdDatabaseId` | Notion database hosting PRDs | invoked without an explicit Notion page URL (batch / arg-less mode) |
96
+
97
+ ### From environment variables (E2E test config — operational, not tracker)
89
98
 
90
99
  | Variable | Purpose | Example |
91
100
  |----------|---------|---------|
92
- | `JIRA_PROJECT` | JIRA project key for ticket creation | `SE` |
93
- | `JIRA_SERVER` | Atlassian instance URL (site host) | `mycompany.atlassian.net` |
94
101
  | `E2E_TEST_PHONE` | Test user phone number for verification plans | `0000000099` |
95
102
  | `E2E_TEST_OTP` | Test user OTP code | `555555` |
96
103
  | `E2E_TEST_ORG` | Test organization name | `Arsenal` |
97
104
  | `E2E_BASE_URL` | Frontend base URL for Playwright tests | `https://dev.example.io/` |
98
105
  | `E2E_GRAPHQL_URL` | GraphQL API URL for curl verification | `https://gql.dev.example.io/graphql` |
99
106
 
100
- If env vars are not available, ask the user to provide them explicitly before proceeding.
101
- Do not retrieve credentials from repository files or local agent settings.
107
+ If env vars are not available, ask the user to provide them explicitly before proceeding. Do not retrieve credentials from repository files or local agent settings.
102
108
 
103
109
  ## Workflow
104
110
 
@@ -128,17 +134,17 @@ PRDs typically reference external design, UX, and data artifacts (Figma files, L
128
134
  - Embedded images and file attachments on the page itself
129
135
  - Fenced code blocks with example data (JSON, SQL, GraphQL, cURL request/response)
130
136
 
131
- 2. **Classify each artifact and apply taxonomy rules** by invoking the `lisa:jira-source-artifacts` skill. That skill is the single source of truth for: domains (`ui-design` / `ux-flow` / `data` / `ops` / `reference`), per-tool classification rules (Figma `/proto/` vs design, Lovable as `ux-flow`, Loom, screenshots), and coverage smells. Do not restate the rules here — invoke the skill so any drift in the rules propagates uniformly.
137
+ 2. **Classify each artifact and apply taxonomy rules** by invoking the `lisa:tracker-source-artifacts` skill. That skill is the single source of truth for: domains (`ui-design` / `ux-flow` / `data` / `ops` / `reference`), per-tool classification rules (Figma `/proto/` vs design, Lovable as `ux-flow`, Loom, screenshots), and coverage smells. Do not restate the rules here — invoke the skill so any drift in the rules propagates uniformly.
132
138
 
133
139
  3. **Build an `artifacts` map** keyed by domain. Each entry: `{ url, title, domain, source_page, source_page_url, classification_reason }`. The `classification_reason` makes disambiguation auditable ("Figma URL contains `/proto/` → ux-flow"). The `source_page` lets you trace each reference back to where it appeared in the PRD.
134
140
 
135
- 4. **Surface coverage smells** as defined in `lisa:jira-source-artifacts` §5 (zero artifacts, prototype-without-mock, mock-without-prototype, Lovable-without-business-rules). Record any detected smells on the epic.
141
+ 4. **Surface coverage smells** as defined in `lisa:tracker-source-artifacts` §5 (zero artifacts, prototype-without-mock, mock-without-prototype, Lovable-without-business-rules). Record any detected smells on the epic.
136
142
 
137
143
  ### Phase 1.6: Source Precedence & Conflict Resolution
138
144
 
139
- Source precedence rules and cross-axis conflict handling are defined in `lisa:jira-source-artifacts` §3 and §4. Apply them during ticket synthesis: every conflict between artifacts must be recorded under `## Open Questions` on the affected ticket, never silently reconciled.
145
+ Source precedence rules and cross-axis conflict handling are defined in `lisa:tracker-source-artifacts` §3 and §4. Apply them during ticket synthesis: every conflict between artifacts must be recorded under `## Open Questions` on the affected ticket, never silently reconciled.
140
146
 
141
- The existing-component reuse expectation (mocks define visual intent, not implementation shortcut) is defined in `lisa:jira-source-artifacts` §7. Encode it on every UI-touching story.
147
+ The existing-component reuse expectation (mocks define visual intent, not implementation shortcut) is defined in `lisa:tracker-source-artifacts` §7. Encode it on every UI-touching story.
142
148
 
143
149
  ### Phase 2: Codebase + Live Product Research
144
150
 
@@ -164,7 +170,7 @@ Walkthrough findings are attached to the originating Notion PRD as a comment ("C
164
170
 
165
171
  For each PRD epic, **invoke the `lisa:tracker-write` skill** (do not call `createJiraIssue` directly). Pass it everything it needs to enforce its quality gates:
166
172
 
167
- - `project_key`: from `JIRA_PROJECT` config
173
+ - `project_key`: resolved by `lisa:tracker-write` from `.lisa.config.json`
168
174
  - `issue_type`: `Epic`
169
175
  - `summary`: epic title from the PRD
170
176
  - `description_body`: a draft of the 3-audience description containing:
@@ -195,7 +201,7 @@ For each Epic, plan two kinds of stories:
195
201
 
196
202
  For each story, **invoke `lisa:tracker-write`** with:
197
203
 
198
- - `project_key`: from `JIRA_PROJECT` config
204
+ - `project_key`: resolved by `lisa:tracker-write` from `.lisa.config.json`
199
205
  - `issue_type`: `Story`
200
206
  - `epic_parent`: the Epic key captured in Phase 3 (mandatory — `lisa:tracker-write` rejects non-bug, non-epic tickets without an epic parent)
201
207
  - `summary`: prefixed per the naming convention above
@@ -242,7 +248,7 @@ Sub-tasks inherit their parent story's artifacts by reference (the parent link).
242
248
 
243
249
  ### Phase 5.5: Artifact Preservation Gate (mandatory)
244
250
 
245
- Run the preservation gate defined in `lisa:jira-source-artifacts` §8 against the artifacts extracted in Phase 1.5 and the tickets just created. Do NOT restate or modify the gate logic here — invoke the rules from `lisa:jira-source-artifacts` so any rule change propagates uniformly.
251
+ Run the preservation gate defined in `lisa:tracker-source-artifacts` §8 against the artifacts extracted in Phase 1.5 and the tickets just created. Do NOT restate or modify the gate logic here — invoke the rules from `lisa:tracker-source-artifacts` so any rule change propagates uniformly.
246
252
 
247
253
  To run the gate, this skill must:
248
254
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: plan
3
- description: "Decompose a single PRD or specification into ordered work items in the configured tracker. Vendor-agnostic — the source can be a Notion PRD URL, a Confluence PRD URL, a Linear project URL, a GitHub Issue URL, an existing JIRA epic key, a markdown file, or a free-form description; the destination tracker is whatever the project is configured to use via `.lisa.config.json` `tracker` (JIRA or GitHub Issues). Single-PRD mode only — for batch scanning of all Ready PRDs in a queue, use the lisa:intake skill."
3
+ description: "Decompose a single PRD or specification into ordered work items in the configured tracker. Vendor-agnostic — the source can be a Notion PRD URL, a Confluence PRD URL, a Linear project URL, a GitHub Issue URL, an existing JIRA epic key, a markdown file, or a free-form description; the destination tracker is whatever the project is configured to use via `.lisa.config.json` `tracker` (JIRA, GitHub Issues, or Linear). Single-PRD mode only — for batch scanning of all Ready PRDs in a queue, use the lisa:intake skill."
4
4
  allowed-tools: ["Skill", "Bash", "Read", "Glob", "Grep"]
5
5
  ---
6
6
 
@@ -32,6 +32,7 @@ Detect the input type from `$ARGUMENTS` and route to the appropriate source skil
32
32
  | A Linear **project** URL (`https://linear.app/<workspace>/project/<slug>-<id>`) | `lisa:linear-to-tracker` (with the project URL; same full pipeline as the Notion / Confluence paths). The Linear project's description, attached documents, and sub-issues form the PRD body. |
33
33
  | A Linear **workspace** URL (`https://linear.app/<workspace>` with no `/project/...`) or **team** URL | Stop and report — single-PRD mode only. Direct the caller to `lisa:intake` for batch scanning of a workspace or team. |
34
34
  | A JIRA ticket ID/URL of an Epic (existing epic *is* the spec) | `lisa:jira-agent` (read epic, decompose into stories/sub-tasks) |
35
+ | A Linear Project URL of a Project that *is* the spec, when destination tracker = `linear` | `lisa:linear-agent` (read project, decompose into Issues / sub-Issues). Symmetric counterpart to the JIRA-Epic and GitHub-Epic branches. |
35
36
  | A GitHub **issue** URL (`https://github.com/<org>/<repo>/issues/<number>`) or `<org>/<repo>#<number>` token (single PRD) | `lisa:github-to-tracker` (with the issue ref; runs the full pipeline: extract artifacts → walk live product → validate → write tickets → coverage audit). The destination tracker is read from `.lisa.config.json` `tracker`. |
36
37
  | A GitHub **repository** URL or `<org>/<repo>` token (no issue number) | Stop and report — single-PRD mode only. Direct the caller to `lisa:intake` for batch scanning of a GitHub repo. |
37
38
  | A GitHub Issue URL of a build-side ticket (`type:Epic` / `type:Story` / etc., not `prd-*`-labelled) when `tracker = github` | `lisa:github-agent` (read issue, decompose into Sub-tasks). Symmetric counterpart to the JIRA-Epic branch above. |
@@ -46,4 +47,4 @@ Execute the **Plan** flow as defined in the `intent-routing` rule (loaded via th
46
47
 
47
48
  ## Output
48
49
 
49
- Work items in the configured tracker (JIRA or GitHub Issues, per `.lisa.config.json` `tracker`) with acceptance criteria, dependencies, and recommended skills/agents per item. Ordered by dependency. If the specification cannot be decomposed without further clarification, stop and report what is missing.
50
+ Work items in the configured tracker (JIRA, GitHub Issues, or Linear, per `.lisa.config.json` `tracker`) with acceptance criteria, dependencies, and recommended skills/agents per item. Ordered by dependency. If the specification cannot be decomposed without further clarification, stop and report what is missing.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: prd-ticket-coverage
3
- description: "Verifies that every requirement in a PRD (Notion, Confluence, Linear, or GitHub Issues) is covered by at least one created destination ticket (JIRA or GitHub Issues) — no silent drops. Parses the PRD into atomic items (goals, user stories, functional/non-functional requirements, acceptance criteria, important notes), maps each to the created tickets, and produces a coverage matrix and verdict (COMPLETE / COMPLETE_WITH_SCOPE_CREEP / GAPS_FOUND / NO_TICKETS_FOUND). Used by notion-prd-intake / confluence-prd-intake / linear-prd-intake / github-prd-intake post-write to gate the Ticketed transition; can also be invoked standalone for after-the-fact audits."
3
+ description: "Verifies that every requirement in a PRD (Notion, Confluence, Linear, or GitHub Issues) is covered by at least one created destination ticket (JIRA, GitHub Issues, or Linear) — no silent drops. Parses the PRD into atomic items (goals, user stories, functional/non-functional requirements, acceptance criteria, important notes), maps each to the created tickets, and produces a coverage matrix and verdict (COMPLETE / COMPLETE_WITH_SCOPE_CREEP / GAPS_FOUND / NO_TICKETS_FOUND). Used by notion-prd-intake / confluence-prd-intake / linear-prd-intake / github-prd-intake post-write to gate the Ticketed transition; can also be invoked standalone for after-the-fact audits."
4
4
  allowed-tools: ["Skill", "Bash", "mcp__claude_ai_Notion__notion-fetch", "mcp__claude_ai_Notion__notion-get-comments", "mcp__atlassian__getConfluencePage", "mcp__atlassian__getConfluencePageDescendants", "mcp__atlassian__getConfluencePageFooterComments", "mcp__atlassian__getConfluencePageInlineComments", "mcp__atlassian__getConfluenceCommentChildren", "mcp__atlassian__getJiraIssue", "mcp__atlassian__searchJiraIssuesUsingJql", "mcp__atlassian__getAccessibleAtlassianResources", "mcp__linear-server__get_project", "mcp__linear-server__list_documents", "mcp__linear-server__get_document", "mcp__linear-server__list_issues", "mcp__linear-server__get_issue", "mcp__linear-server__list_comments"]
5
5
  ---
6
6
 
@@ -66,8 +66,8 @@ For every walkthrough, record:
66
66
 
67
67
  - **What exists today**: a short prose description of the current flow, the components in use (if you can identify them from the DOM via `browser_snapshot`), and the states observed.
68
68
  - **What the PRD changes**: explicit delta — added screens, removed screens, modified components, new states, removed states.
69
- - **Existing-component reuse candidates**: components in the current product that could absorb the new behavior. The PRD-vs-current-product comparison drives which existing components a developer should reuse instead of building new (see `lisa:jira-source-artifacts` §7).
70
- - **Design-vs-current-product divergence**: places where the mock/prototype materially diverges from what's shipped. Each divergence is a discussion item, not an automatic "rebuild from scratch" — see `lisa:jira-source-artifacts` §3 (mocks define visual intent, not implementation shortcut).
69
+ - **Existing-component reuse candidates**: components in the current product that could absorb the new behavior. The PRD-vs-current-product comparison drives which existing components a developer should reuse instead of building new (see `lisa:tracker-source-artifacts` §7).
70
+ - **Design-vs-current-product divergence**: places where the mock/prototype materially diverges from what's shipped. Each divergence is a discussion item, not an automatic "rebuild from scratch" — see `lisa:tracker-source-artifacts` §3 (mocks define visual intent, not implementation shortcut).
71
71
  - **Coverage smells**: states the PRD doesn't address that exist today (e.g., the mock shows the empty state but ignores the populated state that has 90% of users).
72
72
  - **Behavioral surprises**: anything that doesn't match the PRD's assumptions about current behavior — these are usually the most valuable findings, because they invalidate parts of the PRD.
73
73
 
@@ -24,8 +24,7 @@ Based on the source, load the full spec:
24
24
  | Source | How to Load |
25
25
  |--------|-------------|
26
26
  | Plan file (`.md`) | `Read` the file |
27
- | JIRA key or GitHub issue ref | Invoke `/tracker-read <ref>` (vendor-neutral; dispatches to `/jira-read-ticket` or `/github-read-issue` per `.lisa.config.json` `tracker`) to get the full context bundle (primary ticket + epic / parent + linked tickets) |
28
- | Linear key | Fetch via Linear MCP if available; else `Bash` with Linear CLI; else report "Linear reader unavailable" |
27
+ | JIRA key, GitHub issue ref, or Linear identifier | Invoke `/tracker-read <ref>` (vendor-neutral; dispatches to `/jira-read-ticket`, `/github-read-issue`, or `/linear-read-issue` per `.lisa.config.json` `tracker`) to get the full context bundle (primary item + epic / project / parent + linked items) |
29
28
  | PRD | `Read` the file or fetch via Notion / Confluence MCP, or `gh issue view` for a GitHub PRD |
30
29
 
31
30
  ## Phase 2 — Extract Requirements
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: ticket-triage
3
- description: "Analytical triage gate for tickets in the configured destination tracker (JIRA or GitHub Issues). Detects requirement ambiguities, identifies edge cases from codebase analysis, and plans verification methodology. Posts findings to the ticket and produces a verdict (BLOCKED/PASSED_WITH_FINDINGS/PASSED) that gates whether implementation can proceed. Vendor-neutral: the caller (jira-agent or github-agent) is responsible for fetching the ticket via lisa:tracker-read, running the pre-flight gate via lisa:tracker-verify, and posting findings via the matching vendor comment tool."
3
+ description: "Analytical triage gate for tickets in the configured destination tracker (JIRA, GitHub Issues, or Linear). Detects requirement ambiguities, identifies edge cases from codebase analysis, and plans verification methodology. Posts findings to the ticket and produces a verdict (BLOCKED/PASSED_WITH_FINDINGS/PASSED) that gates whether implementation can proceed. Vendor-neutral: the caller (jira-agent or github-agent) is responsible for fetching the ticket via lisa:tracker-read, running the pre-flight gate via lisa:tracker-verify, and posting findings via the matching vendor comment tool."
4
4
  allowed-tools: ["Read", "Glob", "Grep", "Bash"]
5
5
  ---
6
6
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-add-journey
3
- description: "Vendor-neutral wrapper for appending a Validation Journey section to an existing ticket/issue. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-add-journey or lisa:github-add-journey."
3
+ description: "Vendor-neutral wrapper for appending a Validation Journey section to an existing ticket/issue. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-add-journey, lisa:github-add-journey, or lisa:linear-add-journey."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,9 +16,11 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-add-journey` with `$ARGUMENTS` verbatim. Arg: a JIRA ticket key.
18
18
  - `github` → invoke `lisa:github-add-journey` with `$ARGUMENTS` verbatim. Arg: `org/repo#<number>` or a GitHub issue URL.
19
+ - `linear` → invoke `lisa:linear-add-journey` with `$ARGUMENTS` verbatim. Arg: a Linear Issue identifier (e.g., `ENG-123`).
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the output.
20
22
 
21
23
  ## Rules
22
24
 
23
- - The Validation Journey content format is identical across both vendors (markdown sections with `[EVIDENCE: name]` markers). The only difference is how the section is appended — JIRA via `editJiraIssue`, GitHub via `gh issue edit --body-file`.
25
+ - The Validation Journey content format is identical across all vendors (markdown sections with `[EVIDENCE: name]` markers). The only difference is how the section is appended — JIRA via `editJiraIssue` (Jira wiki markup), GitHub via `gh issue edit --body-file` (markdown), Linear via `save_issue` (markdown).
24
26
  - If the ticket already has a Validation Journey, the vendor skill reports it and stops. This shim does not retry.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-build-intake
3
- description: "Vendor-neutral wrapper for the build-queue batch scanner. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-build-intake (JQL/project-key queue) or lisa:github-build-intake (GitHub repo queue keyed off the `status:ready` label). Counterpart to lisa:intake's PRD-side dispatchers."
3
+ description: "Vendor-neutral wrapper for the build-queue batch scanner. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-build-intake (JQL/project-key queue), lisa:github-build-intake (GitHub repo queue keyed off the `status:ready` label), or lisa:linear-build-intake (Linear team queue keyed off the `status:ready` label). Counterpart to lisa:intake's PRD-side dispatchers."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor build-queue scanner.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,10 +16,12 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-build-intake` with `$ARGUMENTS` verbatim. Arg shape: a JIRA project key (e.g., `SE`) or a JQL filter.
18
18
  - `github` → invoke `lisa:github-build-intake` with `$ARGUMENTS` verbatim. Arg shape: a GitHub `org/repo` token or a full GitHub repo URL.
19
+ - `linear` → invoke `lisa:linear-build-intake` with `$ARGUMENTS` verbatim. Arg shape: a Linear team key (e.g., `ENG`) or the literal token `linear` (which falls back to `linear.teamKey`).
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the cycle summary verbatim.
20
22
 
21
23
  ## Rules
22
24
 
23
25
  - Single cycle per invocation — the vendor skill processes the current `Ready` set and exits.
24
- - The vendor skills run their own pre-flight checks (JIRA workflow transitions for the JIRA path; label namespace adoption for the GitHub path) before processing items. Never bypass.
26
+ - The vendor skills run their own pre-flight checks (JIRA workflow transitions for the JIRA path; label namespace adoption for the GitHub and Linear paths) before processing items. Never bypass.
25
27
  - Never run two intake cycles concurrently against overlapping queues — the scheduling layer is responsible for serialization.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-create
3
- description: "Vendor-neutral wrapper for creating tickets/issues from code files or descriptions. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-create or lisa:github-create. Plans hierarchy structure (epic / story / sub-task), then delegates each individual write through the tracker-write shim."
3
+ description: "Vendor-neutral wrapper for creating tickets/issues from code files or descriptions. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-create, lisa:github-create, or lisa:linear-create. Plans hierarchy structure (epic / story / sub-task), then delegates each individual write through the tracker-write shim."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor planning skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,9 +16,11 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-create` with `$ARGUMENTS` verbatim.
18
18
  - `github` → invoke `lisa:github-create` with `$ARGUMENTS` verbatim.
19
+ - `linear` → invoke `lisa:linear-create` with `$ARGUMENTS` verbatim.
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the output.
20
22
 
21
23
  ## Rules
22
24
 
23
- - Both vendor skills delegate every individual ticket write through `lisa:tracker-write`. They never call vendor-specific write tools directly.
25
+ - All vendor skills delegate every individual ticket write through `lisa:tracker-write`. They never call vendor-specific write tools directly.
24
26
  - This shim is for ad-hoc creation from code files / descriptions. PRD-driven creation goes through the `*-to-tracker` skills (notion / confluence / linear / github).
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-evidence
3
- description: "Vendor-neutral wrapper for posting verification evidence. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-evidence or lisa:github-evidence. Uploads evidence to the GitHub `pr-assets` release, updates the PR description, posts a comment on the originating ticket/issue, and transitions the ticket/issue to its post-build review state."
3
+ description: "Vendor-neutral wrapper for posting verification evidence. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-evidence, lisa:github-evidence, or lisa:linear-evidence. Uploads evidence to the GitHub `pr-assets` release, updates the PR description, posts a comment on the originating ticket/issue, and transitions the ticket/issue to its post-build review state."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor evidence skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,9 +16,11 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-evidence` with `$ARGUMENTS` verbatim. Arg shape: `<TICKET_ID> <EVIDENCE_DIR> <PR_NUMBER>`.
18
18
  - `github` → invoke `lisa:github-evidence` with `$ARGUMENTS` verbatim. Arg shape: `<ISSUE_REF> <EVIDENCE_DIR> <PR_NUMBER>` where `ISSUE_REF` is `org/repo#<number>` or a GitHub issue URL.
19
+ - `linear` → invoke `lisa:linear-evidence` with `$ARGUMENTS` verbatim. Arg shape: `<IDENTIFIER> <EVIDENCE_DIR>` where `IDENTIFIER` is a Linear Issue identifier (e.g., `ENG-123`).
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the vendor skill's output.
20
22
 
21
23
  ## Rules
22
24
 
23
- - The GitHub `pr-assets` release lives on the implementation repo (the one with the PR), regardless of which tracker hosts the ticket/issue. Both vendor skills upload there.
25
+ - The GitHub `pr-assets` release lives on the implementation repo (the one with the PR), regardless of which tracker hosts the ticket/issue. All vendor skills upload there.
24
26
  - Never post evidence to a different ticket than the one named — `$ARGUMENTS` is the source of truth.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-journey
3
- description: "Vendor-neutral wrapper for executing a ticket/issue's Validation Journey end-to-end. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-journey or lisa:github-journey. Parses the journey, satisfies prerequisites, executes the steps, captures evidence at each marker, and posts results via tracker-evidence."
3
+ description: "Vendor-neutral wrapper for executing a ticket/issue's Validation Journey end-to-end. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-journey, lisa:github-journey, or lisa:linear-journey. Parses the journey, satisfies prerequisites, executes the steps, captures evidence at each marker, and posts results via tracker-evidence."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor journey skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,9 +16,11 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-journey` with `$ARGUMENTS` verbatim. Arg shape: `<TICKET_ID> [PR_NUMBER]`.
18
18
  - `github` → invoke `lisa:github-journey` with `$ARGUMENTS` verbatim. Arg shape: `<ISSUE_REF> [PR_NUMBER]`.
19
+ - `linear` → invoke `lisa:linear-journey` with `$ARGUMENTS` verbatim. Arg shape: `<IDENTIFIER> [PR_NUMBER]`.
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the output.
20
22
 
21
23
  ## Rules
22
24
 
23
- - The journey content is identical across vendors; only the parser source differs (the JIRA vendor reads description via Atlassian MCP; the GitHub vendor reads body via `gh issue view --json body`).
25
+ - The journey content is identical across vendors; only the parser source differs (the JIRA vendor reads description via Atlassian MCP; the GitHub vendor reads body via `gh issue view --json body`; the Linear vendor reads description via `mcp__linear-server__get_issue`).
24
26
  - Evidence posting always goes through `lisa:tracker-evidence` — never bypass.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-read
3
- description: "Vendor-neutral wrapper for fetching the full scope of a ticket/issue and its related graph. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-read-ticket or lisa:github-read-issue. Returns a consolidated context bundle so downstream agents never act on a single ticket in isolation."
3
+ description: "Vendor-neutral wrapper for fetching the full scope of a ticket/issue and its related graph. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-read-ticket, lisa:github-read-issue, or lisa:linear-read-issue. Returns a consolidated context bundle so downstream agents never act on a single ticket in isolation."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor read skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,10 +16,12 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-read-ticket` with `$ARGUMENTS` verbatim. The argument is a JIRA key (e.g., `PROJ-123`).
18
18
  - `github` → invoke `lisa:github-read-issue` with `$ARGUMENTS` verbatim. The argument is `org/repo#<number>` or a full GitHub issue URL.
19
+ - `linear` → invoke `lisa:linear-read-issue` with `$ARGUMENTS` verbatim. The argument is a Linear identifier (e.g., `ENG-123`) or a project URL.
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Return the vendor skill's context bundle verbatim.
20
22
 
21
23
  ## Rules
22
24
 
23
25
  - Read-only — never modify the ticket/issue.
24
- - The two vendors emit different context-bundle formats (because their data models differ). Callers must be tolerant of both — or, more precisely, agents at the next layer (e.g. `tracker-agent`-equivalent) parse the per-vendor bundle.
25
- - If the input format doesn't match the configured tracker (e.g. tracker is jira but `$ARGUMENTS` looks like a GitHub URL), stop and report — never auto-translate.
26
+ - The three vendors emit different context-bundle formats (because their data models differ). Callers must be tolerant of all — or, more precisely, agents at the next layer parse the per-vendor bundle.
27
+ - If the input format doesn't match the configured tracker (e.g. tracker is jira but `$ARGUMENTS` looks like a Linear identifier), stop and report — never auto-translate.
@@ -1,14 +1,14 @@
1
1
  ---
2
- name: jira-source-artifacts
3
- description: "Canonical taxonomy and rules for handling source artifacts (Figma, Lovable, Loom, screenshots, design docs, data samples) when generating or evaluating JIRA tickets. Defines: (1) artifact domains, (2) classification rules per tool, (3) source precedence (which artifact is authoritative for which question), (4) inheritance from epic to story to sub-task, (5) cross-axis conflict handling. Invoke this skill from any flow that extracts, attaches, or reasons about external design/UX/data artifacts so the rules don't drift across skills."
2
+ name: tracker-source-artifacts
3
+ description: "Canonical, vendor-neutral taxonomy and rules for handling source artifacts (Figma, Lovable, Loom, screenshots, design docs, data samples) when generating or evaluating tracker tickets (JIRA, GitHub Issues, Linear). Defines: (1) artifact domains, (2) classification rules per tool, (3) source precedence (which artifact is authoritative for which question), (4) inheritance from epic to story to sub-task, (5) cross-axis conflict handling. Invoke this skill from any flow that extracts, attaches, or reasons about external design/UX/data artifacts so the rules don't drift across skills."
4
4
  allowed-tools: []
5
5
  ---
6
6
 
7
- # JIRA Source Artifact Taxonomy and Rules
7
+ # Tracker Source Artifact Taxonomy and Rules
8
8
 
9
- This skill is doctrine, not action — it defines the rules. Skills that need to extract, classify, attach, or reason about external artifacts (design files, prototypes, recordings, data samples) invoke this skill to load the taxonomy and apply it.
9
+ This skill is doctrine, not action — it defines the rules. Skills that need to extract, classify, attach, or reason about external artifacts (design files, prototypes, recordings, data samples) invoke this skill to load the taxonomy and apply it. The taxonomy is vendor-neutral: it applies equally to JIRA tickets, GitHub Issues, and Linear Issues.
10
10
 
11
- The reason this lives in one place: silent drift across skills is the failure mode this body of rules exists to prevent. If the rules differ between `lisa:notion-to-tracker`, `lisa:jira-create`, and `lisa:jira-write-ticket`, agents will silently route artifacts wrong and developers will lose source of truth. Edit here, propagate everywhere.
11
+ The reason this lives in one place: silent drift across skills is the failure mode this body of rules exists to prevent. If the rules differ between `lisa:notion-to-tracker`, `lisa:tracker-create`, and `lisa:tracker-write`, agents will silently route artifacts wrong and developers will lose source of truth. Edit here, propagate everywhere.
12
12
 
13
13
  ## 1. Domains
14
14
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-sync
3
- description: "Vendor-neutral wrapper for posting milestone updates to the linked ticket/issue. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-sync or lisa:github-sync. Posts at: plan created, implementation in progress, PR ready, PR merged. Suggests (never auto-transitions) the next status."
3
+ description: "Vendor-neutral wrapper for posting milestone updates to the linked ticket/issue. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-sync, lisa:github-sync, or lisa:linear-sync. Posts at: plan created, implementation in progress, PR ready, PR merged. Suggests (never auto-transitions) the next status."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor sync skill.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,11 +16,13 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-sync` with `$ARGUMENTS` verbatim.
18
18
  - `github` → invoke `lisa:github-sync` with `$ARGUMENTS` verbatim.
19
+ - `linear` → invoke `lisa:linear-sync` with `$ARGUMENTS` verbatim.
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the output.
20
22
 
21
- If `$ARGUMENTS` is empty, both vendor skills auto-detect a ticket reference from the active plan file (most recently modified `.md` in `plans/`).
23
+ If `$ARGUMENTS` is empty, all vendor skills auto-detect a ticket reference from the active plan file (most recently modified `.md` in `plans/`).
22
24
 
23
25
  ## Rules
24
26
 
25
27
  - Idempotent updates — running sync at the same milestone twice should not produce duplicate comments. Vendor skills enforce this.
26
- - Never auto-transition status. Suggestions only.
28
+ - Never auto-transition the underlying state. Linear's label-based transition (`status:*`) is the canonical signal and is updated only when the caller passes `--update-label`. Native states stay as suggestions.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-validate
3
- description: "Vendor-neutral wrapper for the pre-write quality gate. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-validate-ticket or lisa:github-validate-issue. Read-only — never writes to either tracker. Used by tracker-write Phase 5.5 (pre-write gate), tracker-verify (post-write checks), and the *-to-tracker dry-run paths. Output is structured PASS/FAIL per gate so callers can parse it."
3
+ description: "Vendor-neutral wrapper for the pre-write quality gate. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-validate-ticket, lisa:github-validate-issue, or lisa:linear-validate-issue. Read-only — never writes to any tracker. Used by tracker-write Phase 5.5 (pre-write gate), tracker-verify (post-write checks), and the *-to-tracker dry-run paths. Output is structured PASS/FAIL per gate so callers can parse it."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,28 +8,29 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor validator.
10
10
 
11
- See the `tracker-resolution` rule for the full configuration schema and skill-mapping table.
11
+ See the `config-resolution` rule for the full configuration schema and skill-mapping table.
12
12
 
13
13
  ## Workflow
14
14
 
15
15
  1. **Resolve tracker config** (same logic as `lisa:tracker-write` Step 1):
16
16
 
17
17
  ```bash
18
- tracker=$(jq -r '.tracker // "jira"' .lisa.config.local.json 2>/dev/null \
19
- || jq -r '.tracker // "jira"' .lisa.config.json 2>/dev/null \
20
- || echo "jira")
18
+ local_tracker=$(jq -r '.tracker // empty' .lisa.config.local.json 2>/dev/null)
19
+ global_tracker=$(jq -r '.tracker // empty' .lisa.config.json 2>/dev/null)
20
+ tracker="${local_tracker:-${global_tracker:-jira}}"
21
21
  ```
22
22
 
23
23
  2. **Dispatch**
24
24
 
25
25
  - `jira` → invoke `lisa:jira-validate-ticket` with `$ARGUMENTS` verbatim.
26
26
  - `github` → invoke `lisa:github-validate-issue` with `$ARGUMENTS` verbatim.
27
- - Anything else stop and report `"Unknown tracker '<value>' in .lisa.config.json."`
27
+ - `linear`invoke `lisa:linear-validate-issue` with `$ARGUMENTS` verbatim.
28
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
28
29
 
29
30
  3. **Pass through the validator's structured report unchanged.** Callers (e.g. `lisa:jira-write-ticket` Phase 5.5) parse the gate lines; do not paraphrase.
30
31
 
31
32
  ## Rules
32
33
 
33
- - Read-only — never write to either tracker.
34
+ - Read-only — never write to any tracker.
34
35
  - Never re-implement gate logic here. The gate definitions are the vendor validator's responsibility.
35
36
  - Never silently transform the input — pass `$ARGUMENTS` through verbatim.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-verify
3
- description: "Vendor-neutral wrapper for the post-write verification gate. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-verify or lisa:github-verify. Fetches the live ticket/issue and runs the validator gates against the stored state — catches anything dropped or reformatted on write. Read-only."
3
+ description: "Vendor-neutral wrapper for the post-write verification gate. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-verify, lisa:github-verify, or lisa:linear-verify. Fetches the live ticket/issue and runs the validator gates against the stored state — catches anything dropped or reformatted on write. Read-only."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor post-write verifier.
10
10
 
11
- See the `tracker-resolution` rule for configuration and dispatch table.
11
+ See the `config-resolution` rule for configuration and dispatch table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -16,6 +16,8 @@ See the `tracker-resolution` rule for configuration and dispatch table.
16
16
  2. Dispatch:
17
17
  - `jira` → invoke `lisa:jira-verify` with `$ARGUMENTS` verbatim.
18
18
  - `github` → invoke `lisa:github-verify` with `$ARGUMENTS` verbatim.
19
+ - `linear` → invoke `lisa:linear-verify` with `$ARGUMENTS` verbatim.
20
+ - Anything else → stop and report `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
19
21
  3. Pass through the verifier's structured report unchanged.
20
22
 
21
23
  ## Rules
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: tracker-write
3
- description: "Vendor-neutral wrapper for ticket creation and updates. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-write-ticket or lisa:github-write-issue. Callers in vendor-neutral skills (notion-to-tracker, linear-to-tracker, confluence-to-tracker, github-to-tracker, implement, verify) MUST invoke this skill instead of the vendor-specific ones — that is what makes the tracker switchable per project. The Phase-5.5 validate-pre-write gate, post-write verify, and Phase-8 announce-comment behavior live in the vendor skills; this shim is dispatch only."
3
+ description: "Vendor-neutral wrapper for ticket creation and updates. Reads `tracker` from .lisa.config.json (default: jira) and dispatches to lisa:jira-write-ticket, lisa:github-write-issue, or lisa:linear-write-issue. Callers in vendor-neutral skills (notion-to-tracker, linear-to-tracker, confluence-to-tracker, github-to-tracker, implement, verify) MUST invoke this skill instead of the vendor-specific ones — that is what makes the tracker switchable per project. The Phase-5.5 validate-pre-write gate, post-write verify, and Phase-8 announce-comment behavior live in the vendor skills; this shim is dispatch only."
4
4
  allowed-tools: ["Skill", "Bash", "Read"]
5
5
  ---
6
6
 
@@ -8,7 +8,7 @@ allowed-tools: ["Skill", "Bash", "Read"]
8
8
 
9
9
  Thin dispatcher. Resolves the configured destination tracker and delegates to the matching vendor write skill.
10
10
 
11
- See the `tracker-resolution` rule for the full configuration schema and skill-mapping table.
11
+ See the `config-resolution` rule for the full configuration schema and skill-mapping table.
12
12
 
13
13
  ## Workflow
14
14
 
@@ -17,27 +17,29 @@ See the `tracker-resolution` rule for the full configuration schema and skill-ma
17
17
  Read `.lisa.config.local.json` first (if present), then `.lisa.config.json`. Local overrides global on a per-key basis. Use `jq` — never hand-parse JSON.
18
18
 
19
19
  ```bash
20
- tracker=$(jq -r '.tracker // "jira"' .lisa.config.local.json 2>/dev/null \
21
- || jq -r '.tracker // "jira"' .lisa.config.json 2>/dev/null \
22
- || echo "jira")
20
+ local_tracker=$(jq -r '.tracker // empty' .lisa.config.local.json 2>/dev/null)
21
+ global_tracker=$(jq -r '.tracker // empty' .lisa.config.json 2>/dev/null)
22
+ tracker="${local_tracker:-${global_tracker:-jira}}"
23
23
  ```
24
24
 
25
25
  2. **Validate the value**
26
26
 
27
- - `jira` → continue to Step 3a.
28
- - `github` → continue to Step 3b. Also confirm `github.org` and `github.repo` are present. If either is missing, stop and report: `"tracker=github but github.org and github.repo are not set in .lisa.config.json."`
29
- - Any other value stop and report: `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira' or 'github'."`
27
+ - `jira` → confirm `atlassian.cloudId` and `jira.project` are present. If either is missing, stop and report: `"tracker=jira but atlassian.cloudId and jira.project are not set in .lisa.config.json."` Continue to Step 3a.
28
+ - `github` → confirm `github.org` and `github.repo` are present. If either is missing, stop and report: `"tracker=github but github.org and github.repo are not set in .lisa.config.json."` Continue to Step 3b.
29
+ - `linear` confirm `linear.workspace` and `linear.teamKey` are present. If either is missing, stop and report: `"tracker=linear but linear.workspace and linear.teamKey are not set in .lisa.config.json."` Continue to Step 3c.
30
+ - Any other value → stop and report: `"Unknown tracker '<value>' in .lisa.config.json. Expected 'jira', 'github', or 'linear'."`
30
31
 
31
32
  3. **Dispatch**
32
33
 
33
34
  - **3a (jira):** Invoke `lisa:jira-write-ticket` via the Skill tool, passing `$ARGUMENTS` verbatim.
34
35
  - **3b (github):** Invoke `lisa:github-write-issue` via the Skill tool, passing `$ARGUMENTS` verbatim.
36
+ - **3c (linear):** Invoke `lisa:linear-write-issue` via the Skill tool, passing `$ARGUMENTS` verbatim.
35
37
 
36
38
  4. **Surface the vendor skill's output unchanged.** Do not paraphrase; downstream callers parse the structured response.
37
39
 
38
40
  ## Rules
39
41
 
40
42
  - Never bypass dispatch — calling the vendor skill directly from a vendor-neutral caller defeats the per-project switch.
41
- - Never invent a third tracker.
43
+ - Never accept a tracker value outside `{jira, github, linear}`.
42
44
  - Never mutate `$ARGUMENTS` between layers. The vendor skills define their own input contract.
43
- - Never inline gate logic here. All validation rules live in the vendor skills (`lisa:jira-validate-ticket` / `lisa:github-validate-issue`); this skill only routes.
45
+ - Never inline gate logic here. All validation rules live in the vendor skills (`lisa:jira-validate-ticket` / `lisa:github-validate-issue` / `lisa:linear-validate-issue`); this skill only routes.
@@ -29,7 +29,7 @@ Execute the **Verify** flow as defined in the `intent-routing` rule (loaded via
29
29
  4. **Review loop** — handle CodeRabbit / human review comments via `lisa:pull-request-review`
30
30
  5. **Merge** when CI is green
31
31
  6. **Remote verification** — invoke the `lisa:monitor` skill against the target environment to confirm the deploy actually works (health endpoints, recent logs/errors, Validation Journey replay if defined). If remote verification surfaces a behavioral gap that the existing codified tests do not guard, invoke `codify-verification` to add coverage and open a follow-up PR.
32
- 7. **Evidence** — post results to the originating ticket via `lisa:tracker-evidence` (vendor-neutral; dispatches to `lisa:jira-evidence` or `lisa:github-evidence` per `.lisa.config.json` `tracker`), including the list of codified tests added on this branch.
32
+ 7. **Evidence** — post results to the originating ticket via `lisa:tracker-evidence` (vendor-neutral; dispatches to `lisa:jira-evidence`, `lisa:github-evidence`, or `lisa:linear-evidence` per `.lisa.config.json` `tracker`), including the list of codified tests added on this branch.
33
33
 
34
34
  The rule contains the canonical step sequence. Change it there, propagate everywhere.
35
35
 
@@ -11,7 +11,7 @@ Analyze the provided file(s) and plan a JIRA hierarchy. **This skill plans struc
11
11
  ## Process
12
12
 
13
13
  1. **Analyze**: Read $ARGUMENTS to understand scope.
14
- 2. **Extract source artifacts**: invoke the `lisa:jira-source-artifacts` skill, then enumerate every external URL, embed, attachment, or example payload and classify each by domain per its rules. Build the `artifacts` map. See "Source Artifacts" below.
14
+ 2. **Extract source artifacts**: invoke the `lisa:tracker-source-artifacts` skill, then enumerate every external URL, embed, attachment, or example payload and classify each by domain per its rules. Build the `artifacts` map. See "Source Artifacts" below.
15
15
  3. **Walk the live product** (when applicable): if the work touches existing user-facing surfaces, invoke the `lisa:product-walkthrough` skill 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.
16
16
  4. **Determine structure**:
17
17
  - Epic needed if: multiple features, major changes, >3 related files
@@ -20,8 +20,8 @@ Analyze the provided file(s) and plan a JIRA hierarchy. **This skill plans struc
20
20
  ```text
21
21
  Epic → User Story → Tasks (test, implement, document, cleanup)
22
22
  ```
23
- 6. **Delegate every write to `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:jira-source-artifacts` inheritance 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.
24
- 7. **Run the artifact preservation gate** (`lisa:jira-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.
23
+ 6. **Delegate every write to `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), the walkthrough findings (under `## Current Product`), and — for UI tickets — the Validation Journey draft with `[SCREENSHOT: ...]` markers. See "Delegation to jira-write-ticket" below.
24
+ 7. **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.
25
25
 
26
26
  ## Mandatory for Every Code Issue
27
27
 
@@ -95,7 +95,7 @@ h3. Assertions
95
95
 
96
96
  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.
97
97
 
98
- **Invoke the `lisa:jira-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.
98
+ **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.
99
99
 
100
100
  Expo-specific note: the existing-component reuse rule is especially load-bearing for React Native — the project has an established component library; pixel-matching a mock instead of reusing components is the most common drift mode.
101
101