@codyswann/lisa 1.20.1 → 1.21.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,23 +8,34 @@ When making a plan:
8
8
 
9
9
  - Always determine which skills should be used during execution of the plan and include them in the plan
10
10
  - Always make sure you understand the correct versions of third party libraries
11
- - Always save the plan with a name befitting the actual plan contents
12
11
  - Always look for code that can be reused for implementation
13
- - The plan MUST include written instructions to create a task list using TaskCreate for each task (following the Task Creation Specification below). The list should contain items related to the plan and specify that subagents should handle as many in parallel as possible. The following should always be included in the task list
14
- - update/add/remove tests, containing the tests that need to get updated, added or removed
15
- - update/add/remove documentation (jsdocs, markdown files, etc), containing the documentation that need to get updated, added or removed
16
- - archive the plan (to be completed after all other tasks have been completed). This task should explcitly say to:
12
+ - The plan MUST include written instructions to create a task list using TaskCreate for each task (following the Task Creation Specification below). The list should contain items related to the plan and specify that subagents should handle as many in parallel as possible. The following should always be included in the task list:
13
+ - (unless the plan includes only trivial changes) a task to be run after implementation to review the code with CodeRabbit
14
+ - (unless the plan includes only trivial changes) a task to be run after implementation to review the code with /plan-local-code-review
15
+ - (unless the plan includes only trivial changes) a task to be run after all code review to implement valid review suggestions
16
+ - (unless the plan includes only trivial changes) a task to be run after code review implementation to simplify the implemented code with code simplifier agent
17
+ - (unless the plan includes only trivial changes) a task to be run after code review implementation to update/add/remove tests, containing the tests that need to get updated, added or removed
18
+ - (unless the plan includes only trivial changes) a task to be run after code review implementation to update/add/remove documentation (jsdocs, markdown files, etc), containing the documentation that need to get updated, added or removed
19
+ - (unless the plan includes only trivial changes) a task to be run after code review implementation to verify all of the verification metadata in existing tasks
20
+ - a task to be run after all other tasks have been completed to archive the plan. This task should explcitly say to:
17
21
  - create a folder named <plan-name> in ./plans/completed
18
22
  - rename this plan to a name befitting the actual plan contents
19
23
  - move it into ./plans/completed/<plan-name>
20
24
  - read the session ids from ./plans/completed/<plan-name>
21
25
  - For each session id, move the ~/.claude/tasks/<session-id> directory to ./plans/completed/<plan-name>/tasks
26
+ - Update any "in_progress" task in ./plans/completed/<plan-name>/tasks to "completed"
27
+ - commit changes.
28
+ - push changes to the PR
22
29
  - If you're on a protected branch (dev, staging, main), create a new branch named based on the nature of the project and include in the plan pull requests should go to the protected branch you bracnehd from.
23
30
  - If you're on a non-protected branch with an open pull request, submit pushes to the open pull request
24
31
  - If you're on a non-protected branch with no existing PR, clarify which protected branch to open the pull request to.
25
32
  - If referencing a ticket (jira, linear, etc), always include the ticket url in your plan
26
33
  - If referencing a ticket (jira, linear, etc), always update the ticket with the branch you're working off of
27
34
  - If referencing a ticket (jira, linear, etc), always add a comment to the ticket with the finalized plan
35
+ - Open a draft pull request
36
+ - Include the branch name and pull request in the plan
37
+
38
+ IMPORTANT:
28
39
  - The `## Sessions` section in plan files is auto-maintained by the `track-plan-sessions.sh` hook — do not manually edit it
29
40
 
30
41
  ## Task Creation Specification
@@ -77,3 +88,4 @@ Every task description must be a markdown document with these sections:
77
88
 
78
89
  Each task must be small enough to have a **single, specific verification**. Ask: "Can I prove this is done with ONE command?" Split tasks that require multiple verifications.
79
90
 
91
+
@@ -101,20 +101,6 @@ Commands are organized by category.
101
101
  | `/sonarqube:check` | Get reason last PR failed SonarQube checks | none |
102
102
  | `/sonarqube:fix` | Check SonarQube failures, fix them, and commit | none |
103
103
 
