@codyswann/lisa 1.96.0 → 2.1.0

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 (183) hide show
  1. package/package.json +1 -1
  2. package/plugins/lisa/.claude-plugin/plugin.json +1 -1
  3. package/plugins/lisa/commands/{plan/fix-linter-error.md → fix/linter-error.md} +1 -1
  4. package/plugins/lisa/commands/implement.md +6 -0
  5. package/plugins/{src/base/commands/plan/lower-code-complexity.md → lisa/commands/improve/code-complexity.md} +1 -1
  6. package/plugins/lisa/commands/{plan/reduce-max-lines-per-function.md → improve/max-lines-per-function.md} +1 -1
  7. package/plugins/lisa/commands/{plan/reduce-max-lines.md → improve/max-lines.md} +1 -1
  8. package/plugins/lisa/commands/{plan/add-test-coverage.md → improve/test-coverage.md} +1 -1
  9. package/plugins/lisa/commands/{plan/improve-tests.md → improve/tests.md} +1 -1
  10. package/plugins/lisa/commands/intake.md +6 -0
  11. package/plugins/lisa/commands/monitor.md +2 -6
  12. package/plugins/lisa/commands/plan.md +3 -11
  13. package/plugins/lisa/commands/research.md +2 -6
  14. package/plugins/{src/base/commands/plan/local-code-review.md → lisa/commands/review/local.md} +1 -1
  15. package/plugins/lisa/commands/verify.md +2 -6
  16. package/plugins/lisa/rules/intent-routing.md +14 -13
  17. package/plugins/{src/base/skills/plan-fix-linter-error → lisa/skills/fix-linter-error}/SKILL.md +2 -2
  18. package/plugins/lisa/skills/{plan-execute → implement}/SKILL.md +21 -12
  19. package/plugins/lisa/skills/{plan-lower-code-complexity → improve-code-complexity}/SKILL.md +2 -2
  20. package/plugins/lisa/skills/{plan-reduce-max-lines → improve-max-lines}/SKILL.md +2 -2
  21. package/plugins/{src/base/skills/plan-reduce-max-lines-per-function → lisa/skills/improve-max-lines-per-function}/SKILL.md +2 -2
  22. package/plugins/lisa/skills/{plan-add-test-coverage → improve-test-coverage}/SKILL.md +2 -2
  23. package/plugins/{src/base/skills/plan-improve-tests → lisa/skills/improve-tests}/SKILL.md +2 -2
  24. package/plugins/lisa/skills/intake/SKILL.md +56 -0
  25. package/plugins/lisa/skills/jira-add-journey/SKILL.md +1 -1
  26. package/plugins/lisa/skills/jira-build-intake/SKILL.md +18 -18
  27. package/plugins/lisa/skills/jira-create/SKILL.md +17 -17
  28. package/plugins/lisa/skills/jira-source-artifacts/SKILL.md +1 -1
  29. package/plugins/lisa/skills/jira-validate-ticket/SKILL.md +4 -4
  30. package/plugins/lisa/skills/jira-verify/SKILL.md +5 -5
  31. package/plugins/lisa/skills/jira-write-ticket/SKILL.md +12 -12
  32. package/plugins/lisa/skills/monitor/SKILL.md +33 -0
  33. package/plugins/lisa/skills/notion-prd-intake/SKILL.md +11 -11
  34. package/plugins/lisa/skills/notion-to-jira/SKILL.md +32 -32
  35. package/plugins/lisa/skills/plan/SKILL.md +38 -0
  36. package/plugins/lisa/skills/prd-ticket-coverage/SKILL.md +4 -4
  37. package/plugins/lisa/skills/product-walkthrough/SKILL.md +3 -3
  38. package/plugins/lisa/skills/research/SKILL.md +23 -0
  39. package/plugins/lisa/skills/{plan-local-code-review → review-local}/SKILL.md +1 -1
  40. package/plugins/lisa/skills/ticket-triage/SKILL.md +3 -3
  41. package/plugins/lisa/skills/verify/SKILL.md +32 -0
  42. package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
  43. package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
  44. package/plugins/lisa-expo/skills/jira-add-journey/SKILL.md +1 -1
  45. package/plugins/lisa-expo/skills/jira-create/SKILL.md +17 -17
  46. package/plugins/lisa-expo/skills/jira-verify/SKILL.md +5 -5
  47. package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
  48. package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
  49. package/plugins/{src/rails/commands/plan/fix-linter-error.md → lisa-rails/commands/fix/linter-error.md} +1 -1
  50. package/plugins/{src/rails/commands/plan/lower-code-complexity.md → lisa-rails/commands/improve/code-complexity.md} +1 -1
  51. package/plugins/lisa-rails/commands/{plan/reduce-max-lines-per-function.md → improve/max-lines-per-function.md} +1 -1
  52. package/plugins/lisa-rails/commands/{plan/reduce-max-lines.md → improve/max-lines.md} +1 -1
  53. package/plugins/lisa-rails/commands/{plan/add-test-coverage.md → improve/test-coverage.md} +1 -1
  54. package/plugins/lisa-rails/skills/{plan-fix-linter-error → fix-linter-error}/SKILL.md +2 -2
  55. package/plugins/lisa-rails/skills/{plan-lower-code-complexity → improve-code-complexity}/SKILL.md +2 -2
  56. package/plugins/{src/rails/skills/plan-reduce-max-lines → lisa-rails/skills/improve-max-lines}/SKILL.md +2 -2
  57. package/plugins/{src/rails/skills/plan-reduce-max-lines-per-function → lisa-rails/skills/improve-max-lines-per-function}/SKILL.md +2 -2
  58. package/plugins/lisa-rails/skills/{plan-add-test-coverage → improve-test-coverage}/SKILL.md +2 -2
  59. package/plugins/lisa-rails/skills/jira-create/SKILL.md +16 -16
  60. package/plugins/lisa-rails/skills/jira-verify/SKILL.md +4 -4
  61. package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
  62. package/plugins/src/base/commands/{plan/fix-linter-error.md → fix/linter-error.md} +1 -1
  63. package/plugins/src/base/commands/implement.md +6 -0
  64. package/plugins/{lisa/commands/plan/lower-code-complexity.md → src/base/commands/improve/code-complexity.md} +1 -1
  65. package/plugins/src/base/commands/{plan/reduce-max-lines-per-function.md → improve/max-lines-per-function.md} +1 -1
  66. package/plugins/src/base/commands/{plan/reduce-max-lines.md → improve/max-lines.md} +1 -1
  67. package/plugins/src/base/commands/{plan/add-test-coverage.md → improve/test-coverage.md} +1 -1
  68. package/plugins/src/base/commands/{plan/improve-tests.md → improve/tests.md} +1 -1
  69. package/plugins/src/base/commands/intake.md +6 -0
  70. package/plugins/src/base/commands/monitor.md +2 -6
  71. package/plugins/src/base/commands/plan.md +3 -11
  72. package/plugins/src/base/commands/research.md +2 -6
  73. package/plugins/{lisa/commands/plan/local-code-review.md → src/base/commands/review/local.md} +1 -1
  74. package/plugins/src/base/commands/verify.md +2 -6
  75. package/plugins/src/base/rules/intent-routing.md +14 -13
  76. package/plugins/{lisa/skills/plan-fix-linter-error → src/base/skills/fix-linter-error}/SKILL.md +2 -2
  77. package/plugins/src/base/skills/{plan-execute → implement}/SKILL.md +21 -12
  78. package/plugins/src/base/skills/{plan-lower-code-complexity → improve-code-complexity}/SKILL.md +2 -2
  79. package/plugins/src/base/skills/{plan-reduce-max-lines → improve-max-lines}/SKILL.md +2 -2
  80. package/plugins/{lisa/skills/plan-reduce-max-lines-per-function → src/base/skills/improve-max-lines-per-function}/SKILL.md +2 -2
  81. package/plugins/src/base/skills/{plan-add-test-coverage → improve-test-coverage}/SKILL.md +2 -2
  82. package/plugins/{lisa/skills/plan-improve-tests → src/base/skills/improve-tests}/SKILL.md +2 -2
  83. package/plugins/src/base/skills/intake/SKILL.md +56 -0
  84. package/plugins/src/base/skills/jira-add-journey/SKILL.md +1 -1
  85. package/plugins/src/base/skills/jira-build-intake/SKILL.md +18 -18
  86. package/plugins/src/base/skills/jira-create/SKILL.md +17 -17
  87. package/plugins/src/base/skills/jira-source-artifacts/SKILL.md +1 -1
  88. package/plugins/src/base/skills/jira-validate-ticket/SKILL.md +4 -4
  89. package/plugins/src/base/skills/jira-verify/SKILL.md +5 -5
  90. package/plugins/src/base/skills/jira-write-ticket/SKILL.md +12 -12
  91. package/plugins/src/base/skills/monitor/SKILL.md +33 -0
  92. package/plugins/src/base/skills/notion-prd-intake/SKILL.md +11 -11
  93. package/plugins/src/base/skills/notion-to-jira/SKILL.md +32 -32
  94. package/plugins/src/base/skills/plan/SKILL.md +38 -0
  95. package/plugins/src/base/skills/prd-ticket-coverage/SKILL.md +4 -4
  96. package/plugins/src/base/skills/product-walkthrough/SKILL.md +3 -3
  97. package/plugins/src/base/skills/research/SKILL.md +23 -0
  98. package/plugins/src/base/skills/{plan-local-code-review → review-local}/SKILL.md +1 -1
  99. package/plugins/src/base/skills/ticket-triage/SKILL.md +3 -3
  100. package/plugins/src/base/skills/verify/SKILL.md +32 -0
  101. package/plugins/src/expo/skills/jira-add-journey/SKILL.md +1 -1
  102. package/plugins/src/expo/skills/jira-create/SKILL.md +17 -17
  103. package/plugins/src/expo/skills/jira-verify/SKILL.md +5 -5
  104. package/plugins/{lisa-rails/commands/plan/fix-linter-error.md → src/rails/commands/fix/linter-error.md} +1 -1
  105. package/plugins/{lisa-rails/commands/plan/lower-code-complexity.md → src/rails/commands/improve/code-complexity.md} +1 -1
  106. package/plugins/src/rails/commands/{plan/reduce-max-lines-per-function.md → improve/max-lines-per-function.md} +1 -1
  107. package/plugins/src/rails/commands/{plan/reduce-max-lines.md → improve/max-lines.md} +1 -1
  108. package/plugins/src/rails/commands/{plan/add-test-coverage.md → improve/test-coverage.md} +1 -1
  109. package/plugins/src/rails/skills/{plan-fix-linter-error → fix-linter-error}/SKILL.md +2 -2
  110. package/plugins/src/rails/skills/{plan-lower-code-complexity → improve-code-complexity}/SKILL.md +2 -2
  111. package/plugins/{lisa-rails/skills/plan-reduce-max-lines → src/rails/skills/improve-max-lines}/SKILL.md +2 -2
  112. package/plugins/{lisa-rails/skills/plan-reduce-max-lines-per-function → src/rails/skills/improve-max-lines-per-function}/SKILL.md +2 -2
  113. package/plugins/src/rails/skills/{plan-add-test-coverage → improve-test-coverage}/SKILL.md +2 -2
  114. package/plugins/src/rails/skills/jira-create/SKILL.md +16 -16
  115. package/plugins/src/rails/skills/jira-verify/SKILL.md +4 -4
  116. package/plugins/lisa/commands/build.md +0 -12
  117. package/plugins/lisa/commands/fix.md +0 -12
  118. package/plugins/lisa/commands/improve.md +0 -18
  119. package/plugins/lisa/commands/investigate.md +0 -10
  120. package/plugins/lisa/commands/jira/add-journey.md +0 -7
  121. package/plugins/lisa/commands/jira/build-intake.md +0 -7
  122. package/plugins/lisa/commands/jira/create.md +0 -7
  123. package/plugins/lisa/commands/jira/evidence.md +0 -7
  124. package/plugins/lisa/commands/jira/journey.md +0 -7
  125. package/plugins/lisa/commands/jira/read-ticket.md +0 -7
  126. package/plugins/lisa/commands/jira/source-artifacts.md +0 -6
  127. package/plugins/lisa/commands/jira/sync.md +0 -7
  128. package/plugins/lisa/commands/jira/triage.md +0 -7
  129. package/plugins/lisa/commands/jira/validate-ticket.md +0 -7
  130. package/plugins/lisa/commands/jira/verify.md +0 -7
  131. package/plugins/lisa/commands/jira/write-ticket.md +0 -7
  132. package/plugins/lisa/commands/notion-prd-intake.md +0 -7
  133. package/plugins/lisa/commands/plan/create.md +0 -8
  134. package/plugins/lisa/commands/plan/execute.md +0 -6
  135. package/plugins/lisa/commands/prd-ticket-coverage.md +0 -7
  136. package/plugins/lisa/commands/review/implementation.md +0 -7
  137. package/plugins/lisa/commands/review.md +0 -10
  138. package/plugins/lisa/commands/ship.md +0 -8
  139. package/plugins/lisa/commands/spec-conformance.md +0 -7
  140. package/plugins/lisa-expo/commands/jira/add-journey.md +0 -7
  141. package/plugins/lisa-expo/commands/jira/create.md +0 -7
  142. package/plugins/lisa-expo/commands/jira/evidence.md +0 -7
  143. package/plugins/lisa-expo/commands/jira/journey.md +0 -7
  144. package/plugins/lisa-expo/commands/jira/verify.md +0 -7
  145. package/plugins/lisa-rails/commands/jira/add-journey.md +0 -7
  146. package/plugins/lisa-rails/commands/jira/create.md +0 -7
  147. package/plugins/lisa-rails/commands/jira/evidence.md +0 -7
  148. package/plugins/lisa-rails/commands/jira/journey.md +0 -7
  149. package/plugins/lisa-rails/commands/jira/verify.md +0 -7
  150. package/plugins/src/base/commands/build.md +0 -12
  151. package/plugins/src/base/commands/fix.md +0 -12
  152. package/plugins/src/base/commands/improve.md +0 -18
  153. package/plugins/src/base/commands/investigate.md +0 -10
  154. package/plugins/src/base/commands/jira/add-journey.md +0 -7
  155. package/plugins/src/base/commands/jira/build-intake.md +0 -7
  156. package/plugins/src/base/commands/jira/create.md +0 -7
  157. package/plugins/src/base/commands/jira/evidence.md +0 -7
  158. package/plugins/src/base/commands/jira/journey.md +0 -7
  159. package/plugins/src/base/commands/jira/read-ticket.md +0 -7
  160. package/plugins/src/base/commands/jira/source-artifacts.md +0 -6
  161. package/plugins/src/base/commands/jira/sync.md +0 -7
  162. package/plugins/src/base/commands/jira/triage.md +0 -7
  163. package/plugins/src/base/commands/jira/validate-ticket.md +0 -7
  164. package/plugins/src/base/commands/jira/verify.md +0 -7
  165. package/plugins/src/base/commands/jira/write-ticket.md +0 -7
  166. package/plugins/src/base/commands/notion-prd-intake.md +0 -7
  167. package/plugins/src/base/commands/plan/create.md +0 -8
  168. package/plugins/src/base/commands/plan/execute.md +0 -6
  169. package/plugins/src/base/commands/prd-ticket-coverage.md +0 -7
  170. package/plugins/src/base/commands/review/implementation.md +0 -7
  171. package/plugins/src/base/commands/review.md +0 -10
  172. package/plugins/src/base/commands/ship.md +0 -8
  173. package/plugins/src/base/commands/spec-conformance.md +0 -7
  174. package/plugins/src/expo/commands/jira/add-journey.md +0 -7
  175. package/plugins/src/expo/commands/jira/create.md +0 -7
  176. package/plugins/src/expo/commands/jira/evidence.md +0 -7
  177. package/plugins/src/expo/commands/jira/journey.md +0 -7
  178. package/plugins/src/expo/commands/jira/verify.md +0 -7
  179. package/plugins/src/rails/commands/jira/add-journey.md +0 -7
  180. package/plugins/src/rails/commands/jira/create.md +0 -7
  181. package/plugins/src/rails/commands/jira/evidence.md +0 -7
  182. package/plugins/src/rails/commands/jira/journey.md +0 -7
  183. package/plugins/src/rails/commands/jira/verify.md +0 -7
