@codyswann/lisa 2.18.0 → 2.19.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.
package/package.json CHANGED
@@ -80,7 +80,7 @@
80
80
  "lodash": ">=4.18.1"
81
81
  },
82
82
  "name": "@codyswann/lisa",
83
- "version": "2.18.0",
83
+ "version": "2.19.1",
84
84
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
85
85
  "main": "dist/index.js",
86
86
  "exports": {
@@ -193,7 +193,7 @@
193
193
  "vitest": "^4.1.0"
194
194
  },
195
195
  "devDependencies": {
196
- "@codyswann/lisa": "^1.81.3",
196
+ "@codyswann/lisa": "^2.19.0",
197
197
  "@types/js-yaml": "^4.0.9",
198
198
  "eslint-plugin-oxlint": "^1.62.0",
199
199
  "js-yaml": "^4.1.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
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",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
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": "2.18.0",
3
+ "version": "2.19.1",
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-cdk",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "AWS CDK-specific Lisa plugin.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-expo",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
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-expo",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "Expo and 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": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "NestJS-specific skills (GraphQL, TypeORM) and hooks (migration write-protection)",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-nestjs",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "NestJS-specific skills and migration write-protection hooks.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-rails",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
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-rails",
3
- "version": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "Ruby on Rails-specific skills and hooks for RuboCop 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": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, 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": "2.18.0",
3
+ "version": "2.19.1",
4
4
  "description": "TypeScript-specific hooks for formatting, linting, and ast-grep scanning on edit.",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -5,7 +5,11 @@ pre-commit:
5
5
  glob: '*.rb'
6
6
  run: bundle exec rubocop --force-exclusion {staged_files}
7
7
  bundler-audit:
8
- run: bundle exec bundler-audit check --update
8
+ # Unset GIT_DIR/GIT_WORK_TREE so `--update`'s internal git pull of the
9
+ # ruby-advisory-db (~/.local/share/ruby-advisory-db) does not inherit the
10
+ # repo's git context. Without this, the command fails when the hook runs
11
+ # inside a git worktree (the inherited GIT_DIR points at the wrong repo).
12
+ run: env -u GIT_DIR -u GIT_WORK_TREE bundle exec bundler-audit check --update
9
13
 
10
14
  commit-msg:
11
15
  commands: