@codyswann/lisa 2.207.0 → 2.209.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/expo/create-only/.github/workflows/maestro-e2e.yml +63 -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
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
name: 📱 Maestro Native E2E
|
|
2
|
+
|
|
3
|
+
# Native (iOS + Android) e2e suite on GitHub-hosted runners — the
|
|
4
|
+
# self-hosted alternative to Maestro Cloud. Playwright in ci.yml covers web;
|
|
5
|
+
# this workflow is the native counterpart. Too heavy to gate PRs: it runs
|
|
6
|
+
# nightly plus on-demand via workflow_dispatch.
|
|
7
|
+
#
|
|
8
|
+
# The heavy lifting lives in Lisa's reusable maestro-native-e2e.yml (EAS
|
|
9
|
+
# build, Android emulator, iOS simulator, JUnit reports, and graceful
|
|
10
|
+
# skipping while prerequisites are missing). This caller owns the cadence
|
|
11
|
+
# and the project-specific values.
|
|
12
|
+
#
|
|
13
|
+
# To wire this project up:
|
|
14
|
+
# 1. Add a `dev-e2e` build profile to eas.json (non-dev-client, dev
|
|
15
|
+
# backend, its own update channel so an OTA never overwrites the code
|
|
16
|
+
# under test).
|
|
17
|
+
# 2. Provision the EXPO_TOKEN repository secret.
|
|
18
|
+
# 3. Put flows in .maestro/flows. Until 1-3 are done, runs skip with a
|
|
19
|
+
# warning instead of failing.
|
|
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
|
+
# and an optional setup_command for dynamic seed data. Sensitive values
|
|
23
|
+
# (test-account passwords) go in a MAESTRO_SECRET_ENV repository secret
|
|
24
|
+
# — same newline-separated KEY=VALUE format — passed through below.
|
|
25
|
+
|
|
26
|
+
on:
|
|
27
|
+
schedule:
|
|
28
|
+
# Nightly against the default branch. Offset from other nightly suites
|
|
29
|
+
# (e.g. a Playwright nightly) so backend load doesn't overlap.
|
|
30
|
+
- cron: '0 9 * * *'
|
|
31
|
+
workflow_dispatch:
|
|
32
|
+
inputs:
|
|
33
|
+
platform:
|
|
34
|
+
description: 'Platform(s) to run'
|
|
35
|
+
type: choice
|
|
36
|
+
default: all
|
|
37
|
+
options:
|
|
38
|
+
- all
|
|
39
|
+
- android
|
|
40
|
+
- ios
|
|
41
|
+
|
|
42
|
+
permissions:
|
|
43
|
+
contents: read
|
|
44
|
+
|
|
45
|
+
concurrency:
|
|
46
|
+
group: maestro-e2e-${{ github.ref }}
|
|
47
|
+
cancel-in-progress: false
|
|
48
|
+
|
|
49
|
+
jobs:
|
|
50
|
+
maestro:
|
|
51
|
+
name: 📱 Maestro Native E2E
|
|
52
|
+
uses: CodySwannGT/lisa/.github/workflows/maestro-native-e2e.yml@main
|
|
53
|
+
with:
|
|
54
|
+
platform: ${{ inputs.platform || 'all' }}
|
|
55
|
+
# android_app_id: 'com.example.app'
|
|
56
|
+
# ios_app_id: 'com.example.app'
|
|
57
|
+
# maestro_env: |
|
|
58
|
+
# MAESTRO_TEST_PHONE=0000000000
|
|
59
|
+
# MAESTRO_TEST_OTP=555555
|
|
60
|
+
# setup_command: node scripts/maestro/resolve-seed-data.mjs
|
|
61
|
+
secrets:
|
|
62
|
+
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
|
|
63
|
+
MAESTRO_SECRET_ENV: ${{ secrets.MAESTRO_SECRET_ENV }}
|
package/package.json
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"ws": ">=8.20.1"
|
|
96
96
|
},
|
|
97
97
|
"name": "@codyswann/lisa",
|
|
98
|
-
"version": "2.
|
|
98
|
+
"version": "2.209.0",
|
|
99
99
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
100
100
|
"main": "dist/index.js",
|
|
101
101
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.209.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.
|
|
3
|
+
"version": "2.209.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.
|
|
3
|
+
"version": "2.209.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.
|
|
3
|
+
"version": "2.209.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.
|
|
3
|
+
"version": "2.209.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"
|