@@ -4,4 +4,4 @@ allowed-tools: ["Skill"]
4
4
  argument-hint: "<target-description>"
5
5
  ---
6
6
 
7
- Use the /lisa:plan-improve-tests skill to improve test quality. $ARGUMENTS
7
+ Use the /lisa:improve-tests skill to improve test quality. $ARGUMENTS
@@ -0,0 +1,6 @@
1
+ ---
2
+ description: "Vendor-agnostic batch scanner for Status=Ready queues. Notion PRD database URL → finds Ready PRDs and runs lisa:plan per item. JIRA project key or JQL → finds Ready tickets and runs lisa:implement per item. Designed as the cron target for /schedule."
3
+ argument-hint: "<Notion-PRD-database-URL | JIRA-project-key | JQL-filter>"
4
+ ---
5
+
6
+ Use the /lisa:intake skill to scan the queue for Status=Ready items and dispatch each one through the appropriate single-item lifecycle skill. $ARGUMENTS
@@ -1,10 +1,6 @@
1
1
  ---
2
- description: "Monitor application health. Checks health endpoints, logs, errors, and performance across environments."
2
+ description: "Monitor application health across environments. Health endpoints, recent logs, error-rate spikes, performance, optional browser UAT. Routes to the stack-specific ops-specialist."
3
3
  argument-hint: "[environment]"
