@codyswann/lisa 2.251.0 → 2.252.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 (59) hide show
  1. package/package.json +1 -1
  2. package/plugins/lisa/.claude-plugin/plugin.json +1 -1
  3. package/plugins/lisa/.codex-plugin/plugin.json +1 -1
  4. package/plugins/lisa/rules/eager/automation-runbook-contract.md +61 -0
  5. package/plugins/lisa/rules/reference/automation-runbook-contract.md +216 -0
  6. package/plugins/lisa-agy/plugin.json +1 -1
  7. package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
  8. package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
  9. package/plugins/lisa-cdk-agy/plugin.json +1 -1
  10. package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
  11. package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
  12. package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
  13. package/plugins/lisa-copilot/rules/eager/automation-runbook-contract.md +61 -0
  14. package/plugins/lisa-copilot/rules/reference/automation-runbook-contract.md +216 -0
  15. package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
  16. package/plugins/lisa-cursor/rules/automation-runbook-contract-reference.mdc +221 -0
  17. package/plugins/lisa-cursor/rules/automation-runbook-contract.mdc +66 -0
  18. package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
  19. package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
  20. package/plugins/lisa-expo-agy/plugin.json +1 -1
  21. package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
  22. package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
  23. package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
  24. package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
  25. package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
  26. package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
  27. package/plugins/lisa-harper-fabric-cursor/.claude-plugin/plugin.json +1 -1
  28. package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
  29. package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
  30. package/plugins/lisa-nestjs-agy/plugin.json +1 -1
  31. package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
  32. package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
  33. package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
  34. package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
  35. package/plugins/lisa-openclaw-agy/plugin.json +1 -1
  36. package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
  37. package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
  38. package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
  39. package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
  40. package/plugins/lisa-phaser-agy/plugin.json +1 -1
  41. package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
  42. package/plugins/lisa-phaser-cursor/.claude-plugin/plugin.json +1 -1
  43. package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
  44. package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
  45. package/plugins/lisa-rails-agy/plugin.json +1 -1
  46. package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
  47. package/plugins/lisa-rails-cursor/.claude-plugin/plugin.json +1 -1
  48. package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
  49. package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
  50. package/plugins/lisa-typescript-agy/plugin.json +1 -1
  51. package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
  52. package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
  53. package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
  54. package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
  55. package/plugins/lisa-wiki-agy/plugin.json +1 -1
  56. package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
  57. package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
  58. package/plugins/src/base/rules/eager/automation-runbook-contract.md +61 -0
  59. package/plugins/src/base/rules/reference/automation-runbook-contract.md +216 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -0,0 +1,221 @@
