@codyswann/lisa 1.67.0 → 1.67.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.
@@ -33,7 +33,7 @@
33
33
  "security:zap": "bash scripts/zap-baseline.sh",
34
34
  "test": "vitest run",
35
35
  "test:unit": "vitest run --exclude='**/integration/**'",
36
- "test:integration": "vitest run tests/integration --passWithNoTests",
36
+ "test:integration": "vitest run '.integration.' --passWithNoTests",
37
37
  "test:cov": "vitest run --coverage",
38
38
  "test:watch": "vitest"
39
39
  },
package/package.json CHANGED
@@ -74,7 +74,7 @@
74
74
  "flatted": "^3.4.2"
75
75
  },
76
76
  "name": "@codyswann/lisa",
77
- "version": "1.67.0",
77
+ "version": "1.67.2",
78
78
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
79
79
  "main": "dist/index.js",
80
80
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "1.67.0",
3
+ "version": "1.67.2",
4
4
  "description": "Universal governance — agents, skills, commands, hooks, and rules for all projects",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -8,7 +8,7 @@ tools: Read, Write, Edit, Bash, Grep, Glob
8
8
 
9
9
  You are a verification specialist. Your job is to **prove empirically** that work is done -- not by reading code, but by running the actual system and observing the results.
10
10
 
11
- Read `.claude/rules/verfication.md` at the start of every investigation for the full verification framework, types, and examples.
11
+ Read `.claude/rules/verification.md` at the start of every investigation for the full verification framework, types, and examples.
12
12
 
13
13
  ## Core Philosophy
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa-cdk",
3
- "version": "1.67.0",
3
+ "version": "1.67.2",
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.67.0",
3
+ "version": "1.67.2",
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.67.0",
3
+ "version": "1.67.2",
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.67.0",
3
+ "version": "1.67.2",
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.67.0",
3
+ "version": "1.67.2",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -8,7 +8,7 @@ tools: Read, Write, Edit, Bash, Grep, Glob
8
8
 
9
9
  You are a verification specialist. Your job is to **prove empirically** that work is done -- not by reading code, but by running the actual system and observing the results.
10
10
 
11
- Read `.claude/rules/verfication.md` at the start of every investigation for the full verification framework, types, and examples.
11
+ Read `.claude/rules/verification.md` at the start of every investigation for the full verification framework, types, and examples.
12
12
 
13
13
  ## Core Philosophy
14
14
 
@@ -4,5 +4,5 @@
4
4
  "baseUrl": "./"
5
5
  },
6
6
  "include": ["src/**/*"],
7
- "exclude": ["node_modules", "dist"]
7
+ "exclude": ["node_modules", ".build", "dist", "**/*.test.ts", "**/*.spec.ts"]
8
8
  }
@@ -6,7 +6,6 @@
6
6
  "format": "prettier --check . --write",
7
7
  "test": "vitest run",
8
8
  "test:unit": "vitest run --exclude='**/integration/**'",
9
- "test:integration": "vitest run tests/integration --passWithNoTests",
10
9
  "test:cov": "vitest run --coverage",
11
10
  "test:watch": "vitest",
12
11
  "lint:fix": "eslint . --fix",
@@ -32,7 +31,8 @@
32
31
  "defaults": {
33
32
  "scripts": {
34
33
  "build": "tsc",
35
- "postinstall": "node node_modules/@codyswann/lisa/dist/index.js --yes --skip-git-check . 2>/dev/null || true"
34
+ "postinstall": "node node_modules/@codyswann/lisa/dist/index.js --yes --skip-git-check . 2>/dev/null || true",
35
+ "test:integration": "vitest run tests/integration --passWithNoTests"
36
36
  },
37
37
  "engines": {
38
38
  "npm": "please-use-bun",