4
4
  ---
5
5
 
6
- Apply the `intent-routing` rule (loaded via the lisa plugin) and execute the **Monitor** sub-flow.
7
-
8
- This sub-flow is also invoked as part of the Verify flow's remote verification step. Delegates to `ops-specialist` for health checks, log inspection, error monitoring, and performance analysis.
9
-
10
- $ARGUMENTS
6
+ Use the /lisa:monitor skill to check application health, logs, errors, and performance for the named environment. $ARGUMENTS
@@ -1,14 +1,6 @@
1
1
  ---
2
- description: "Plan work. Defines acceptance criteria, researches codebase, maps dependencies, and breaks down into ordered work items."
3
- argument-hint: "<description-or-ticket-id-or-url>"
2
+ description: "Plan work from a single PRD or specification. Decomposes into ordered work items in the configured tracker. For batch scanning of all Status=Ready PRDs in a queue, use /lisa:intake instead."
3
+ argument-hint: "<single-PRD-url | @file | ticket-id-or-url | description>"
4
4
  ---
5
5
 
6
- Apply the `intent-routing` rule (loaded via the lisa plugin) and execute the **Plan** flow.
7
-
8
- **Orchestration: agent team.** Plan is a multi-specialist flow feeding a shared decomposition. After echoing the flow and orchestration mode, your FIRST tool call MUST be `TeamCreate`. Do not call `TaskCreate`, `Agent`, or implementation tools before the team exists.
9
-
10
- If no PRD or specification exists, suggest running the **Research** flow first to produce one.
11
-
12
- If the argument is a JIRA ticket ID or URL, hand off to the `jira-agent` which will read the ticket and extract context.
13
-
14
- $ARGUMENTS
6
+ Use the /lisa:plan skill to decompose the PRD/spec into ordered work items in the configured tracker. $ARGUMENTS
@@ -1,10 +1,6 @@
1
1
  ---
2
- description: "Research a problem space and produce a PRD. Investigates codebase, defines user flows, assesses technical feasibility."
2
+ description: "Research a problem space and produce a PRD. Investigates the codebase, defines user flows, assesses technical feasibility, and outputs a specification ready for the Plan flow."
3
3
  argument-hint: "<problem-statement-or-feature-idea>"
4
4
  ---
5
5
 
6
- Apply the `intent-routing` rule (loaded via the lisa plugin) and execute the **Research** flow.
7
-
8
- **Orchestration: agent team.** Research is a multi-specialist flow feeding a shared PRD. After echoing the flow and orchestration mode, your FIRST tool call MUST be `TeamCreate`. Do not call `TaskCreate`, `Agent`, or implementation tools before the team exists.
9
-
10
- $ARGUMENTS
6
+ Use the /lisa:research skill to research the problem and produce a PRD. $ARGUMENTS
@@ -3,4 +3,4 @@ description: "Review local branch changes compared to main"
3
3
  allowed-tools: ["Skill"]
4
4
  ---
5
5
 
6
- Use the /lisa:plan-local-code-review skill to review local changes.
6
+ Use the /lisa:review-local skill to review local changes.
@@ -1,10 +1,6 @@
1
1
  ---
2
- description: "Ship and verify code. Commits, opens PR, handles review loop, merges, deploys, and verifies in target environment."
2
+ description: "Ship and verify code. Commits, opens PR, handles review loop, merges, monitors deploy, and runs remote verification in target environment. Folds in /ship."
3
3
  argument-hint: "[commit-message-hint]"
4
4
  ---
5
5
 
6
- Apply the `intent-routing` rule (loaded via the lisa plugin) and execute the **Verify** flow.
7
-
8
- This includes: atomic commits, PR creation, CI/review-fix loop, merge, deploy monitoring, and remote verification.
9
-
10
- $ARGUMENTS
6
+ Use the /lisa:verify skill to commit, push, PR, merge, deploy, and verify in the target environment. $ARGUMENTS
@@ -8,7 +8,7 @@ Each flow has a readiness gate that MUST pass before work begins. If the gate fa
8
8
 
9
9
  This protocol runs **once per session**, on the first user message. After that, every later message inherits the established flow — do not re-run classification.
10
10
 
11
- 1. If the user invoked a slash command (`/fix`, `/build`, `/plan`, etc.), the flow is already determined -- skip classification.
11
+ 1. If the user invoked a slash command (`/lisa:research`, `/lisa:plan`, `/lisa:implement`, `/lisa:verify`, `/lisa:monitor`, `/lisa:intake`, etc.), the flow is already determined -- skip classification.
12
12
  2. Read the user's request and match it against the flow definitions below.
