@codyswann/lisa 1.79.2 → 1.80.0

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.
@@ -20,6 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "aws-cdk": "^2.1104.0",
23
+ "vite": "^8.0.5",
23
24
  "vitest": "^4.1.0",
24
25
  "@vitest/coverage-v8": "^4.1.0"
25
26
  },
@@ -80,6 +80,7 @@
80
80
  "serverless": "^4.30.0",
81
81
  "serverless-esbuild": "^1.57.0",
82
82
  "serverless-offline": "^14.4.0",
83
+ "vite": "^8.0.5",
83
84
  "vitest": "^4.1.0",
84
85
  "@vitest/coverage-v8": "^4.1.0"
85
86
  }
package/package.json CHANGED
@@ -76,7 +76,7 @@
76
76
  "lodash": ">=4.18.1"
77
77
  },
78
78
  "name": "@codyswann/lisa",
79
- "version": "1.79.2",
79
+ "version": "1.80.0",
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": {
@@ -182,7 +182,8 @@
182
182
  "vitest": "^4.1.0"
183
183
  },
184
184
  "devDependencies": {
185
- "@codyswann/lisa": "^1.78.2"
185
+ "@codyswann/lisa": "^1.78.2",
186
+ "vite": "^8.0.5"
186
187
  },
187
188
  "type": "module"
188
189
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "1.79.2",
3
+ "version": "1.80.0",
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.79.2",
3
+ "version": "1.80.0",
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.79.2",
3
+ "version": "1.80.0",
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.79.2",
3
+ "version": "1.80.0",
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.79.2",
3
+ "version": "1.80.0",
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.79.2",
3
+ "version": "1.80.0",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -0,0 +1,30 @@
1
+ # This file was created by Lisa on first setup.
2
+ # You can customize this file — Lisa will not overwrite it.
3
+
4
+ name: Claude Code Review Response
5
+
6
+ on:
7
+ pull_request_review:
8
+ types: [submitted]
9
+
10
+ permissions:
11
+ actions: write
12
+ checks: write
13
+ contents: write
14
+ issues: write
15
+ pull-requests: write
16
+ id-token: write
17
+
18
+ jobs:
19
+ respond-to-review:
20
+ uses: CodySwannGT/lisa/.github/workflows/reusable-claude-code-review-response.yml@main
21
+ with:
22
+ review_user_login: ${{ github.event.review.user.login }}
23
+ pr_user_login: ${{ github.event.pull_request.user.login }}
24
+ pr_head_ref: ${{ github.event.pull_request.head.ref }}
25
+ pr_number: ${{ github.event.pull_request.number }}
26
+ repo_owner: ${{ github.repository_owner }}
27
+ repo_name: ${{ github.event.repository.name }}
28
+ package_manager: 'none'
29
+ secrets:
30
+ CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}