@codyswann/lisa 2.203.0 → 2.204.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/nestjs/create-only/.github/workflows/deploy.yml +69 -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
|
@@ -249,12 +249,81 @@ jobs:
|
|
|
249
249
|
bun-version: '1.3.8'
|
|
250
250
|
- name: Install dependencies
|
|
251
251
|
run: bun install
|
|
252
|
+
- name: Materialize dotenv env file
|
|
253
|
+
if: ${{ vars.DOTENV_ENV_MATERIALIZATION_KEYS != '' }}
|
|
254
|
+
shell: bash
|
|
255
|
+
env:
|
|
256
|
+
DOTENV_ENV_MATERIALIZATION_KEYS: ${{ vars.DOTENV_ENV_MATERIALIZATION_KEYS }}
|
|
257
|
+
DOTENV_ENV_FILE: ${{ vars.DOTENV_ENV_FILE || '.env.local' }}
|
|
258
|
+
# Optional project mapping for serverless-dotenv-plugin projects:
|
|
259
|
+
# DOTENV_ENV_MATERIALIZATION_KEYS="API_URL JWT_SECRET"
|
|
260
|
+
# API_URL: ${{ vars.API_URL }}
|
|
261
|
+
# JWT_SECRET: ${{ secrets.JWT_SECRET }}
|
|
262
|
+
run: |
|
|
263
|
+
set -euo pipefail
|
|
264
|
+
: > "$DOTENV_ENV_FILE"
|
|
265
|
+
wrote_any=false
|
|
266
|
+
|
|
267
|
+
for key in $DOTENV_ENV_MATERIALIZATION_KEYS; do
|
|
268
|
+
value="${!key:-}"
|
|
269
|
+
if [ -z "$value" ]; then
|
|
270
|
+
echo "::notice::Skipping empty dotenv key: $key"
|
|
271
|
+
continue
|
|
272
|
+
fi
|
|
273
|
+
printf '%s=%s\n' "$key" "$value" >> "$DOTENV_ENV_FILE"
|
|
274
|
+
wrote_any=true
|
|
275
|
+
done
|
|
276
|
+
|
|
277
|
+
if [ "$wrote_any" != "true" ]; then
|
|
278
|
+
rm -f "$DOTENV_ENV_FILE"
|
|
279
|
+
echo "::notice::No dotenv values were materialized"
|
|
280
|
+
fi
|
|
252
281
|
- name: serverless deploy
|
|
253
282
|
run: |
|
|
254
283
|
bun run serverless deploy --stage ${{ github.ref_name != 'main' && github.ref_name || 'production' }}
|
|
255
284
|
env:
|
|
256
285
|
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
|
|
257
286
|
AWS_PROFILE: '' # Override serverless.yml profile with empty string for CI
|
|
287
|
+
- name: Post-deploy health smoke
|
|
288
|
+
if: ${{ vars.POST_DEPLOY_HEALTH_CHECK_ENABLED == 'true' }}
|
|
289
|
+
shell: bash
|
|
290
|
+
env:
|
|
291
|
+
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
|
|
292
|
+
AWS_PROFILE: ''
|
|
293
|
+
HEALTH_OUTPUT_KEY: ${{ vars.POST_DEPLOY_HEALTH_OUTPUT_KEY || 'HttpApiUrl' }}
|
|
294
|
+
HEALTH_PATH: ${{ vars.POST_DEPLOY_HEALTH_PATH || '/health' }}
|
|
295
|
+
HEALTH_EXPECTED_BODY: ${{ vars.POST_DEPLOY_HEALTH_EXPECTED_BODY }}
|
|
296
|
+
SERVERLESS_STACK_NAME: ${{ vars.SERVERLESS_STACK_NAME }}
|
|
297
|
+
STAGE: ${{ github.ref_name != 'main' && github.ref_name || 'production' }}
|
|
298
|
+
run: |
|
|
299
|
+
set -euo pipefail
|
|
300
|
+
|
|
301
|
+
stack_name="$SERVERLESS_STACK_NAME"
|
|
302
|
+
if [ -z "$stack_name" ]; then
|
|
303
|
+
service_name=$(bun run serverless print --stage "$STAGE" --format json | jq -r '.service // empty')
|
|
304
|
+
if [ -z "$service_name" ]; then
|
|
305
|
+
echo "::error::Set SERVERLESS_STACK_NAME or make serverless print expose .service"
|
|
306
|
+
exit 1
|
|
307
|
+
fi
|
|
308
|
+
stack_name="${service_name}-${STAGE}"
|
|
309
|
+
fi
|
|
310
|
+
|
|
311
|
+
base_url=$(aws cloudformation describe-stacks \
|
|
312
|
+
--stack-name "$stack_name" \
|
|
313
|
+
--query "Stacks[0].Outputs[?OutputKey=='${HEALTH_OUTPUT_KEY}'].OutputValue | [0]" \
|
|
314
|
+
--output text)
|
|
315
|
+
if [ -z "$base_url" ] || [ "$base_url" = "None" ]; then
|
|
316
|
+
echo "::error::CloudFormation output ${HEALTH_OUTPUT_KEY} was not found on ${stack_name}"
|
|
317
|
+
exit 1
|
|
318
|
+
fi
|
|
319
|
+
|
|
320
|
+
health_url="${base_url%/}/${HEALTH_PATH#/}"
|
|
321
|
+
body=$(curl --fail --silent --show-error --max-time 20 "$health_url")
|
|
322
|
+
if [ -n "$HEALTH_EXPECTED_BODY" ] && ! grep -Fq "$HEALTH_EXPECTED_BODY" <<< "$body"; then
|
|
323
|
+
echo "::error::Health check response did not contain expected body"
|
|
324
|
+
exit 1
|
|
325
|
+
fi
|
|
326
|
+
echo "Health check passed: $health_url"
|
|
258
327
|
|
|
259
328
|
- name: 📢 Notify on success
|
|
260
329
|
run: echo "Successfully deployed version ${{ needs.release.outputs.version }} to ${{ needs.determine_environment.outputs.environment }}"
|
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.204.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.204.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.204.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.204.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.204.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.204.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"
|