13
13
  3. If you cannot confidently classify the request:
14
14
  - **Interactive session** (user is present): present a multiple choice using AskUserQuestion with options: Research, Plan, Implement, Verify, No flow.
@@ -23,16 +23,20 @@ This protocol runs **once per session**, on the first user message. After that,
23
23
 
24
24
  ## Orchestration Selection Protocol
25
25
 
26
- Immediately after echoing the flow (and before any work begins), state the orchestration mode in the same message. The format is:
26
+ Orchestration is owned by the **lifecycle skill** for the chosen flow, not by this rule. Each top-level lifecycle skill (`lisa:research`, `lisa:plan`, `lisa:implement`, `lisa:verify`, `lisa:monitor`, `lisa:intake`) contains its own cascade-safe orchestration preamble that's where the team is created (or skipped, if already inside one).
27
27
 
28
- > **Orchestration: agent team** (or **single agent**)
29
- > One-sentence justification.
28
+ What this rule still enforces:
30
29
 
31
- This echo is mandatory. The user must see the orchestration mode before any work begins. See the **Orchestration** section below for the full decision matrix and team-setup protocol.
30
+ 1. **Echo orchestration mode immediately after echoing the flow** (in the same message), so the user sees both before any work begins:
32
31
 
33
- Quick rule: Research, Plan, Implement (Build/Fix/Improve), and any flow invoking the Review sub-flow → **agent team**. Verify standalone, Monitor standalone, Investigate Only spikes → **single agent**. When in doubt, use a team.
32
+ > **Orchestration: agent team** (or **single agent**)
33
+ > One-sentence justification.
34
34
 
35
- If the mode is `agent team`, the first tool call after the echo MUST be `TeamCreate`. Do not call `TaskCreate`, `Agent`, or direct implementation tools before the team exists.
35
+ 2. **Cascade rule (load-bearing)**: Before calling `TeamCreate`, check whether you are already operating inside an agent team. Signs you are inside a team: a prior `TeamCreate` exists in this session; you were spawned via `Agent` with `team_name`; your context references a team lead. If any of these are true, **do NOT call `TeamCreate`** — the harness rejects double-creates and the work stalls. Continue within the existing team. Invoke flows via the Skill tool; the team lead inherits responsibility for orchestration.
36
+
37
+ 3. **Default mode**: All top-level lifecycle flows (`Research`, `Plan`, `Implement`, `Verify`, `Monitor`, `Intake`) run as agent teams. Single-agent mode is reserved for diagnostics that don't compose multiple specialists (`product-walkthrough` standalone, ad-hoc Investigate-Only spikes that explicitly opt out). When in doubt, use a team.
38
+
39
+ The mechanical "first tool call MUST be TeamCreate" directive lives inside each lifecycle skill — see those skills' orchestration preambles for the exact wording.
36
40
 
37
41
  ## Readiness Gate Protocol
38
42
 
@@ -59,7 +63,6 @@ Gate:
59
63
  - If none is provided, ask: "What problem are you trying to solve or what capability are you trying to add?"
60
64
 
61
65
  Sequence:
62
- 0. **Create agent team via `TeamCreate`** (see Orchestration section) -- Research is a multi-specialist flow; do this before any other work.
63
66
  1. **Investigate sub-flow** -- gather context from codebase, git history, existing behavior, and external sources
64
67
  2. `product-specialist` -- define user goals, user flows (Gherkin), acceptance criteria, error states, UX concerns, and out-of-scope items
65
68
  3. `architecture-specialist` -- assess technical feasibility, identify constraints, map existing system boundaries
@@ -80,7 +83,6 @@ Gate:
80
83
  - If the specification has unresolved ambiguities, stop and list them
81
84
 
82
85
  Sequence:
83
- 0. **Create agent team via `TeamCreate`** (see Orchestration section) -- Plan is a multi-specialist flow feeding a shared decomposition; do this before any other work.
84
86
  1. **Investigate sub-flow** -- explore codebase for architecture, patterns, dependencies relevant to the spec
85
87
  2. `product-specialist` -- validate and refine acceptance criteria for the whole scope
86
88
  3. `architecture-specialist` -- map dependencies, identify cross-cutting concerns, determine execution order
@@ -110,7 +112,6 @@ Determine the work type and execute the matching variant:
110
112
 
111
113
  #### Build (features, stories, tasks)
112
114
 
113
- 0. **Create agent team via `TeamCreate`** (see Orchestration section) -- Build runs a long sequence with parallel review; do this before any other work.
114
115
  1. **Investigate sub-flow** -- explore codebase for related code, patterns, dependencies
115
116
  2. `product-specialist` -- define acceptance criteria, user flows, error states
116
117
  3. `architecture-specialist` -- design approach, map files to modify, identify reusable code
@@ -124,7 +125,6 @@ Determine the work type and execute the matching variant:
124
125
 
125
126
  #### Fix (bugs)
126
127
 
127
- 0. **Create agent team via `TeamCreate`** (see Orchestration section) -- Fix runs a long sequence with parallel review; do this before any other work.
128
128
  1. **Reproduce sub-flow** -- write failing test or script that demonstrates the bug (MANDATORY before any fix is attempted)
129
129
  2. **Investigate sub-flow** -- git history, root cause analysis
130
130
  3. `debug-specialist` -- prove root cause with evidence
@@ -139,7 +139,6 @@ Determine the work type and execute the matching variant:
139
139
 
140
140
  #### Improve (refactoring, optimization, coverage improvement)
141
141
 
142
- 0. **Create agent team via `TeamCreate`** (see Orchestration section) -- Improve runs a long sequence with parallel review; do this before any other work.
143
142
  1. **Investigate sub-flow** -- understand current state, measure baseline
144
143
  2. `architecture-specialist` -- identify target, plan approach
145
144
  3. `test-specialist` -- ensure existing test coverage before refactoring (safety net)
@@ -274,7 +273,9 @@ Flows reference sub-flows by name. When a flow says "Investigate sub-flow", exec
274
273
 
275
274
  ## Orchestration
276
275
 
277
- How a flow dispatches its agents depends on the flow's shape. Pick the orchestration mode that matches the workdo not default to the heaviest one.
276
+ > **Note**: Orchestration authority belongs to lifecycle skills (see `## Orchestration Selection Protocol` above). This section documents the patterns that lifecycle skills implementit is reference material, not a directive for this rule to choose modes independently.
277
+
278
+ Lifecycle skills dispatch their agents according to the flow's shape. The following patterns are how they do it — do not default to the heaviest one.
278
279
 
279
280
  ### Agent Teams (default for multi-step flows)
280
281
 
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-fix-linter-error
2
+ name: fix-linter-error
3
3
  description: This skill should be used when fixing all violations of one or more ESLint rules across the codebase. It runs the linter, groups violations by rule and file, generates a brief with fix strategies, and creates a plan with tasks to implement the fixes.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
 
@@ -42,4 +42,4 @@ Fix strategies: extract functions, early returns, apply formatting, add types
42
42
  Verification: `bun run lint 2>&1 | grep -E "($ARGUMENTS)" | wc -l` → Expected: 0