104
- ### JIRA Commands
105
-
106
- | Command | Description | Arguments |
107
- |---------|-------------|-----------|
108
- | `/jira:create` | Create JIRA epics/stories/tasks from code files | `<file-or-directory-path> [project-key]` (path required, key optional) |
109
- | `/jira:verify` | Verify JIRA ticket meets standards for epic relationships | `<TICKET-ID>` (required) |
110
-
111
- ### Lisa Commands
112
-
113
- | Command | Description | Arguments |
114
- |---------|-------------|-----------|
115
- | `/lisa:review-project` | Compare Lisa templates against a project's implementation | `<project-path>` (required) |
116
- | `/lisa:review-implementation` | Compare project files against Lisa templates, offer to upstream | `[lisa-dir]` (optional) |
117
-
118
104
  ---
119
105
 
120
106
  ## Command Details
@@ -301,37 +287,6 @@ Checks SonarQube failures, fixes them, and commits the changes.
301
287
 
302
288
  ---
303
289
 
304
- ### `/lisa:review-project`
305
-
306
- **Arguments:** `<project-path>` (required)
307
-
308
- Run FROM the Lisa repository. Compares Lisa's templates against a target project's implementation to identify drift. Categorizes changes as Improvement, Customization, Bug fix, or Divergence. Offers to adopt improvements back into Lisa.
309
-
310
- ---
311
-
312
- ### `/lisa:review-implementation`
313
-
314
- **Arguments:** `[lisa-dir]` (optional — auto-detects if Claude started with `--add-dir`)
315
-
316
- Run FROM a project with Lisa applied. Compares the project's Lisa-managed files against Lisa source templates and offers to upstream changes back to Lisa.
317
-
318
- ---
319
-
320
- ### `/jira:create`
321
-
322
- **Arguments:** `<file-or-directory-path> [project-key]` (path required, key optional)
323
-
324
- Creates JIRA epics, stories, and tasks from code files or descriptions with comprehensive quality requirements.
325
-
326
- ---
327
-
328
- ### `/jira:verify`
329
-
330
- **Arguments:** `<TICKET-ID>` (required)
331
-
332
- Verifies a JIRA ticket meets organizational standards for epic relationships and description quality.
333
-
334
- ---
335
290
 
336
291
  ## Command Call Graph
337
292
 
@@ -1,4 +1,4 @@
1
- # [Project Name]
1
+ # Project
2
2
 
3
3
  Developers write specs and answer questions. Agents implement, test, verify, question, and document.
4
4
 
@@ -1,4 +1,4 @@
1
- # [Project Name]
1
+ # CDK
2
2
 
3
3
  Developers write specs and answer questions. Agents implement, test, verify, question, and document.
4
4
 
@@ -7,6 +7,6 @@
7
7
  "module": "NodeNext",
8
8
  "moduleResolution": "NodeNext"
9
9
  },
10
- "include": ["lib/**/*", "bin/**/*", "test/**/*", "*.config.ts", "eslint.*.ts", "jest.*.ts"],
10
+ "include": ["**/*.ts"],
11
11
  "exclude": ["node_modules", "dist", "cdk.out"]
12
12
  }
@@ -1,4 +1,4 @@
1
- # [Project Name]
1
+ # Expo
2
2
 
3
3
  Developers write specs and answer questions. Agents implement, test, verify, question, and document.
4
4
 
@@ -86,6 +86,7 @@
86
86
  "expo-notifications",
87
87
  "expo-status-bar",
88
88
  "firebase",
89
+ "html2canvas",
89
90
  "i18n-js",
90
91
  "lucide-react-native",
91
92
  "patch-package",
@@ -5,22 +5,6 @@
5
5
  "noEmit": true,
6
6
  "allowImportingTsExtensions": true
7
7
  },
8
- "include": [
9
- "app/**/*",
10
- "components/**/*",
11
- "hooks/**/*",
12
- "lib/**/*",
13
- "features/**/*",
14
- "providers/**/*",
15
- "**/*.ts",
16
- "**/*.tsx"
17
- ],
18
- "exclude": [
19
- "node_modules",
20
- "dist",
21
- "build",
22
- ".expo",
23
- "ios",
24
- "android"
25
- ]
26
- }
8
+ "include": ["**/*.ts", "**/*.tsx"],
9
+ "exclude": ["node_modules", "dist", "build", ".expo", "ios", "android"]
10
+ }
@@ -12,5 +12,7 @@
12
12
  "@/*": ["./*"]
13
13
  },
14
14
  "moduleSuffixes": [".ios", ".android", ".native", ".web", ""]
15
- }
15
+ },
16
+ "include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"],
17
+ "exclude": ["node_modules", "dist", "web-build"]
16
18
  }
