@codyswann/lisa 3.5.0 → 3.5.2
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/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +4 -1
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/expo/create-only/.github/workflows/maestro-e2e.yml +33 -5
- 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
|
@@ -18,10 +18,28 @@ name: 📱 Maestro Native E2E
|
|
|
18
18
|
# 3. Put flows in .maestro/flows. Until 1-3 are done, runs skip with a
|
|
19
19
|
# warning instead of failing.
|
|
20
20
|
# 4. Set the app id inputs below (they are forwarded to flows as
|
|
21
|
-
# MAESTRO_APP_ID), plus any variables your flows read via maestro_env
|
|
22
|
-
#
|
|
23
|
-
#
|
|
24
|
-
#
|
|
21
|
+
# MAESTRO_APP_ID), plus any variables your flows read via maestro_env.
|
|
22
|
+
# Sensitive values (test-account passwords) go in a MAESTRO_SECRET_ENV
|
|
23
|
+
# repository secret — same newline-separated KEY=VALUE format — passed
|
|
24
|
+
# through below.
|
|
25
|
+
#
|
|
26
|
+
# TWO SETUP SEAMS — pick the right one, it is not a style choice:
|
|
27
|
+
#
|
|
28
|
+
# pre_suite_command runs ONCE per run, in its own job, before either
|
|
29
|
+
# platform starts. Everything that mutates shared state
|
|
30
|
+
# goes here: data resets, fixture pruning, conditional
|
|
31
|
+
# seeding ("if none exists, create one"), environment
|
|
32
|
+
# leasing. Export values with
|
|
33
|
+
# `echo "MAESTRO_X=$V" >> "$MAESTRO_PRE_SUITE_ENV"`.
|
|
34
|
+
# If it fails, no suite runs — that is deliberate.
|
|
35
|
+
#
|
|
36
|
+
# setup_command runs in EACH platform job, and the two platform jobs
|
|
37
|
+
# run CONCURRENTLY — so it executes twice, at the same
|
|
38
|
+
# time, on two runners. Only idempotent, read-only,
|
|
39
|
+
# per-leg work is safe here. A destructive sweep or a
|
|
40
|
+
# read-modify-write in this seam is a live race: both
|
|
41
|
+
# runners answer "does it exist?" against the same
|
|
42
|
+
# pre-write state and both act on the answer.
|
|
25
43
|
|
|
26
44
|
on:
|
|
27
45
|
schedule:
|
|
@@ -66,7 +84,17 @@ jobs:
|
|
|
66
84
|
# maestro_env: |
|
|
67
85
|
# MAESTRO_TEST_PHONE=0000000000
|
|
68
86
|
# MAESTRO_TEST_OTP=555555
|
|
69
|
-
#
|
|
87
|
+
#
|
|
88
|
+
# Once per run, before either platform starts — resets, sweeps, seeding.
|
|
89
|
+
# pre_suite_command: |
|
|
90
|
+
# node scripts/maestro/prune-e2e-fixtures.mjs
|
|
91
|
+
# SEED=$(node scripts/maestro/resolve-seed-data.mjs)
|
|
92
|
+
# [[ -n "$SEED" ]] || { echo "::error::empty seed id"; exit 1; }
|
|
93
|
+
# echo "MAESTRO_SEED_ID=$SEED" >> "$MAESTRO_PRE_SUITE_ENV"
|
|
94
|
+
# pre_suite_install_dependencies: true # only if it needs node_modules
|
|
95
|
+
#
|
|
96
|
+
# Once per PLATFORM, concurrently — read-only, idempotent work only.
|
|
97
|
+
# setup_command: node scripts/maestro/read-platform-config.mjs
|
|
70
98
|
secrets:
|
|
71
99
|
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
|
|
72
100
|
MAESTRO_SECRET_ENV: ${{ secrets.MAESTRO_SECRET_ENV }}
|
package/package.json
CHANGED
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
122
|
"name": "@codyswann/lisa",
|
|
123
|
-
"version": "3.5.
|
|
123
|
+
"version": "3.5.2",
|
|
124
124
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
125
125
|
"main": "dist/index.js",
|
|
126
126
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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"
|