43
43
  ```
44
44
 
45
- Invoke `/plan-execute` with this brief to create the implementation plan.
45
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -1,19 +1,34 @@
1
1
  ---
2
- name: plan-execute
2
+ name: implement
3
3
  description: This skill should be used for any non-trivial request — features, bugs, stories, epics, spikes, or multi-step tasks. It accepts a ticket URL (Jira, Linear, GitHub), a file path containing a spec, or a plain-text prompt. It assembles an agent team, breaks the work into structured tasks, and manages the full lifecycle from research through implementation, code review, deploy, and empirical verification.
4
4
  ---
5
5
 
6
+ # Implement: $ARGUMENTS
6
7
 
7
- $ARGUMENTS is either a url to a ticket containing the request, a pointer to a file containing the request or the request in text format.
8
+ ## Orchestration: agent team
8
9
 
9
- If it's a ticket, use either the Jira CLI (if it's a jira ticket), the Linear CLI (if it's a linear ticket) or the Github CLI (if it's a github ticket) to read and fully understand the request, including any comments or meta data associated with the ticket.
10
+ If you are NOT already operating inside an agent team (no prior `TeamCreate` in this session, not spawned via `Agent` with `team_name`), your FIRST tool call MUST be `TeamCreate`. Do not call `TaskCreate`, `Agent`, or implementation tools before the team exists.
10
11
 
11
- If it's a file, read the entire file without offset or limit to understand the request.
12
+ If you ARE already inside an agent team (e.g., a teammate invoked this skill via the Skill tool, or `lisa:intake` is running this skill per Ready ticket), do NOT call `TeamCreate` — the harness rejects double-creates. Continue within the existing team. The team lead created the team; teammates inherit it.
12
13
 
13
- Is this a simple request? Just execute it as usual and ignore the rest...
14
+ When you do create the team, spawn every agent with `mode: "plan"` so they must submit their plan for team lead approval before making any file changes. Every team must include the Explore agent.
14
15
 
15
- Otherwise:
16
+ ## Resolve the input
16
17
 
18
+ $ARGUMENTS is either a url to a ticket containing the request, a pointer to a file containing the request, or the request in text format.
19
+
20
+ If it's a ticket, use the appropriate vendor adapter to read and fully understand the request:
21
+ - JIRA ticket → `lisa:jira-read-ticket` (preferred) or the Jira CLI
22
+ - Linear ticket → the Linear CLI (no `lisa:linear-*` adapter built yet)
23
+ - GitHub ticket → the Github CLI
24
+
25
+ Capture comments and metadata, not just the description.
26
+
27
+ If it's a file, read the entire file without offset or limit.
28
+
29
+ If this is a simple, self-contained request that requires no complex orchestration, execute it directly within the current team context and skip the agent roster and task planning below.
30
+
31
+ ## Select the agent roster
17
32
 
18
33
  Review all available agent types listed in the Task tool's `subagent_type` options. This includes built-in agents (like `Explore`, `general-purpose`), custom agents (from `.claude/agents/`), and plugin agents (from `.claude/settings.json` `enabledPlugins`). For each agent, explain in one sentence why it IS or IS NOT relevant to this task. Then select all agents that are relevant. You MUST justify excluding an agent — inclusion is the default.
19
34
 
@@ -22,12 +37,6 @@ When deciding the agents to use, consider:
22
37
  * Each task must be reviewed by the team to make sure their verification passes.
23
38
  * Each task must have their learnings reviewed by the learner subagent.
24
39
 
25
- NOTE: Every team must include the Explore agent
26
-
27
- Create an agent team composed of the selected agents. Spawn every agent with `mode: "plan"` so they must submit their plan for team lead approval before making any file changes.
28
-
29
- Use the TeamCreate tool to create the team before doing anything else.
30
-
31
40
  Using the general-purpose agent in Team Lead session, Determine the name of this plan
32
41
 
33
42
  Using the general-purpose agent in Team Lead session, Determine what branch to use:
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-lower-code-complexity
2
+ name: improve-code-complexity
3
3
  description: This skill should be used when reducing the cognitive complexity threshold of the codebase. It lowers the threshold by 2, identifies functions that exceed the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to fix all violations.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
  ---
@@ -41,4 +41,4 @@ Refactoring strategies: extract functions, early returns, extract conditions, us
41
41
  Verification: `bun run lint 2>&1 | grep "cognitive-complexity" | wc -l` → Expected: 0
42
42
  ```
43
43
 
44
- Invoke `/plan-execute` with this brief to create the implementation plan.
44
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-reduce-max-lines
2
+ name: improve-max-lines
3
3
  description: This skill should be used when reducing the maximum file lines threshold and fixing all violations. It updates the eslint threshold configuration, identifies files exceeding the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to split oversized files.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
 
@@ -42,4 +42,4 @@ Refactoring strategies: extract modules, remove duplication, delete dead code, s
42
42
  Verification: `bun run lint 2>&1 | grep "max-lines" | wc -l` → Expected: 0
43
43
  ```
44
44
 
45
- Invoke `/plan-execute` with this brief to create the implementation plan.
45
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-reduce-max-lines-per-function
2
+ name: improve-max-lines-per-function
3
3
  description: This skill should be used when reducing the maximum lines per function threshold and fixing all violations. It updates the eslint threshold configuration, identifies functions exceeding the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to split oversized functions.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
 
@@ -43,4 +43,4 @@ Refactoring strategies: extract functions, early returns, extract conditions, us
43
43
  Verification: `bun run lint 2>&1 | grep "max-lines-per-function" | wc -l` → Expected: 0
44
44
  ```
45
45
 
46
- Invoke `/plan-execute` with this brief to create the implementation plan.
46
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-add-test-coverage
2
+ name: improve-test-coverage
3
3
  description: This skill should be used when increasing test coverage to a specified threshold percentage. It runs the coverage report, identifies files with the lowest coverage, generates a brief with coverage gaps, and creates a plan with tasks to add the missing tests.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
 
@@ -41,4 +41,4 @@ Configuration: [config file path], update thresholds to $ARGUMENTS%
41
41
  Verification: `bun run test:cov` → Expected: All thresholds pass at $ARGUMENTS%
42
42
  ```
43
43
 
44
- Invoke `/plan-execute` with this brief to create the implementation plan.
44
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: plan-improve-tests
2
+ name: improve-tests
3
3
  description: This skill should be used when improving test quality. It scans the test suite for weak, brittle, or poorly-written tests, generates a brief with improvement opportunities, and creates a plan with tasks to strengthen the tests.
4
4
  allowed-tools: ["Read", "Bash", "Glob", "Grep"]
5
5
  ---
@@ -44,4 +44,4 @@ Test files needing improvement (ordered by impact):
44
44
  Verification: `bun run test` -> Expected: All tests pass, improved assertions and coverage
45
45
  ```
46
46
 