@@ -1,5 +1,3 @@
1
1
  {
2
- "extends": ["./tsconfig.expo.json", "./tsconfig.local.json"],
3
- "include": ["**/*.ts", "**/*.tsx", "nativewind-env.d.ts"],
4
- "exclude": ["node_modules", "dist", "web-build"]
2
+ "extends": ["./tsconfig.expo.json", "./tsconfig.local.json"]
5
3
  }
@@ -1,4 +1,4 @@
1
- # [Project Name]
1
+ # NestJS
2
2
 
3
3
  Developers write specs and answer questions. Agents implement, test, verify, question, and document.
4
4
 
@@ -5,6 +5,6 @@
5
5
  "noEmit": true,
6
6
  "allowImportingTsExtensions": true
7
7
  },
8
- "include": ["src/**/*", "test/**/*", "*.config.ts", "eslint.*.ts", "jest.*.ts"],
9
- "exclude": ["node_modules", ".build"]
8
+ "include": ["**/*.ts"],
9
+ "exclude": ["node_modules", ".build", "dist"]
10
10
  }
@@ -1,5 +1,3 @@
1
1
  {
2
- "extends": ["./tsconfig.nestjs.json", "./tsconfig.local.json"],
3
- "include": ["src/**/*"],
4
- "exclude": ["node_modules", ".build", "dist", "**/*.test.ts", "**/*.spec.ts"]
2
+ "extends": ["./tsconfig.nestjs.json", "./tsconfig.local.json"]
5
3
  }
@@ -12,5 +12,7 @@
12
12
  "paths": {
13
13
  "@/*": ["./src/*"]
14
14
  }
15
- }
15
+ },
16
+ "include": ["src/**/*"],
17
+ "exclude": ["node_modules", ".build", "dist", "**/*.test.ts", "**/*.spec.ts"]
16
18
  }
@@ -72,7 +72,8 @@
72
72
  "@types/express": "^5.0.6",
73
73
  "serverless": "^4.30.0",
74
74
  "serverless-esbuild": "^1.57.0",
75
- "serverless-offline": "^14.4.0"
75
+ "serverless-offline": "^14.4.0",
76
+ "ts-node": "^10.9.2"
76
77
  }
77
78
  }
78
79
  }
package/package.json CHANGED
@@ -70,7 +70,6 @@
70
70
  "prettier": "^3.3.3",
71
71
  "standard-version": "^9.5.0",
72
72
  "ts-morph": "^27.0.2",
73
- "ts-node": "^10.9.2",
74
73
  "typescript": "~5.7.0",
75
74
  "typescript-eslint": "^8.0.0",
76
75
  "@types/fs-extra": "^11.0.0",
@@ -89,7 +88,7 @@
89
88
  "@isaacs/brace-expansion": "^5.0.1"
90
89
  },
91
90
  "name": "@codyswann/lisa",
92
- "version": "1.20.1",
91
+ "version": "1.21.1",
93
92
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
94
93
  "main": "dist/index.js",
95
94
  "bin": {
@@ -5,6 +5,6 @@
5
5
  "noEmit": true,
6
6
  "allowImportingTsExtensions": true
7
7
  },
8
- "include": ["src/**/*", "tests/**/*", "test/**/*", "*.config.ts", "eslint.*.ts", "jest.*.ts"],
8
+ "include": ["**/*.ts"],
9
9
  "exclude": ["node_modules", "dist", "build"]
10
10
  }
@@ -1,5 +1,3 @@
1
1
  {
2
- "extends": ["./tsconfig.typescript.json", "./tsconfig.local.json"],
3
- "include": ["src/**/*"],
4
- "exclude": ["node_modules", "dist"]
2
+ "extends": ["./tsconfig.typescript.json", "./tsconfig.local.json"]
5
3
  }
@@ -7,5 +7,7 @@
7
7
  "lib": ["ES2022"],
8
8
  "noUnusedLocals": true,
9
9
  "noUnusedParameters": true
10
- }
10
+ },
11
+ "include": ["src/**/*"],
12
+ "exclude": ["node_modules", "dist"]
11
13
  }
@@ -40,7 +40,6 @@
40
40
  "jscodeshift": "0.15.2",
41
41
  "standard-version": "^9.5.0",
42
42
  "ts-morph": "^27.0.2",
43
- "ts-node": "^10.9.2",
44
43
  "typescript": "~5.7.0",
45
44
  "typescript-eslint": "^8.0.0",
46
45
  "@types/fs-extra": "^11.0.0",