@codyswann/lisa 1.12.7 → 1.12.9

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.
@@ -31,7 +31,7 @@ TaskCreate:
31
31
 
32
32
  TaskCreate:
33
33
  subject: "Perform CodeRabbit review"
34
- description: "If $ARGUMENTS/coderabbit-review.md already exists, skip this task. Otherwise, run `coderabbit review --plain || true` and write results to $ARGUMENTS/coderabbit-review.md"
34
+ description: "If $ARGUMENTS/coderabbit-review.md already exists, skip this task. Otherwise, run `/coderabbit:review` and write results to $ARGUMENTS/coderabbit-review.md"
35
35
  metadata: { project: "<project-name>" }
36
36
 
37
37
  TaskCreate:
@@ -53,5 +53,6 @@
53
53
  "BASH_DEFAULT_TIMEOUT_MS": "1800000",
54
54
  "BASH_MAX_TIMEOUT_MS": "7200000"
55
55
  },
56
- "includeCoAuthoredBy": true
56
+ "includeCoAuthoredBy": true,
57
+ "plansDirectory": "./plans"
57
58
  }
@@ -50,4 +50,14 @@ ONLY use eslint-disable for test file max-lines when comprehensive test coverage
50
50
  ONLY use eslint-disable functional/no-loop-statements in tests when using loops for test consolidation improves readability over dozens of individual tests
51
51
  ONLY use ts-ignore as a last resort and confirm with human before doing so
52
52
  ONLY use ts-expect-error as a last resort and confirm with human before doing so
53
- ONLY use ts-nocheck as a last resort and confirm with human before doing so
53
+ ONLY use ts-nocheck as a last resort and confirm with human before doing so
54
+
55
+
56
+ When making a plan, always determine which skills should be used during execution of the plan and include them in the plan
57
+ When making a plan, always make sure you understand the correct versions of third party libraries
58
+ When making a plan, always create a task list of items related to the plan and specify that subagents should handle as many in parallel as possible
59
+ When making a plan, always save the plan with a name befitting the actual plan contents.
60
+ When making a plan, always look for code that can be reused for implementation
61
+ When making a plan, always include a task to update/add/remove documentation
62
+
63
+ Never update CHANGELOG
package/package.json CHANGED
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "resolutions": {},
87
87
  "name": "@codyswann/lisa",
88
- "version": "1.12.7",
88
+ "version": "1.12.9",
89
89
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
90
90
  "main": "dist/index.js",
91
91
  "bin": {
@@ -228,11 +228,13 @@
228
228
  "CLAUDE_DEBUG": "0"
229
229
  },
230
230
  "includeCoAuthoredBy": true,
231
+ "plansDirectory": "./plans",
231
232
  "enabledPlugins": {
232
233
  "typescript-lsp@claude-plugins-official": true,
233
234
  "safety-net@cc-marketplace": true,
234
235
  "code-simplifier@claude-plugins-official": true,
235
236
  "code-review@claude-plugins-official": true,
236
- "playwright@claude-plugins-official": true
237
+ "playwright@claude-plugins-official": true,
238
+ "coderabbit@claude-plugins-official": true
237
239
  }
238
240
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://unpkg.com/knip@5/schema.json",
3
- "entry": ["src/**/*.ts"],
4
- "project": ["src/**/*.ts"],
3
+ "entry": ["src/**/*.ts","lambdas/**/*.ts", "lib/**/*.ts", "scripts/**/*.ts"],
4
+ "project": ["src/**/*.ts","lambdas/**/*.ts", "lib/**/*.ts"],
5
5
  "ignore": [
6
6
  "**/*.test.ts",
7
7
  "**/*.spec.ts",
@@ -15,6 +15,8 @@
15
15
  "**/node_modules/**"
16
16
  ],
17
17
  "ignoreDependencies": [
18
+ "langsmith",
19
+ "graphql",
18
20
  "@as-integrations/express5",
19
21
  "@aws-sdk/client-apigatewaymanagementapi",
20
22
  "@aws-sdk/client-appconfig",