47
- Invoke `/plan-execute` with this brief to create the implementation plan.
47
+ Invoke `/implement` with this brief to create the implementation plan.
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: intake
3
+ description: "Vendor-agnostic batch scanner for Status=Ready queues. Given a Notion PRD database URL → finds Ready PRDs and runs lisa:plan per item. Given a JIRA project key or JQL filter → finds Ready tickets and runs lisa:implement per item. Designed as the cron target for /schedule — one cycle per invocation, processes everything currently Ready, exits cleanly on empty. Symmetric counterpart to the single-item lisa:plan and lisa:implement skills."
4
+ allowed-tools: ["Skill", "Bash", "mcp__claude_ai_Notion__notion-fetch", "mcp__claude_ai_Notion__notion-search", "mcp__atlassian__getAccessibleAtlassianResources", "mcp__atlassian__searchJiraIssuesUsingJql", "mcp__atlassian__getJiraIssue"]
5
+ ---
6
+
7
+ # Intake: $ARGUMENTS
8
+
9
+ Run one batch-intake cycle against the queue identified by `$ARGUMENTS`. Scans for `Status = Ready`, claims each item, and dispatches to the appropriate single-item lifecycle skill.
10
+
11
+ ## Orchestration: agent team
12
+
13
+ If you are NOT already operating inside an agent team (no prior `TeamCreate` in this session, not spawned via `Agent` with `team_name`), your FIRST tool call MUST be `TeamCreate`. Do not call `TaskCreate`, `Agent`, or implementation tools before the team exists.
14
+
15
+ If you ARE already inside an agent team (e.g., a teammate invoked this skill via the Skill tool), do NOT call `TeamCreate` — the harness rejects double-creates. Continue within the existing team. The team lead created the team; teammates inherit it.
16
+
17
+ The cycle's outer team is created by Intake. Each item it processes (a PRD via `lisa:plan`, a ticket via `lisa:implement`) executes within the same team — those skills' orchestration preambles detect the existing team and skip TeamCreate. One team per cron cycle, processes everything currently Ready.
18
+
19
+ ## Source dispatch
20
+
21
+ Detect the queue type from `$ARGUMENTS` and route:
22
+
23
+ | If `$ARGUMENTS` is... | Queue type | Per-item dispatch |
24
+ |------------------------|------------|---------------------|
25
+ | A Notion **database** URL or database ID | PRD queue (Notion) | Invoke `lisa:notion-prd-intake` (which scans the DB for Status=Ready, claims each, runs `lisa:plan` per PRD via the dry-run validate → branch → write pipeline) |
26
+ | A JIRA project key (e.g. `SE`) | Work queue (JIRA) | Invoke `lisa:jira-build-intake` (which scans the project for Status=Ready, claims each via In Progress, runs `lisa:implement` per ticket, transitions to On Dev on success) |
27
+ | A full JQL filter (e.g. `project = SE AND component = "frontend"`) | Work queue (JIRA, narrowed) | Invoke `lisa:jira-build-intake` with the JQL |
28
+ | A Linear / GitHub Issues queue | Not yet implemented | Stop and report — no `linear-tracker` or `github-tracker` adapter has been built. Don't fall back. |
29
+
30
+ The single-item skills (`lisa:plan`, `lisa:implement`) and the per-vendor batch skills (`lisa:notion-prd-intake`, `lisa:jira-build-intake`) are internal — Intake is the public entry point. Developers schedule `/lisa:intake <queue>`; the rest is composition.
31
+
32
+ ## Cycle behavior
33
+
34
+ 1. **Resolve the queue** — fetch the database/project metadata, confirm the Status property/workflow has the expected `Ready` value.
35
+ 2. **Pre-flight check** — for JIRA, confirm `In Progress` and `On Dev` are reachable transitions before doing any per-ticket work. Stop with a clear error if the workflow is misconfigured.
36
+ 3. **Find Ready items** — query the queue. Empty → exit cleanly with `"No items with Status=Ready. Nothing to do."` This is the common idle case for a scheduled run.
37
+ 4. **Process each Ready item serially** (claim-first ordering for idempotency):
38
+ - Notion PRDs → `lisa:notion-prd-intake` handles per-item: claim, dry-run validate, branch to Blocked or Ticketed, coverage audit
39
+ - JIRA tickets → `lisa:jira-build-intake` handles per-item: claim, dispatch to `lisa:jira-agent`, transition to On Dev on success
40
+ 5. **Failure isolation** — one item failing does not stop the cycle; record under "Errors" and continue.
41
+ 6. **Summary report** — per-item outcomes, total processed, total errors.
42
+
43
+ ## Schedule examples
44
+
45
+ ```text
46
+ /schedule "every 30 minutes" /lisa:intake https://www.notion.so/<workspace>/<database-id>
47
+ /schedule "every 30 minutes" /lisa:intake SE
48
+ /schedule "every hour" /lisa:intake "project = SE AND component = 'frontend'"
49
+ ```
50
+
51
+ ## Rules
52
+
53
+ - Never run a cycle without an explicit queue. Side effects too high to default.
54
+ - Never modify the source/destination lifecycles directly — Intake delegates per-item to the vendor adapter, which owns status transitions.
55
+ - Never run two Intake cycles concurrently against overlapping queues — concurrent claims could race. The scheduling layer is responsible for serialization.
56
+ - Stop and surface failures rather than retry-loop.
@@ -115,6 +115,6 @@ python3 .claude/skills/jira-journey/scripts/parse-plan.py <TICKET_ID>
115
115
  ## When to Use This Skill
116
116
 
117
117
  - Ticket was created before the Validation Journey convention was established
118
- - Ticket was created manually without following `jira-create` guidelines
118
+ - Ticket was created manually without following `lisa:jira-create` guidelines
119
119
  - Ticket needs a journey added or updated based on implementation progress
120
120
  - Before starting work on a ticket, to ensure verification steps are documented
