@codyswann/lisa 1.84.0 → 1.85.1

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.
@@ -8,26 +8,26 @@
8
8
  "maestro:test": "maestro test .maestro/flows",
9
9
  "maestro:test:smoke": "maestro test .maestro/flows --include-tags=smoke",
10
10
  "maestro:studio": "maestro studio",
11
- "start:local": "cp .env.localhost .env.local && EXPO_ATLAS=true expo start",
12
- "start:dev": "EXPO_ATLAS=true cp .env.development .env.local && EXPO_ATLAS=true expo start",
13
- "start:staging": "cp .env.staging .env.local && EXPO_ATLAS=true expo start",
14
- "start:production": "cp .env.production .env.local && EXPO_ATLAS=true expo start",
15
- "start:simulator:ios:local": "cp .env.localhost .env.local && EXPO_ATLAS=true expo start --ios",
16
- "start:simulator:ios:dev": "cp .env.development .env.local && EXPO_ATLAS=true expo start --ios",
17
- "start:simulator:ios:staging": "cp .env.staging .env.local && EXPO_ATLAS=true expo start --ios",
18
- "start:simulator:ios:production": "cp .env.production .env.local && EXPO_ATLAS=true expo start --ios",
19
- "start:simulator:android:local": "cp .env.localhost .env.local && EXPO_ATLAS=true expo start --android",
20
- "start:simulator:android:dev": "cp .env.development .env.local && EXPO_ATLAS=true expo start --android",
21
- "start:simulator:android:staging": "cp .env.staging .env.local && EXPO_ATLAS=true expo start --android",
22
- "start:simulator:android:production": "cp .env.production .env.local && EXPO_ATLAS=true expo start --android",
23
- "build-and-run:simulator:ios:local": "cp .env.localhost .env.local && expo run:ios",
24
- "build-and-run:simulator:ios:dev": "cp .env.development .env.local && expo run:ios",
25
- "build-and-run:simulator:ios:staging": "cp .env.staging .env.local && expo run:ios",
26
- "build-and-run:simulator:ios:production": "cp .env.production .env.local && expo run:ios",
27
- "build-and-run:simulator:android:local": "cp .env.localhost .env.local && expo run:android",
28
- "build-and-run:simulator:android:dev": "cp .env.development .env.local && expo run:android",
29
- "build-and-run:simulator:android:staging": "cp .env.staging .env.local && expo run:android",
30
- "build-and-run:simulator:android:production": "cp .env.production .env.local && expo run:android",
11
+ "start:local": "cp .env.localhost .env.local && STAGE=local EXPO_ATLAS=true expo start",
12
+ "start:dev": "cp .env.development .env.local && STAGE=development EXPO_ATLAS=true expo start",
13
+ "start:staging": "cp .env.staging .env.local && STAGE=staging EXPO_ATLAS=true expo start",
14
+ "start:production": "cp .env.production .env.local && STAGE=production EXPO_ATLAS=true expo start",
15
+ "start:simulator:ios:local": "cp .env.localhost .env.local && STAGE=local EXPO_ATLAS=true expo start --ios",
16
+ "start:simulator:ios:dev": "cp .env.development .env.local && STAGE=development EXPO_ATLAS=true expo start --ios",
17
+ "start:simulator:ios:staging": "cp .env.staging .env.local && STAGE=staging EXPO_ATLAS=true expo start --ios",
18
+ "start:simulator:ios:production": "cp .env.production .env.local && STAGE=production EXPO_ATLAS=true expo start --ios",
19
+ "start:simulator:android:local": "cp .env.localhost .env.local && STAGE=local EXPO_ATLAS=true expo start --android",
20
+ "start:simulator:android:dev": "cp .env.development .env.local && STAGE=development EXPO_ATLAS=true expo start --android",
21
+ "start:simulator:android:staging": "cp .env.staging .env.local && STAGE=staging EXPO_ATLAS=true expo start --android",
22
+ "start:simulator:android:production": "cp .env.production .env.local && STAGE=production EXPO_ATLAS=true expo start --android",
23
+ "build-and-run:simulator:ios:local": "cp .env.localhost .env.local && STAGE=local expo run:ios",
24
+ "build-and-run:simulator:ios:dev": "cp .env.development .env.local && STAGE=development expo run:ios",
25
+ "build-and-run:simulator:ios:staging": "cp .env.staging .env.local && STAGE=staging expo run:ios",
26
+ "build-and-run:simulator:ios:production": "cp .env.production .env.local && STAGE=production expo run:ios",
27
+ "build-and-run:simulator:android:local": "cp .env.localhost .env.local && STAGE=local expo run:android",
28
+ "build-and-run:simulator:android:dev": "cp .env.development .env.local && STAGE=development expo run:android",
29
+ "build-and-run:simulator:android:staging": "cp .env.staging .env.local && STAGE=staging expo run:android",
30
+ "build-and-run:simulator:android:production": "cp .env.production .env.local && STAGE=production expo run:android",
31
31
  "build-and-run:local:android": "expo run:android",
