@codyswann/lisa 3.46.0 → 3.46.2
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/all/copy-overwrite/scripts/lisa-gates.mjs +74 -3
- package/cdk/copy-overwrite/knip.json +1 -0
- package/dist/core/lisa-owned-hash-ledger.d.ts.map +1 -1
- package/dist/core/lisa-owned-hash-ledger.js +2 -0
- package/dist/core/lisa-owned-hash-ledger.js.map +1 -1
- package/dist/core/upstream-evidence-manifest.d.ts.map +1 -1
- package/dist/core/upstream-evidence-manifest.js +13 -9
- package/dist/core/upstream-evidence-manifest.js.map +1 -1
- package/expo/copy-overwrite/eslint.config.ts +18 -13
- package/expo/copy-overwrite/knip.json +9 -1
- package/harper-fabric/copy-overwrite/knip.json +1 -1
- package/nestjs/copy-overwrite/knip.json +1 -0
- package/package.json +7 -3
- package/phaser/copy-overwrite/knip.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
- package/scripts/check-security-floors.mjs +110 -13
- package/typescript/copy-overwrite/knip.json +1 -0
|
@@ -49,20 +49,25 @@ const localIgnores: string[] = existsSync(
|
|
|
49
49
|
|
|
50
50
|
// Type only the managed factory result, then trust project-owned additions at
|
|
51
51
|
// their spread boundary. The double assertion is intentional: one custom-plugin
|
|
52
|
-
// entry can be structurally different enough for a direct cast to raise TS2352
|
|
53
|
-
//
|
|
52
|
+
// entry can be structurally different enough for a direct cast to raise TS2352,
|
|
53
|
+
// and annotating an array that spreads `localConfig` RAW force-conforms the
|
|
54
|
+
// host's local config to the managed factory's return type. Asserting at the
|
|
55
|
+
// spread itself keeps the host's config out of that annotation while the array
|
|
56
|
+
// stays a literal — assembling it by pushing instead would mutate it, which the
|
|
57
|
+
// `functional/immutable-data` rule shipped in this very profile rejects. Do not
|
|
54
58
|
// import `Linter` from "eslint" directly either; that trips knip's
|
|
55
59
|
// unlisted-dependency check.
|
|
56
|
-
const config: ReturnType<typeof getExpoConfig> =
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
const config: ReturnType<typeof getExpoConfig> = [
|
|
61
|
+
...getExpoConfig({
|
|
62
|
+
tsconfigRootDir: __dirname,
|
|
63
|
+
ignorePatterns: [
|
|
64
|
+
...(ignoreConfig.ignores || defaultIgnores),
|
|
65
|
+
...localIgnores,
|
|
66
|
+
],
|
|
67
|
+
thresholds: { ...defaultThresholds, ...thresholdsConfig },
|
|
68
|
+
sourceRoot,
|
|
69
|
+
}),
|
|
70
|
+
...(localConfig as unknown as ReturnType<typeof getExpoConfig>),
|
|
71
|
+
];
|
|
67
72
|
|
|
68
73
|
export default config;
|
|
@@ -75,7 +75,15 @@
|
|
|
75
75
|
"**/metro.config.js",
|
|
76
76
|
"**/babel.config.js"
|
|
77
77
|
],
|
|
78
|
-
"ignoreBinaries": [
|
|
78
|
+
"ignoreBinaries": [
|
|
79
|
+
"ast-grep",
|
|
80
|
+
"audit",
|
|
81
|
+
"eas",
|
|
82
|
+
"maestro",
|
|
83
|
+
"printf",
|
|
84
|
+
"serve",
|
|
85
|
+
"source-map-explorer"
|
|
86
|
+
],
|
|
79
87
|
"ignoreDependencies": [
|
|
80
88
|
"@dnd-kit/modifiers",
|
|
81
89
|
"@expo-google-fonts/inter",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"src/types/harper-schema.ts": ["types"]
|
|
24
24
|
},
|
|
25
25
|
"ignoreDependencies": ["@types/node", "@vitest/coverage-v8"],
|
|
26
|
-
"ignoreBinaries": ["audit", "harperdb", "knip", "playwright", "tsx"],
|
|
26
|
+
"ignoreBinaries": ["audit", "harperdb", "knip", "playwright", "printf", "tsx"],
|
|
27
27
|
"rules": {
|
|
28
28
|
"devDependencies": "off"
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"axios": ">=1.15.2",
|
|
102
102
|
"deepmerge-ts": "^8.0.1",
|
|
103
103
|
"esbuild": ">=0.28.1",
|
|
104
|
+
"eslint-plugin-react-hooks": "^7.0.0",
|
|
104
105
|
"flatted": "^3.4.2",
|
|
105
106
|
"form-data": ">=4.0.6",
|
|
106
107
|
"handlebars": ">=4.7.9",
|
|
@@ -110,7 +111,8 @@
|
|
|
110
111
|
"postcss": ">=8.5.18",
|
|
111
112
|
"undici": "^6.28.0",
|
|
112
113
|
"vite": "$vite",
|
|
113
|
-
"ws": ">=8.21.0"
|
|
114
|
+
"ws": ">=8.21.0",
|
|
115
|
+
"zod-validation-error": "^4.0.0"
|
|
114
116
|
},
|
|
115
117
|
"overrides": {
|
|
116
118
|
"@isaacs/brace-expansion": "^5.0.1",
|
|
@@ -120,6 +122,7 @@
|
|
|
120
122
|
"axios": ">=1.15.2",
|
|
121
123
|
"deepmerge-ts": "^8.0.1",
|
|
122
124
|
"esbuild": ">=0.28.1",
|
|
125
|
+
"eslint-plugin-react-hooks": "^7.0.0",
|
|
123
126
|
"flatted": "^3.4.2",
|
|
124
127
|
"form-data": ">=4.0.6",
|
|
125
128
|
"handlebars": ">=4.7.9",
|
|
@@ -129,10 +132,11 @@
|
|
|
129
132
|
"postcss": ">=8.5.18",
|
|
130
133
|
"undici": "^6.28.0",
|
|
131
134
|
"vite": "$vite",
|
|
132
|
-
"ws": ">=8.21.0"
|
|
135
|
+
"ws": ">=8.21.0",
|
|
136
|
+
"zod-validation-error": "^4.0.0"
|
|
133
137
|
},
|
|
134
138
|
"name": "@codyswann/lisa",
|
|
135
|
-
"version": "3.46.
|
|
139
|
+
"version": "3.46.2",
|
|
136
140
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
137
141
|
"main": "dist/index.js",
|
|
138
142
|
"exports": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"public/assets/**"
|
|
11
11
|
],
|
|
12
12
|
"ignoreDependencies": ["@types/node", "@vitest/coverage-v8", "phaser"],
|
|
13
|
-
"ignoreBinaries": ["audit", "knip", "playwright", "tsx", "vite"],
|
|
13
|
+
"ignoreBinaries": ["audit", "knip", "playwright", "printf", "tsx", "vite"],
|
|
14
14
|
"rules": {
|
|
15
15
|
"devDependencies": "off"
|
|
16
16
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-openclaw",
|
|
3
|
-
"version": "3.46.
|
|
3
|
+
"version": "3.46.2",
|
|
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": "3.46.
|
|
3
|
+
"version": "3.46.2",
|
|
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": "3.46.
|
|
3
|
+
"version": "3.46.2",
|
|
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": "3.46.
|
|
3
|
+
"version": "3.46.2",
|
|
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": "3.46.
|
|
3
|
+
"version": "3.46.2",
|
|
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"
|