@@ -11,7 +11,7 @@ allowed-tools: ["Skill", "Bash", "mcp__atlassian__getAccessibleAtlassianResource
11
11
  1. A JIRA project key (e.g. `SE`) — scans that project for `Status = Ready` tickets.
12
12
  2. A full JQL filter (e.g. `project = SE AND component = "frontend" AND Status = Ready`) — used as-is. The skill will not append a `Status = Ready` clause if the JQL already names a status, so callers can intentionally widen.
13
13
 
14
- Run one build-intake cycle. Each Ready ticket is claimed, built via the `jira-agent` flow, and transitioned to `On Dev` (or the equivalent next-status for that project). The cycle is the symmetric mirror of `notion-prd-intake`: humans flip `Ready`, agents pick up and progress.
14
+ Run one build-intake cycle. Each Ready ticket is claimed, built via the `lisa:jira-agent` flow, and transitioned to `On Dev` (or the equivalent next-status for that project). The cycle is the symmetric mirror of `lisa:notion-prd-intake`: humans flip `Ready`, agents pick up and progress.
15
15
 
16
16
  ## Lifecycle assumed
17
17
 
@@ -55,28 +55,28 @@ If the transition fails (permission, missing transition, race), log under "Error
55
55
 
56
56
  #### 3b. Run the build flow
57
57
 
58
- Invoke the `jira-agent` (existing per-ticket lifecycle agent) with the ticket key. `jira-agent` owns:
59
- - Reading the full ticket graph (`jira-read-ticket`)
60
- - Running its own pre-flight quality gate (`jira-verify`)
61
- - Running ticket triage (`ticket-triage`)
58
+ Invoke the `lisa:jira-agent` (existing per-ticket lifecycle agent) with the ticket key. `lisa:jira-agent` owns:
59
+ - Reading the full ticket graph (`lisa:jira-read-ticket`)
60
+ - Running its own pre-flight quality gate (`lisa:jira-verify`)
61
+ - Running ticket triage (`lisa:ticket-triage`)
62
62
  - Routing to the appropriate flow (Build / Fix / Investigate / Improve based on type)
63
- - Posting progress comments via `jira-sync`
64
- - Posting evidence via `jira-evidence`
63
+ - Posting progress comments via `lisa:jira-sync`
64
+ - Posting evidence via `lisa:jira-evidence`
65
65
 
66
- Wait for `jira-agent` to return. Capture its outcome:
66
+ Wait for `lisa:jira-agent` to return. Capture its outcome:
67
67
  - **Success** — PR is ready (open or merged); evidence posted; ready for next status.
68
- - **Blocked by jira-verify pre-flight gate** — `jira-agent` itself transitions the ticket to `Blocked` and reassigns to Reporter. This is correct and expected — let it stand. Record the outcome and move on.
69
- - **Blocked by ticket-triage ambiguities** — `jira-agent` posts findings and stops. The ticket stays in `In Progress`. Surface to human; do not auto-transition. Record under "Errors" with reason `"Triage found ambiguities — see comments on <ticket-key>"`.
68
+ - **Blocked by jira-verify pre-flight gate** — `lisa:jira-agent` itself transitions the ticket to `Blocked` and reassigns to Reporter. This is correct and expected — let it stand. Record the outcome and move on.
69
+ - **Blocked by ticket-triage ambiguities** — `lisa:jira-agent` posts findings and stops. The ticket stays in `In Progress`. Surface to human; do not auto-transition. Record under "Errors" with reason `"Triage found ambiguities — see comments on <ticket-key>"`.
70
70
  - **Errored** — exception, missing config, etc. Leave the ticket in `In Progress` for human investigation. Record under "Errors" with the exception summary.
71
71
 
72
72
  #### 3c. Transition to On Dev (only on Success)
73
73
 
74
- If `jira-agent` returned Success:
74
+ If `lisa:jira-agent` returned Success:
75
75
  1. Use `getTransitionsForJiraIssue` to find the transition ID for `On Dev` (or the configured next-after-build status).
76
76
  2. Transition via `transitionJiraIssue`.
77
77
  3. Post a `[claude-build-intake]` comment: `"Build complete. PR <URL>. Transitioned to On Dev."`
78
78
 
79
- For any non-Success outcome, do NOT transition. The ticket sits in `In Progress` (or wherever `jira-agent` left it for the Blocked case) — the cycle's job is done; humans take it from there.
79
+ For any non-Success outcome, do NOT transition. The ticket sits in `In Progress` (or wherever `lisa:jira-agent` left it for the Blocked case) — the cycle's job is done; humans take it from there.
80
80
 
81
81
  #### 3d. Continue
82
82
 
@@ -106,10 +106,10 @@ Total PRs opened: <n>
106
106
 
107
107
  ## Idempotency & safety
108
108
 
109
- - **Claim-first ordering**: `In Progress` set BEFORE `jira-agent` invocation — no double-pickup.
110
- - **No writes outside the lifecycle**: this skill only transitions `Ready → In Progress` and `In Progress → On Dev`. Every other status change is owned by `jira-agent` (which suggests transitions but only auto-transitions on the verify-FAIL path).
109
+ - **Claim-first ordering**: `In Progress` set BEFORE `lisa:jira-agent` invocation — no double-pickup.
110
+ - **No writes outside the lifecycle**: this skill only transitions `Ready → In Progress` and `In Progress → On Dev`. Every other status change is owned by `lisa:jira-agent` (which suggests transitions but only auto-transitions on the verify-FAIL path).
111
111
  - **Failure isolation**: per-ticket exceptions caught and recorded; the cycle continues.
112
- - **Single cycle per query**: do not run two `jira-build-intake` cycles in parallel against overlapping queries — concurrent claims could race. The scheduling layer (when added) is responsible for serialization.
112
+ - **Single cycle per query**: do not run two `lisa:jira-build-intake` cycles in parallel against overlapping queries — concurrent claims could race. The scheduling layer (when added) is responsible for serialization.
113
113
  - **Never invent a transition**: if `In Progress` or `On Dev` aren't valid transitions in the project's workflow, stop and report rather than guessing alternative names.
114
114
 
115
115
  ## Configuration
@@ -128,7 +128,7 @@ If a `Ready` status does not exist in the JIRA project's workflow, this skill ca
128
128
  ## Rules
129
129
 
130
130
  - Never transition a ticket the cycle didn't claim. The `In Progress` transition is the signature of cycle ownership.
131
- - Never bypass `jira-agent` to do build work directly. `jira-agent` owns the per-ticket lifecycle (read, verify, triage, route, sync, evidence). This skill is the dispatcher, not the builder.
131
+ - Never bypass `lisa:jira-agent` to do build work directly. `lisa:jira-agent` owns the per-ticket lifecycle (read, verify, triage, route, sync, evidence). This skill is the dispatcher, not the builder.
132
132
  - Never auto-transition past `On Dev`. Downstream statuses (`On QA`, `Done`) are owned by QA / product / a future verification-intake skill — not this one.
133
- - If the ticket has no Validation Journey or no sign-in credentials in its description, `jira-agent`'s pre-flight verify will catch it and transition to `Blocked` — **don't try to fix the ticket from here**. Pre-flight gating is `jira-agent`'s job; running build work on a thin ticket produces broken work.
134
- - On any unexpected response from `jira-agent` (status it doesn't claim, missing PR URL on success, etc.), record as Error and surface — never assume.
133
+ - If the ticket has no Validation Journey or no sign-in credentials in its description, `lisa:jira-agent`'s pre-flight verify will catch it and transition to `Blocked` — **don't try to fix the ticket from here**. Pre-flight gating is `lisa:jira-agent`'s job; running build work on a thin ticket produces broken work.
134
+ - On any unexpected response from `lisa:jira-agent` (status it doesn't claim, missing PR URL on success, etc.), record as Error and surface — never assume.
@@ -6,13 +6,13 @@ allowed-tools: ["Read", "Glob", "LS", "Skill", "mcp__atlassian__getVisibleJiraPr
6
6
 
7
7
  # Create JIRA Issues from $ARGUMENTS
8
8
 
9
- Analyze the provided file(s) and plan a JIRA hierarchy. **This skill plans structure only — every individual ticket write is delegated to `jira-write-ticket`.** Do not call `mcp__atlassian__createJiraIssue` from this skill; the necessary write tools are intentionally not in `allowed-tools`.
9
+ 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`.
10
10
 
11
11
  ## Process
12
12
 
13
13
  1. **Analyze**: Read $ARGUMENTS to understand scope.
14
- 2. **Extract source artifacts**: invoke the `jira-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.
15
- 3. **Walk the live product** (when applicable): if the work touches existing user-facing surfaces, invoke the `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.
14
+ 2. **Extract source artifacts**: invoke the `lisa:jira-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.
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. Skip 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
18
18
  - Direct tasks if: bug fix, single file, minor change
@@ -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 `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 `jira-source-artifacts` inheritance rules) and the walkthrough findings (under `## Current Product`). See "Delegation to jira-write-ticket" below.
24
- 7. **Run the artifact preservation gate** (`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:jira-source-artifacts` inheritance rules) and the walkthrough findings (under `## Current Product`). 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.
25
25
 
26
26
  ## Mandatory for Every Code Issue
27
27
 
@@ -32,7 +32,7 @@ Analyze the provided file(s) and plan a JIRA hierarchy. **This skill plans struc
32
32
 
33
33
  ## Validation Journey
34
34
 
35
- Tickets that change runtime behavior should include a `Validation Journey` section in the description. This section is consumed by the `jira-journey` skill to automate verification.
35
+ 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.
36
36
 
37
37
  ### When to Include
38
38
 
@@ -89,13 +89,13 @@ h3. Assertions
89
89
 
90
90
  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.
91
91
 
92
- **Invoke the `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 — invoke the skill so any rule change propagates uniformly.
92
+ **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 — invoke the skill so any rule change propagates uniformly.
93
93
 
94
- When delegating actual writes to `jira-write-ticket`, pass the extracted artifact list so its Phase 4c (Remote Links) step can attach them.
94
+ When delegating actual writes to `lisa:jira-write-ticket`, pass the extracted artifact list so its Phase 4c (Remote Links) step can attach them.
95
95
 
96
96
  ## Live Product Walkthrough
97
97
 
98
- When the work touches existing user-facing surfaces, invoke the `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.
98
+ 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.
99
99
 
100
100
  ## Issue Requirements
101
101
 
@@ -110,9 +110,9 @@ Exclude unless requested: migration plans, performance tests
110
110
 
111
111
  ## Delegation to jira-write-ticket
112
112
 
113
- **Mandatory.** Every ticket created by this skill MUST go through `jira-write-ticket`. This skill never calls `mcp__atlassian__createJiraIssue` itself — that tool is intentionally excluded from `allowed-tools` so the gate cannot be bypassed.
113
+ **Mandatory.** Every ticket created by this skill MUST go through `lisa:jira-write-ticket`. This skill never calls `mcp__atlassian__createJiraIssue` itself — that tool is intentionally excluded from `allowed-tools` so the gate cannot be bypassed.
114
114
 
115
- `jira-write-ticket` enforces things this skill does not, and which determine ticket quality:
115
+ `lisa:jira-write-ticket` enforces things this skill does not, and which determine ticket quality:
116
116
  - 3-audience description (Context / Technical Approach / Acceptance Criteria)
117
117
  - Gherkin acceptance criteria
118
118
  - Epic parent validation (non-bug, non-epic types)
@@ -126,9 +126,9 @@ Exclude unless requested: migration plans, performance tests
126
126
 
127
127
  Tickets must be created in parent-before-child order so each child can be passed its parent key:
128
128
 
129
- 1. Invoke `jira-write-ticket` for the epic. Capture the returned key.
130
- 2. For each story, invoke `jira-write-ticket` with the epic key as the epic parent. Capture each story key.
131
- 3. For each sub-task, invoke `jira-write-ticket` with the parent story key.
129
+ 1. Invoke `lisa:jira-write-ticket` for the epic. Capture the returned key.
130
+ 2. For each story, invoke `lisa:jira-write-ticket` with the epic key as the epic parent. Capture each story key.
131
+ 3. For each sub-task, invoke `lisa:jira-write-ticket` with the parent story key.
132
132
 
133
133
  ### What to pass to each invocation
134
134
 
@@ -137,8 +137,8 @@ For every delegated write, pass:
137
137
  - The 3-section description body you drafted (Context / Technical Approach / Acceptance Criteria)
138
138
  - Gherkin acceptance criteria
139
139
  - Parent key (epic key for stories; story key for sub-tasks)
140
- - The artifact list extracted in "Source Artifacts", filtered by domain per the inheritance rules — `jira-write-ticket` Phase 4c attaches them as remote links
141
- - For tickets that change runtime behavior: the Validation Journey draft (or instruct it to call `jira-add-journey` after create)
140
+ - The artifact list extracted in "Source Artifacts", filtered by domain per the inheritance rules — `lisa:jira-write-ticket` Phase 4c attaches them as remote links
141
+ - For tickets that change runtime behavior: the Validation Journey draft (or instruct it to call `lisa:jira-add-journey` after create)
142
142
 
143
143
  ### What this skill is responsible for
144
144
 
@@ -149,4 +149,4 @@ This skill owns:
149
149
  - Threading parent keys through subsequent writes
150
150
  - Running the Phase 5.5-style preservation check after all writes complete
151
151
 
152
- It does not own the actual JIRA write — that's `jira-write-ticket`'s job.
152
+ It does not own the actual JIRA write — that's `lisa:jira-write-ticket`'s job.
@@ -8,7 +8,7 @@ allowed-tools: []
8
8
 
9
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.
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 `notion-to-jira`, `jira-create`, and `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-jira`, `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.
12
12
 
13
13
  ## 1. Domains
14
14
 
@@ -6,7 +6,7 @@ allowed-tools: ["Bash", "mcp__atlassian__getJiraIssue", "mcp__atlassian__searchJ
6
6
 
7
7
  # Validate JIRA Ticket: $ARGUMENTS
8
8
 
9
- Run all organizational quality gates against a ticket spec OR an existing ticket. **This skill is read-only — it never writes to JIRA.** The output is a structured report consumed by callers (`jira-write-ticket` for pre-write gating, `notion-to-jira` for PRD dry-run, `jira-verify` for post-write checks).
9
+ Run all organizational quality gates against a ticket spec OR an existing ticket. **This skill is read-only — it never writes to JIRA.** The output is a structured report consumed by callers (`lisa:jira-write-ticket` for pre-write gating, `lisa:notion-to-jira` for PRD dry-run, `lisa:jira-verify` for post-write checks).
10
10
 
11
11
  ## Input
12
12
 
@@ -132,8 +132,8 @@ Story / Epic / Spike / Improvement: skipped (may span repos).
132
132
  When `runtime_behavior_change = true`, description must contain `h2. Validation Journey`. Skipped for doc-only / config-only / type-only / Epic.
133
133
 
134
134
  The caller controls the strictness by passing `journey_followup: "auto"` or `journey_followup: "none"` in the spec:
135
- - `auto` (default): if the section is absent, return `FAIL` with remediation `"Invoke jira-add-journey to append the section after create"`. Callers like `jira-write-ticket` know to chain `jira-add-journey` automatically, so this counts as a fixable failure they can resolve in-line — they re-run validation after appending.
136
- - `none`: missing section is a `FAIL` that the caller will not auto-fix, so the verdict gates progress (used by dry-run paths like `notion-to-jira` PRD intake, where there's no agent standing by to add the journey).
135
+ - `auto` (default): if the section is absent, return `FAIL` with remediation `"Invoke lisa:jira-add-journey to append the section after create"`. Callers like `lisa:jira-write-ticket` know to chain `lisa:jira-add-journey` automatically, so this counts as a fixable failure they can resolve in-line — they re-run validation after appending.
136
+ - `none`: missing section is a `FAIL` that the caller will not auto-fix, so the verdict gates progress (used by dry-run paths like `lisa:notion-to-jira` PRD intake, where there's no agent standing by to add the journey).
137
137
 
138
138
  Either way the gate emits `FAIL`, not a third state. Strictness is the caller's policy, not the validator's.
139
139
 
@@ -141,7 +141,7 @@ Either way the gate emits `FAIL`, not a third state. Strictness is the caller's
141
141
 
142
142
  When `artifacts_attached = true`, description must include source-precedence guidance covering: business rules → PRD body, visual treatment → mocks, flow → prototypes, API/data → data artifacts. Cross-axis conflicts surfaced under `## Open Questions`.
143
143
 
144
- Accept either placement — both are valid per `jira-source-artifacts`:
144
+ Accept either placement — both are valid per `lisa:jira-source-artifacts`:
145
145
  - A dedicated `## Source Precedence` (or `h2. Source Precedence`) subsection, OR
146
146
  - A "Source Precedence" / "source precedence" / "authoritative source" paragraph under `Technical Approach` that covers the four axes above.
147
147