@codyswann/lisa 2.25.1 → 2.25.3
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/cdk/create-only/.github/workflows/ci.yml +3 -2
- package/expo/create-only/.github/workflows/deploy.yml +4 -3
- package/harper-fabric/package-lisa/package.lisa.json +20 -20
- package/nestjs/create-only/.github/workflows/deploy.yml +7 -6
- 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-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-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-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-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-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-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-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/ci/lisa-wiki-validate.yml +3 -2
- package/plugins/src/wiki/ci/lisa-wiki-validate.yml +3 -2
- package/rails/create-only/.github/workflows/deploy.yml +1 -1
|
@@ -76,11 +76,12 @@ jobs:
|
|
|
76
76
|
contents: read
|
|
77
77
|
steps:
|
|
78
78
|
- name: 📥 Checkout
|
|
79
|
-
uses: actions/checkout@
|
|
79
|
+
uses: actions/checkout@v6
|
|
80
80
|
|
|
81
81
|
- name: 🔧 Setup Node.js
|
|
82
|
-
uses: actions/setup-node@
|
|
82
|
+
uses: actions/setup-node@v6
|
|
83
83
|
with:
|
|
84
|
+
package-manager-cache: false
|
|
84
85
|
node-version: '22.21.1'
|
|
85
86
|
|
|
86
87
|
- name: 📦 Install dependencies
|
|
@@ -107,7 +107,7 @@ jobs:
|
|
|
107
107
|
app_config_changed: ${{ steps.check_changes.outputs.app_config_changed }}
|
|
108
108
|
steps:
|
|
109
109
|
- name: 📥 Checkout
|
|
110
|
-
uses: actions/checkout@
|
|
110
|
+
uses: actions/checkout@v6
|
|
111
111
|
with:
|
|
112
112
|
fetch-depth: 2
|
|
113
113
|
|
|
@@ -151,12 +151,13 @@ jobs:
|
|
|
151
151
|
needs.release.result == 'success'
|
|
152
152
|
steps:
|
|
153
153
|
- name: Checkout repository
|
|
154
|
-
uses: actions/checkout@
|
|
154
|
+
uses: actions/checkout@v6
|
|
155
155
|
with:
|
|
156
156
|
ref: ${{ github.ref }} # Use branch HEAD to include version bump from release job
|
|
157
157
|
- name: 🔧 Setup Node.js
|
|
158
|
-
uses: actions/setup-node@
|
|
158
|
+
uses: actions/setup-node@v6
|
|
159
159
|
with:
|
|
160
|
+
package-manager-cache: false
|
|
160
161
|
node-version: '22.21.1'
|
|
161
162
|
- name: 🍞 Setup Bun
|
|
162
163
|
uses: oven-sh/setup-bun@v2
|
|
@@ -72,26 +72,26 @@
|
|
|
72
72
|
},
|
|
73
73
|
"defaults": {
|
|
74
74
|
"scripts": {
|
|
75
|
-
"build": "tsc && node dist/
|
|
76
|
-
"seed": "bun run build && node dist/
|
|
77
|
-
"verify": "bun run build && node dist/
|
|
78
|
-
"seed:rest": "bun run build && node dist/
|
|
79
|
-
"verify:rest": "bun run build && node dist/
|
|
80
|
-
"preview": "bun run build && node dist/
|
|
81
|
-
"dev:server": "bun run build && node dist/
|
|
82
|
-
"deploy": "bun run build && node dist/
|
|
83
|
-
"smoke": "bun run build &&
|
|
84
|
-
"smoke:brokercheck": "bun run build &&
|
|
85
|
-
"token": "bun run build && node dist/
|
|
86
|
-
"crawl:wpjson": "bun run build && node dist/
|
|
87
|
-
"crawl:html": "bun run build && node dist/
|
|
88
|
-
"crawl:playwright": "bun run build && node dist/
|
|
89
|
-
"extract:fields": "bun run build && node dist/
|
|
90
|
-
"extract:helper": "bun run build && node dist/
|
|
91
|
-
"ingest": "bun run build && node dist/
|
|
92
|
-
"load:extractions": "bun run build && node dist/
|
|
93
|
-
"brokercheck": "bun run build && node dist/
|
|
94
|
-
"brokercheck:crawl": "bun run build && node dist/
|
|
75
|
+
"build": "tsc && node dist/build/build.js",
|
|
76
|
+
"seed": "bun run build && node dist/scripts/seed.js",
|
|
77
|
+
"verify": "bun run build && node dist/scripts/verify.js",
|
|
78
|
+
"seed:rest": "bun run build && node dist/scripts/seed_via_rest.js",
|
|
79
|
+
"verify:rest": "bun run build && node dist/scripts/verify_via_rest.js",
|
|
80
|
+
"preview": "bun run build && node dist/scripts/preview_feed.js",
|
|
81
|
+
"dev:server": "bun run build && node dist/scripts/dev_server.js",
|
|
82
|
+
"deploy": "bun run build && node dist/scripts/deploy.js",
|
|
83
|
+
"smoke": "bun run build && bun tests/web_smoke.ts",
|
|
84
|
+
"smoke:brokercheck": "bun run build && bun tests/brokercheck_web_smoke.ts",
|
|
85
|
+
"token": "bun run build && node dist/scripts/get_token.js",
|
|
86
|
+
"crawl:wpjson": "bun run build && node dist/scripts/crawl_via_wpjson.js",
|
|
87
|
+
"crawl:html": "bun run build && node dist/scripts/crawl_html.js",
|
|
88
|
+
"crawl:playwright": "bun run build && node dist/scripts/crawl_playwright.js",
|
|
89
|
+
"extract:fields": "bun run build && node dist/scripts/extract_fields.js",
|
|
90
|
+
"extract:helper": "bun run build && node dist/scripts/extract_helper.js",
|
|
91
|
+
"ingest": "bun run build && node dist/scripts/ingest.js",
|
|
92
|
+
"load:extractions": "bun run build && node dist/scripts/load_extractions.js",
|
|
93
|
+
"brokercheck": "bun run build && node dist/scripts/fetch_brokercheck.js",
|
|
94
|
+
"brokercheck:crawl": "bun run build && node dist/scripts/brokercheck_crawl_all.js"
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
97
|
}
|
|
@@ -86,7 +86,7 @@ jobs:
|
|
|
86
86
|
has_aws_credentials: ${{ steps.check.outputs.has_aws_credentials }}
|
|
87
87
|
steps:
|
|
88
88
|
- name: Checkout
|
|
89
|
-
uses: actions/checkout@
|
|
89
|
+
uses: actions/checkout@v6
|
|
90
90
|
- uses: noliran/branch-based-secrets@v1
|
|
91
91
|
with:
|
|
92
92
|
secrets: AWS_ACCOUNT_ID
|
|
@@ -110,7 +110,7 @@ jobs:
|
|
|
110
110
|
requires_migration: ${{ steps.check.outputs.requires_migration }}
|
|
111
111
|
steps:
|
|
112
112
|
- name: Checkout
|
|
113
|
-
uses: actions/checkout@
|
|
113
|
+
uses: actions/checkout@v6
|
|
114
114
|
- id: check
|
|
115
115
|
run: |
|
|
116
116
|
if [[ -z "${SKIP_MIGRATIONS}" ]]; then
|
|
@@ -132,7 +132,7 @@ jobs:
|
|
|
132
132
|
has_vpn_setup: ${{ steps.check.outputs.has_vpn_setup }}
|
|
133
133
|
steps:
|
|
134
134
|
- name: Checkout
|
|
135
|
-
uses: actions/checkout@
|
|
135
|
+
uses: actions/checkout@v6
|
|
136
136
|
- uses: noliran/branch-based-secrets@v1
|
|
137
137
|
with:
|
|
138
138
|
secrets: OVPN_CONFIG
|
|
@@ -155,7 +155,7 @@ jobs:
|
|
|
155
155
|
id-token: write # needed to interact with GitHub's OIDC Token endpoint.
|
|
156
156
|
contents: read
|
|
157
157
|
steps:
|
|
158
|
-
- uses: actions/checkout@
|
|
158
|
+
- uses: actions/checkout@v6
|
|
159
159
|
- uses: noliran/branch-based-secrets@v1
|
|
160
160
|
with:
|
|
161
161
|
secrets: AWS_ACCOUNT_ID
|
|
@@ -205,11 +205,12 @@ jobs:
|
|
|
205
205
|
id-token: write # needed to interact with GitHub's OIDC Token endpoint
|
|
206
206
|
contents: read
|
|
207
207
|
steps:
|
|
208
|
-
- uses: actions/checkout@
|
|
208
|
+
- uses: actions/checkout@v6
|
|
209
209
|
- name: Use Node.js 22.21.1
|
|
210
|
-
uses: actions/setup-node@
|
|
210
|
+
uses: actions/setup-node@v6
|
|
211
211
|
with:
|
|
212
212
|
node-version: 22.21.1
|
|
213
|
+
package-manager-cache: false
|
|
213
214
|
- uses: noliran/branch-based-secrets@v1
|
|
214
215
|
with:
|
|
215
216
|
secrets: AWS_ACCOUNT_ID
|
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"lodash": ">=4.18.1"
|
|
83
83
|
},
|
|
84
84
|
"name": "@codyswann/lisa",
|
|
85
|
-
"version": "2.25.
|
|
85
|
+
"version": "2.25.3",
|
|
86
86
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
87
87
|
"main": "dist/index.js",
|
|
88
88
|
"exports": {
|
|
@@ -20,10 +20,11 @@ jobs:
|
|
|
20
20
|
env:
|
|
21
21
|
LISA_WIKI_SCRIPTS: ${{ vars.LISA_WIKI_SCRIPTS || '.lisa-wiki/scripts' }}
|
|
22
22
|
steps:
|
|
23
|
-
- uses: actions/checkout@
|
|
24
|
-
- uses: actions/setup-node@
|
|
23
|
+
- uses: actions/checkout@v6
|
|
24
|
+
- uses: actions/setup-node@v6
|
|
25
25
|
with:
|
|
26
26
|
node-version: '22'
|
|
27
|
+
package-manager-cache: false
|
|
27
28
|
|
|
28
29
|
- name: Validate config
|
|
29
30
|
run: node "$LISA_WIKI_SCRIPTS/validate-config.mjs" wiki/lisa-wiki.config.json
|
|
@@ -20,10 +20,11 @@ jobs:
|
|
|
20
20
|
env:
|
|
21
21
|
LISA_WIKI_SCRIPTS: ${{ vars.LISA_WIKI_SCRIPTS || '.lisa-wiki/scripts' }}
|
|
22
22
|
steps:
|
|
23
|
-
- uses: actions/checkout@
|
|
24
|
-
- uses: actions/setup-node@
|
|
23
|
+
- uses: actions/checkout@v6
|
|
24
|
+
- uses: actions/setup-node@v6
|
|
25
25
|
with:
|
|
26
26
|
node-version: '22'
|
|
27
|
+
package-manager-cache: false
|
|
27
28
|
|
|
28
29
|
- name: Validate config
|
|
29
30
|
run: node "$LISA_WIKI_SCRIPTS/validate-config.mjs" wiki/lisa-wiki.config.json
|