1
+ ---
2
+ description: "Automation Runbook Contract"
3
+ alwaysApply: false
4
+ ---
5
+
6
+ # Automation Runbook Contract
7
+
8
+ Scheduled loops are the busiest machinery in the factory and historically the least explicitly
9
+ contracted: what a loop maintains, what it may do on its own, what it must escalate, and when it
10
+ should stop existing all lived implicitly in each loop's prose. The cost lands on the operator — a
11
+ quiet run and a broken run look identical, and "what is this scheduled thing?" has a different
12
+ answer shape for every loop. This contract writes the answer down once.
13
+
14
+ It is a **single vendor-neutral contract** consumed by `lisa-setup-automations` (which scaffolds a
15
+ runbook per registered loop), `lisa-automation-status` (which reads runbooks and run outcomes back
16
+ to an operator), `lisa-tear-down-automations` (which acts on retirement proposals), and every
17
+ registered loop skill (which conforms its own run to it). Each consumer cites this slug; none of
18
+ them redefines it.
19
+
20
+ **Membership is registration, not skill-existence.** A loop falls under this contract when it is
21
+ registered as a scheduled automation on the host project's runtime scheduler — not when its skill
22
+ file happens to exist in the plugin tree. Registering a new loop pulls it in automatically, and
23
+ un-registering drops it. Nothing in this contract, in the scaffolder, or in the status surface may
24
+ carry a hardcoded roster of loops; the worked example below names one loop as illustration only.
25
+
26
+ ## The runbook template
27
+
28
+ Every registered loop's runbook has these ten sections, in this order. Each is answered in prose a
29
+ non-technical operator can read (`factory-model` rule 5).
30
+
31
+ | Section | What a good answer looks like |
32
+ |---|---|
33
+ | Intent | One sentence naming what this loop maintains, in outcome terms, not mechanism terms. |
34
+ | Sources of truth | The exact surfaces the loop reads, each reachable through its access layer (`integration-access-layer`) — never a direct vendor API call. |
35
+ | Candidate selection | The query or filter that decides what this run acts on, and the bound on how many. |
36
+ | Scope/bounds | What the loop will never touch, and the cap that keeps one run finite. |
37
+ | Proof | What the loop must observe before claiming it changed anything — the evidence it records. |
38
+ | Autonomous-vs-approval boundary | The named line: what it does alone, and the first thing on the other side that requires a human. |
39
+ | Escalation | What it files when it cannot proceed — always the decision-ready packet below. |
40
+ | Recovery | What a human or the next run does to get the loop working again after `recovery-required`. |
41
+ | Next-run state | What the next run can observe from this one, derived from durable surfaces (tracker, records) rather than in-process memory. |
42
+ | Retirement condition | The stateless, tracker-derived condition under which this loop proposes its own teardown. |
43
+
44
+ ### Worked example — the `intake-tickets` loop
45
+
46
+ ```text
47
+ Loop: intake-tickets
48
+
49
+ Intent
50
+ Keeps the build queue moving: work items a human marked ready get built, reviewed, and shipped
51
+ without anyone having to hand them to an agent.
52
+
53
+ Sources of truth
54
+ The configured tracker's build queue (the ready/claimed/done lanes from .lisa.config.json), read
55
+ through the tracker access layer; the item's own comments and linked PRs.
56
+
57
+ Candidate selection
58
+ The oldest eligible leaf work item currently in the ready lane, one per run. Containers with open
59
+ children are repaired out of the queue, never built.
60
+
61
+ Scope/bounds
62
+ Only items in this repo's configured queue. It never edits the ready lane's meaning, never
63
+ invents work items, and never processes more than its per-run cap.
64
+
65
+ Proof
66
+ A merged pull request plus the project's own verification evidence posted back to the work item;
67
+ a claim of "done" without that evidence is not made.
68
+
69
+ Autonomous-vs-approval boundary
70
+ Alone: claim, plan, implement, open the PR, drive it to merge. Requires a human: anything that
71
+ needs a protected deployment approval, and any item whose requirements it cannot resolve — that
72
+ becomes a blocked work item with clarifying questions, not a guess.
73
+
74
+ Escalation
75
+ When the loop itself cannot proceed (tracker credentials revoked, queue unreadable), it files the
76
+ decision-ready packet below, labeled status:blocked + human-needed.
77
+
78
+ Recovery
79
+ A human restores the named access, then flips the escalation item closed; the next scheduled run
80
+ resumes with no manual replay needed.
81
+
82
+ Next-run state
83
+ Nothing in memory. The tracker lanes and the run records are the state: a claimed item that never
84
+ finished is visible as claimed, and the repair path picks it up.
85
+
86
+ Retirement condition
87
+ Propose teardown when BOTH hold: no work item has entered this queue for 30 consecutive days, AND
88
+ this run proposed nothing. It files one teardown-proposal item and keeps running at its normal
89
+ cadence until someone approves, declines, or re-cadences it.
90
+ ```
91
+
92
+ ## The six run outcomes
93
+
94
+ Exactly one per run. The one-line operator summary is not optional — it is what the status surface
95
+ shows and what makes the outcome actionable.
96
+
97
+ Health and operator action are **orthogonal**: several healthy outcomes still want an answer, and
98
+ only `recovery-required` means the machinery itself is broken.
99
+
100
+ | Outcome | Definition | Healthy? | Operator action? | One-line summary must contain |
101
+ |---|---|---|---|---|
102
+ | `nothing-needed` | The loop ran end to end and found nothing to act on. | Healthy — **no operator action** | None. | What was scanned, how much was seen, and "nothing to propose". |
103
+ | `candidate-proposed` | The loop proposed work — a ticket, PRD, or recommendation — for a human or a downstream factory. | Healthy | Review the proposed item and flip it ready when you want it built. | What was proposed and where to find it (item refs). |
104
+ | `change-proved` | The loop made a change and proved it with evidence. | Healthy | None — informational. | What changed and the evidence that proves it. |
105
+ | `approval-requested` | The loop reached its autonomous/approval boundary and asked a human. | Healthy | Answer the approval question. | What is waiting, on whom, and what happens if nobody answers. |
106
+ | `recovery-required` | The loop itself could not complete: access, tooling, or substrate is broken. | **Not healthy** — needs a human | Restore the named capability, then close the escalation item. | What broke, and the escalation item to act on. |
107
+ | `policy-obsolete` | The loop's own retirement policy — the retirement condition written in its runbook — tripped, so it proposed its own teardown. | Healthy | Decide: approve the teardown, decline it (close the proposal; the loop continues at cadence), or re-cadence it. | Why it looks obsolete and the teardown-proposal item. |
108
+
109
+ ### Exemplar one-line summaries
110
+
111
+ These set the register every conforming loop copies — plain, specific, and actionable without
112
+ reading code:
113
+
114
+ ```text
115
+ nothing-needed Scanned 12 ready items; nothing to propose.
116
+ candidate-proposed Proposed #1810 to fix the failing checkout step; awaiting your flip to ready.
117
+ change-proved Merged #1811 raising coverage to 84%; CI green and evidence posted on the item.
118
+ approval-requested Deploy to production is waiting on your approval; nothing ships until you answer.
119
+ recovery-required Lost access to the tracker; filed #1812 with the one decision needed to restore it.
120
+ policy-obsolete No work has reached this queue in 30 days; proposed teardown in #1813.
121
+ ```
122
+
123
+ **No silent exit.** Every run posts its outcome and its one-line summary before stopping —
124
+ including the trivial early terminations (empty queue, nothing eligible, already-claimed) — so
125
+ there is no silent exit for an operator to misread as health. A run that ends without a
126
+ recorded outcome is indistinguishable from a crashed scheduler, which is exactly the ambiguity this
127
+ contract removes. This generalizes `lisa-improve-harness`'s result-record discipline — every
128
+ terminal step posts its result record before stopping, so there is no silent exit — from one flow to
129
+ every registered loop. (The run-record substrate that stores outcomes and summaries is named here
130
+ only; it ships with that ticket (#1797), do not assume its file is present in this branch.)
131
+
132
+ ## A run outcome is not a work-item lifecycle terminal state
133
+
134
+ This is the highest-risk seam in the contract, so it is stated explicitly.
135
+
136
+ - A **run outcome** describes the LOOP ITERATION — how this scheduled execution ended.
137
+ - A **terminal state** describes a TICKET — Lisa already uses that phrase for work-item lifecycles
138
+ (`lisa-intake`: "`Blocked` is a valid terminal state of the downstream lifecycles"; see
139
+ `prd-lifecycle-rollup`).
140
+
141
+ They never merge in an operator-facing report. A perfectly healthy cycle that routes a work item to
142
+ `Blocked` — because the item's requirements are unresolvable and a human must answer — is
143
+ `candidate-proposed`: the run produced something (a blocked item carrying clarifying questions), so
144
+ it is **never `nothing-needed`**, which is reserved for runs that found nothing at all, and **never
145
+ `recovery-required`**, which means the machinery is broken. Conflating a blocked work item with a
146
+ broken loop would paint healthy intake cycles permanently red and train operators to ignore the
147
+ fleet verdict.
148
+
149
+ ## Escalation — the decision-ready packet
150
+
151
+ A loop that cannot proceed escalates by filing a tracker item (through `lisa-tracker-write`, per
152
+ `tracked-work` and `integration-access-layer`) labeled **`status:blocked`** and **`human-needed`**,
153
+ containing exactly these fields:
154
+
155
+ | Field | Content |
156
+ |---|---|
157
+ | Current state | Where things stand right now, in plain terms — what is and is not working. |
158
+ | Work already attempted | What the loop tried on its own before escalating, so nobody repeats it. |
159
+ | Evidence | Links to the runs, items, logs, or records that show the problem (the evidence packet from the evidence PRD is the carrier; this contract names it and defines no evidence formats). |
160
+ | Risk of inaction | What degrades or stops if nobody acts, and how soon. |
161
+ | Smallest unresolved choice | The single smallest decision a human must make — one question, not a list — stated with **named options** (or as a yes/no), and what the loop will do with each answer. |
162
+ | How to answer | The mechanical response path: comment on the item, flip a label, or close it — so the operator never has to guess how to reply. |
163
+
164
+ The wording requirement is binding: a **non-technical operator must be able to act on the packet
165
+ without reading code** (`factory-model` rule 5). A stack trace may be attached as evidence, but the
166
+ packet must stand without it.
167
+
168
+ ## Retirement condition
169
+
170
+ A loop that no longer earns its schedule should say so. The condition is **stateless — derived from
171
+ the tracker, never from a counter or a state file** (there is no durable home for a run counter, and
172
+ a tracker-derived condition is headless- and concurrent-safe by construction). This generalizes the
173
+ *Retirement condition* section of `lisa-learnings-audit`, which already retires itself this way; its
174
+ current wording still uses the older three-value "terminal states" vocabulary, and the
175
+ loop-conformance ticket conforms it to the six run outcomes above. A loop proposes retirement when
176
+ BOTH hold:
177
+
178
+ 1. **Quiet trailing window** — a date-filtered tracker search finds nothing this loop produced
179
+ within its trailing quiet window (sized to a small multiple of its cadence).
180
+ 2. **This run proposes nothing** — the current run yields zero candidates (it is otherwise ending
181
+ `nothing-needed`).
182
+
183
+ When both hold, the run ends `policy-obsolete` and files **exactly ONE marker-deduped**
184
+ teardown-proposal item — matched on the marker, never the title — carrying the date-filtered search
185
+ result and this run's summary as evidence, and proposing either a longer cadence or
186
+ `lisa-tear-down-automations`. The loop **keeps running at its normal cadence** until an operator
187
+ flips that proposal one of three ways: **approve** it (`lisa-tear-down-automations` runs and the
188
+ registration goes away), **decline** it (close the proposal — the loop simply continues), or
189
+ **re-cadence** it (register it at the longer cadence instead of tearing it down). Retirement is a
190
+ recommendation like any other, **never a self-executed exit**: a loop never deletes its own
191
+ registration, and a proposal nobody answers changes nothing.
192
+
193
+ ## Never block, always degrade
194
+
195
+ A loop degrades rather than blocking. Three triggers are expected and must never crash a run:
196
+
197
+ - **A missing runbook** — the loop runs on the contract's defaults and says so.
198
+ - **An unreadable record surface** — the loop still reports its outcome and summary in its own run
199
+ output, so the operator is never left with silence.
200
+ - **An absent optional dependency** — a skill or surface that ships with a sibling ticket is not
201
+ yet installed; the loop skips that enrichment and continues.
202
+
203
+ A degraded run still **reports its actual outcome from the same six values** — degradation does not
204
+ mint a seventh token and, on its own, is not `recovery-required`. Its one-line summary **leads with
205
+ the degradation**, then states the outcome:
206
+
207
+ ```text
208
+ Runbook missing — ran on defaults; nothing to propose.
209
+ ```
210
+
211
+ Degradation becomes `recovery-required` only when it prevents the loop from doing its actual job
212
+ (the queue itself is unreadable, credentials are revoked) — and then it escalates the decision-ready
213
+ packet above. A degraded run never blocks other work and never leaves the run unreported.
214
+
215
+ ## Citing adjacent work
216
+
217
+ Cite these by name; each ships with its own ticket, do not assume its file is present in this
218
+ branch: the runbook scaffolding that instantiates this template (#1796), the run-record substrate
219
+ that stores outcomes and summaries (#1797), and the evidence packet defined by the evidence PRD
220
+ (#1738) — named here, with no evidence format defined by this contract. Rejection memory
221
+ extends `rejection-detection`; this contract neither restates nor overrides it.
@@ -0,0 +1,66 @@
1
+ ---
2
+ description: "Automation Runbook Contract (load-bearing)"
3
+ alwaysApply: true
4
+ ---
5
+
6
+ # Automation Runbook Contract (load-bearing)
7
+
8
+ **Every registered automation loop carries a checked-in runbook, and every run of that loop ends in
9
+ exactly one of six run outcomes** with a one-line, operator-readable summary. A registered loop with
10
+ no runbook, or a run that stops without naming its outcome, is a contract violation.
11
+
12
+ **One vendor-neutral contract, to be cited by (wired in the loop-conformance ticket)
13
+ `lisa-setup-automations`, `lisa-automation-status`, `lisa-tear-down-automations`, and every
14
+ registered loop skill** (the `leaf-only-lifecycle` / `repo-scope-split` precedent: one shared slug,
15
+ never divergent per-loop prose).
16
+
17
+ ## Membership
18
+
19
+ Membership is **registration, not skill-existence**: a loop is under this contract the moment it is
20
+ registered as a scheduled automation, and registering a new one pulls it in automatically. There is
21
+ no hardcoded roster of loops anywhere.
22
+
23
+ ## The six run outcomes
24
+
25
+ Exactly one per run:
26
+ **`nothing-needed | candidate-proposed | change-proved | approval-requested | recovery-required | policy-obsolete`**
27
+
28
+ Health and operator action are **orthogonal** — a healthy run can still need an answer:
29
+
30
+ - `nothing-needed` — the loop ran and found nothing to act on. **Healthy.** Operator action: none.
31
+ - `candidate-proposed` — the loop proposed work (ticket, PRD, recommendation). **Healthy.** Operator
32
+ action: review the proposed item and flip it ready when you want it built.
33
+ - `change-proved` — the loop made a change and proved it with evidence. **Healthy.** Operator
34
+ action: none (informational).
35
+ - `approval-requested` — the loop reached a boundary it may not cross alone. **Healthy.** Operator
36
+ action: answer the approval question.
37
+ - `recovery-required` — the loop itself could not complete (access, tooling, or substrate broken)
38
+ and escalated a decision-ready packet. **Not healthy.** Operator action: restore the named
39
+ capability, then close the escalation item.
40
+ - `policy-obsolete` — the loop's own retirement policy (the retirement condition written in its
41
+ runbook) tripped, so it proposed its own teardown. **Healthy.** Operator action: approve the
42
+ teardown, decline it (close the proposal; the loop keeps running at cadence), or re-cadence it.
43
+
44
+ ## A run outcome is NOT a work-item lifecycle terminal state (CRITICAL)
45
+
46
+ A **run outcome** describes the LOOP ITERATION. A **terminal state** describes a TICKET — Lisa
47
+ already uses that phrase for work-item lifecycles (`lisa-intake`: "`Blocked` is a valid terminal
48
+ state of the downstream lifecycles"). The two vocabularies never merge in an operator-facing report.
49
+ A healthy cycle that routes a work item to `Blocked` with clarifying questions is
50
+ `candidate-proposed` — it produced something — so it is **never `nothing-needed`**, which is
51
+ reserved for runs that found nothing at all, and **never `recovery-required`**, which means the
52
+ loop itself is broken, not that a work item was blocked.
53
+
54
+ ## No silent exit
55
+
56
+ Every run — including a trivial early termination — ends by naming exactly one run outcome plus a
57
+ one-line operator summary of what happened, recorded where the status surface can read it —
58
+ there is no silent exit. Silence and health must never look identical to an operator.
59
+
60
+ ## Never block, always degrade
61
+
62
+ A missing runbook, an unreadable record surface, or an absent optional dependency **degrades** the
63
+ run — say so in the summary and finish with an outcome — it never crashes the loop, never blocks
64
+ other work, and never leaves the run unreported.
65
+
66
+ Full contract (template, outcome definitions, escalation packet, retirement): [reference/automation-runbook-contract.md](automation-runbook-contract-reference.mdc).
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Expo and React Native-specific skills, agents, rules, and MCP servers.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-harper-fabric",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Harper/Fabric-specific rules for TypeScript component apps",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-harper-fabric",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Harper/Fabric-specific Lisa rules for TypeScript component apps.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-harper-fabric",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Harper/Fabric-specific rules for TypeScript component apps",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-harper-fabric",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Harper/Fabric-specific rules for TypeScript component apps",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-harper-fabric",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Harper/Fabric-specific rules for TypeScript component apps",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "NestJS-specific skills and migration write-protection hooks.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-openclaw",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-openclaw",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, across Claude and Codex.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-openclaw",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-openclaw",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-openclaw",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Connect staff roles to Telegram or Slack via OpenClaw — facilitator/specialist hub-and-spoke routing and repo-coding topics, for Claude Code and Codex",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-phaser",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Phaser 4 game-development rules for TypeScript projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-phaser",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Phaser 4 game-development rules for TypeScript projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-phaser",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Phaser 4 game-development rules for TypeScript projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-phaser",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Phaser 4 game-development rules for TypeScript projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-phaser",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Phaser 4 game-development rules for TypeScript projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Ruby on Rails-specific skills and hooks for RuboCop and ast-grep scanning on edit.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, ast-grep scanning, and error-suppression blocking on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "TypeScript-specific hooks for formatting, linting, and ast-grep scanning on edit.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, ast-grep scanning, and error-suppression blocking on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, ast-grep scanning, and error-suppression blocking on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, ast-grep scanning, and error-suppression blocking on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-wiki",
3
- "version": "2.251.0",
3
+ "version": "2.252.0",
4
4
  "description": "LLM Wiki — a distributable, git-native markdown knowledge base for Claude Code and Codex",
5
5
  "author": {
6
6
  "name": "Cody Swann"