@codyswann/lisa 3.35.1 → 3.37.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.
- package/dist/core/lisa-owned-hash-ledger.d.ts.map +1 -1
- package/dist/core/lisa-owned-hash-ledger.js +4 -0
- package/dist/core/lisa-owned-hash-ledger.js.map +1 -1
- package/dist/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +10 -4
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/expo/create-only/.github/workflows/maestro-e2e.yml +27 -0
- package/expo/create-only/.github/workflows/nightly-e2e-health.yml +27 -0
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-agy/plugin.json +1 -1
- package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/typescript/copy-overwrite/scripts/check-nightly-e2e-health.mjs +317 -18
- package/typescript/copy-overwrite/scripts/nightly-e2e-suites.schema.json +5 -0
|
@@ -137,6 +137,33 @@ jobs:
|
|
|
137
137
|
# concurrency is free coverage in that case. The cost when on is the suite
|
|
138
138
|
# taking iOS PLUS Android instead of the slower of the two.
|
|
139
139
|
# serialize_platform_legs: true
|
|
140
|
+
#
|
|
141
|
+
# Uncomment when EAS build quota — not build freshness — is what limits
|
|
142
|
+
# this suite. On Expo's Free plan the monthly iOS quota is what stops the
|
|
143
|
+
# nightly running at all, and a rebuild of native inputs that did not
|
|
144
|
+
# change buys nothing. `eas fingerprint:generate` hashes those inputs; a
|
|
145
|
+
# match means the finished binary IS the app this commit would build, so
|
|
146
|
+
# it is downloaded instead of rebuilt. A miss falls back to the latest
|
|
147
|
+
# finished build for the profile, and only then does a fresh build start.
|
|
148
|
+
# Leave it off if your e2e profile embeds the JS bundle: JS-only changes
|
|
149
|
+
# do not move the fingerprint, so reuse would test stale JS.
|
|
150
|
+
# reuse_build_by_fingerprint: true
|
|
151
|
+
#
|
|
152
|
+
# Uncomment to have a failed build say WHY when Expo refuses it for
|
|
153
|
+
# quota. Without this the run reds with a generic build error and the
|
|
154
|
+
# cause is only in the raw log. The cost is that the build's stderr is
|
|
155
|
+
# buffered and replayed at the end rather than streaming live.
|
|
156
|
+
# diagnose_eas_quota_exhaustion: true
|
|
157
|
+
#
|
|
158
|
+
# Uncomment once every flow declares `appId: ${MAESTRO_APP_ID}` and any
|
|
159
|
+
# runFlow-included SUBFLOWS live OUTSIDE .maestro/flows. The app id
|
|
160
|
+
# arrives as `-e MAESTRO_APP_ID=…`, so a flow naming a different variable
|
|
161
|
+
# (or none) launches an EMPTY app id — which Maestro reports as a launch
|
|
162
|
+
# failure naming no cause, after you have already paid for an EAS build
|
|
163
|
+
# and an emulator boot. This turns that into a grep in preflight.
|
|
164
|
+
# `maestro test` recurses, so anything under the flows directory is a
|
|
165
|
+
# flow and is expected to declare an appId.
|
|
166
|
+
# lint_flow_app_id: true
|
|
140
167
|
secrets:
|
|
141
168
|
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
|
|
142
169
|
MAESTRO_SECRET_ENV: ${{ secrets.MAESTRO_SECRET_ENV }}
|
|
@@ -152,6 +152,33 @@ jobs:
|
|
|
152
152
|
# "match": { "mode": "run" },
|
|
153
153
|
# "first_seen": "2026-08-10T00:00:00Z"
|
|
154
154
|
# }
|
|
155
|
+
#
|
|
156
|
+
# DECLARE `min_flows` ONCE YOUR SUITE IS REAL (rows 36-38). A run's
|
|
157
|
+
# conclusion answers "did it pass?" and says nothing about "how much of it
|
|
158
|
+
# ran?". A tag-filtered run of four flows reports `success` under the
|
|
159
|
+
# identical workflow name and is indistinguishable from a full green in
|
|
160
|
+
# `gh run list` — that is not hypothetical, it is what #2704 measured
|
|
161
|
+
# clearing a REQUIRED merge gate in two repositories.
|
|
162
|
+
#
|
|
163
|
+
# {
|
|
164
|
+
# "label": "Maestro native e2e",
|
|
165
|
+
# "workflow": "maestro-e2e.yml",
|
|
166
|
+
# "match": { "mode": "run" },
|
|
167
|
+
# "min_flows": 60
|
|
168
|
+
# }
|
|
169
|
+
#
|
|
170
|
+
# It is deliberately NOT set below. This template ships to a repo with no
|
|
171
|
+
# suite yet, and a floor guessed on its behalf would red-wall the first
|
|
172
|
+
# adopter — the same mistake as a default `workflow` that does not exist.
|
|
173
|
+
# Read the real number off a full night's `maestro-<platform>-flowcount-<N>`
|
|
174
|
+
# artifact, sum the platforms, and set it a little under that so ordinary
|
|
175
|
+
# churn does not redden the gate.
|
|
176
|
+
#
|
|
177
|
+
# Until you do, the gate still rejects a run that recorded ITSELF as
|
|
178
|
+
# tag-filtered (row 36), and every green line says so:
|
|
179
|
+
# `⚠️ scope unverified: this run published no executed-flow count`.
|
|
180
|
+
# Declaring `min_flows` is what turns that notice into a blocking question
|
|
181
|
+
# — and from then on an UNREADABLE count blocks too, which is the point.
|
|
155
182
|
suites: |
|
|
156
183
|
[
|
|
157
184
|
{
|
package/package.json
CHANGED
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"ws": ">=8.21.0"
|
|
134
134
|
},
|
|
135
135
|
"name": "@codyswann/lisa",
|
|
136
|
-
"version": "3.
|
|
136
|
+
"version": "3.37.0",
|
|
137
137
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
138
138
|
"main": "dist/index.js",
|
|
139
139
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.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": "3.
|
|
3
|
+
"version": "3.37.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": "3.
|
|
3
|
+
"version": "3.37.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": "3.
|
|
3
|
+
"version": "3.37.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": "3.
|
|
3
|
+
"version": "3.37.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"
|