32
32
  "build-and-run:local:ios": "expo run:ios",
33
33
  "fetch:graphql:schema:dev": "./scripts/fetch-graphql-schema.sh development",
package/package.json CHANGED
@@ -65,18 +65,18 @@
65
65
  ],
66
66
  "resolutions": {
67
67
  "@isaacs/brace-expansion": "^5.0.1",
68
- "axios": ">=1.13.5",
68
+ "axios": ">=1.15.0",
69
69
  "flatted": "^3.4.2",
70
70
  "lodash": ">=4.18.1"
71
71
  },
72
72
  "overrides": {
73
73
  "@isaacs/brace-expansion": "^5.0.1",
74
- "axios": ">=1.13.5",
74
+ "axios": ">=1.15.0",
75
75
  "flatted": "^3.4.2",
76
76
  "lodash": ">=4.18.1"
77
77
  },
78
78
  "name": "@codyswann/lisa",
79
- "version": "1.84.0",
79
+ "version": "1.85.1",
80
80
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
81
81
  "main": "dist/index.js",
82
82
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-cdk",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "AWS CDK-specific plugin",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "Expo/React Native-specific skills, agents, rules, and MCP servers",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "Ruby on Rails-specific hooks — RuboCop linting/formatting and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-typescript",
3
- "version": "1.84.0",
3
+ "version": "1.85.1",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -93,6 +93,11 @@
93
93
  "package": "basic-ftp",
94
94
  "reason": "FTP command injection via CRLF requires attacker-controlled FTP command construction. Keep this exclusion only if no production code path uses FTP or passes untrusted input to FTP command parameters."
95
95
  },
96
+ {
97
+ "id": "GHSA-6v7q-wjvx-w8wg",
98
+ "package": "basic-ftp",
99
+ "reason": "FTP command injection via CRLF in credentials/MKD commands requires attacker-controlled FTP parameters. Transitive via @lhci/cli > proxy-agent > pac-proxy-agent > get-uri > basic-ftp. Keep this exclusion only if no production code path uses FTP or passes untrusted input to FTP command parameters."
100
+ },
96
101
  {
97
102
  "id": "GHSA-r5fr-rjxr-66jc",
98
103
  "package": "lodash",
@@ -18,11 +18,11 @@
18
18
  },
19
19
  "resolutions": {
20
20
  "@isaacs/brace-expansion": "^5.0.1",
21
- "axios": ">=1.13.5"
21
+ "axios": ">=1.15.0"
22
22
  },
23
23
  "overrides": {
24
24
  "@isaacs/brace-expansion": "^5.0.1",
25
- "axios": ">=1.13.5"
25
+ "axios": ">=1.15.0"
26
26
  }
27
27
  },
28
28
  "defaults": {