@codyswann/lisa 1.31.0 → 1.31.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.
@@ -10,6 +10,21 @@ The following files are managed by Lisa and will be overwritten on every `lisa`
10
10
  | `jest.config.ts` | `jest.config.local.ts` |
11
11
  | `tsconfig.json` | `tsconfig.local.json` |
12
12
  | `eslint.ignore.config.json` | `eslint.config.local.ts` |
13
+
14
+ ## Create-only files (edit freely, Lisa won't overwrite)
15
+
16
+ - `.claude/rules/PROJECT_RULES.md`
17
+ - `eslint.thresholds.json`
18
+ - `jest.thresholds.json`
19
+
20
+ ## Directories with both Lisa-managed and project content
21
+
22
+ These directories contain files deployed by Lisa **and** files you create. Do not edit or delete Lisa-managed files — they will be overwritten. You **can** freely add your own. Check `.lisa-manifest` to see which specific files Lisa manages.
23
+
24
+ - `.claude/skills/` — Add your own skill directories alongside Lisa's
25
+ - `.claude/commands/` — Add your own command namespaces alongside Lisa's
26
+ - `.claude/hooks/` — Add your own hook scripts alongside Lisa's
27
+ - `.claude/agents/` — Add your own agent files alongside Lisa's
13
28
  | `eslint.thresholds.json` | Edit directly (create-only, Lisa won't overwrite) |
14
29
  | `jest.thresholds.json` | Edit directly (create-only, Lisa won't overwrite) |
15
30
  | `.claude/rules/coding-philosophy.md` | `.claude/rules/PROJECT_RULES.md` |
@@ -19,6 +34,7 @@ The following files are managed by Lisa and will be overwritten on every `lisa`
19
34
 
20
35
  ## Files and directories with NO local override (do not edit at all)
21
36
 
37
+ - `.claude/rules/coding-philosophy.md`, `.claude/rules/plan.md`, `.claude/rules/verfication.md`
22
38
  - `CLAUDE.md`, `HUMAN.md`, `.safety-net.json`
23
39
  - `.prettierrc.json`, `.prettierignore`, `.lintstagedrc.json`, `.versionrc`, `.nvmrc`
24
40
  - `.yamllint`, `.gitleaksignore`, `commitlint.config.cjs`, `sgconfig.yml`, `knip.json`
@@ -27,7 +43,7 @@ The following files are managed by Lisa and will be overwritten on every `lisa`
27
43
  - `tsconfig.base.json`, `tsconfig.typescript.json`, `tsconfig.expo.json`, `tsconfig.nestjs.json`, `tsconfig.cdk.json`
28
44
  - `tsconfig.eslint.json`, `tsconfig.build.json`, `tsconfig.spec.json`
29
45
  - `eslint-plugin-code-organization/*`, `eslint-plugin-component-structure/*`, `eslint-plugin-ui-standards/*`
30
- - `.claude/settings.json`, `.claude/hooks/*`, `.claude/skills/*` (hyphen-named, e.g. `plan-create`), `.claude/commands/*`, `.claude/agents/*`
46
+ - `.claude/settings.json`
31
47
  - `.claude/README.md`, `.claude/REFERENCE.md`
32
48
  - `.github/workflows/quality.yml`, `.github/workflows/release.yml`, `.github/workflows/claude.yml`
33
49
  - `.github/workflows/build.yml`, `.github/workflows/lighthouse.yml` (Expo)
@@ -185,7 +185,7 @@ Include all required tasks defined in `@.claude/rules/plan-governance.md` (Requi
185
185
 
186
186
  ## Step 10: Implementation Team Instructions
187
187
 
188
- The plan must include instructions to spawn an Agent Team for implementation. Recommend these specialized agents:
188
+ The plan must include explict instructions to "Create an agent team" for implementation. Recommend these specialized agents:
189
189
 
190
190
  | Agent | Use For |
191
191
  |-------|---------|
@@ -70,6 +70,7 @@
70
70
  "@shopify/flash-list",
71
71
  "@shopify/react-native-skia",
72
72
  "aws-exports",
73
+ "axios",
73
74
  "base-64",
74
75
  "baseline-browser-mapping",
75
76
  "date-fns",
package/package.json CHANGED
@@ -88,7 +88,7 @@
88
88
  "@isaacs/brace-expansion": "^5.0.1"
89
89
  },
90
90
  "name": "@codyswann/lisa",
91
- "version": "1.31.0",
91
+ "version": "1.31.1",
92
92
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
93
93
  "main": "dist/index.js",
94
94
  "bin": {
@@ -84,7 +84,12 @@ elif [ "$PACKAGE_MANAGER" = "bun" ]; then
84
84
  # Transitive dependency via @react-native-community/cli (Android/iOS build tooling)
85
85
  # Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
86
86
  # Risk: None - CLI build tool, not a production runtime dependency
87
- if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh; then
87
+
88
+ # Excluding GHSA-43fc-jf86-j433: axios DoS via __proto__ key in mergeConfig
89
+ # Transitive dependency via aws-amplify > @aws-amplify/api-rest > axios
90
+ # bun overrides/resolutions cannot reach nested node_modules copies
91
+ # Risk: Low - only affects server-side mergeConfig with attacker-controlled input
92
+ if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-43fc-jf86-j433; then
88
93
  echo "⚠️ Security audit failed. Please fix high/critical vulnerabilities before pushing."
89
94
  exit 1
90
95
  fi
@@ -1014,7 +1014,12 @@ jobs:
1014
1014
  # Transitive dependency via @react-native-community/cli (Android/iOS build tooling)
1015
1015
  # Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
1016
1016
  # Risk: None - CLI build tool, not a production runtime dependency
1017
- if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh; then
1017
+
1018
+ # Excluding GHSA-43fc-jf86-j433: axios DoS via __proto__ key in mergeConfig
1019
+ # Transitive dependency via aws-amplify > @aws-amplify/api-rest > axios
1020
+ # bun overrides/resolutions cannot reach nested node_modules copies
1021
+ # Risk: Low - only affects server-side mergeConfig with attacker-controlled input
1022
+ if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-43fc-jf86-j433; then
1018
1023
  echo "::warning::Found high or critical vulnerabilities"
1019
1024
  exit 1
1020
1025
  fi
@@ -55,7 +55,8 @@
55
55
  "ts-jest": "^29.4.6"
56
56
  },
57
57
  "resolutions": {
58
- "@isaacs/brace-expansion": "^5.0.1"
58
+ "@isaacs/brace-expansion": "^5.0.1",
59
+ "axios": ">=1.13.5"
59
60
  }
60
61
  },
61
62
  "defaults": {