@codyswann/lisa 1.66.1 → 1.66.3

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
@@ -74,7 +74,7 @@
74
74
  "flatted": "^3.4.2"
75
75
  },
76
76
  "name": "@codyswann/lisa",
77
- "version": "1.66.1",
77
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
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.66.1",
3
+ "version": "1.66.3",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -75,6 +75,12 @@ if echo "$COMMIT_MSG" | grep -qE "^Merge (branch|pull request|remote-tracking)";
75
75
  exit 0
76
76
  fi
77
77
 
78
+ # Skip AI co-authorship check for automated release commits (e.g., from standard-version in CI)
79
+ if echo "$COMMIT_MSG" | grep -qE "^chore\(release\):"; then
80
+ echo "🚀 Release commit detected, skipping AI co-authorship check"
81
+ exit 0
82
+ fi
83
+
78
84
  echo "🤖 Checking for AI co-authorship..."
79
85
 
80
86
  if ! echo "$COMMIT_MSG" | grep -q "Co-Authored-By:.*Claude"; then
@@ -21,4 +21,5 @@ src/graphql-generated
21
21
  *.md
22
22
  *.mdx
23
23
  *.sh
24
- *.json
24
+ *.json
25
+ coverage
@@ -5,7 +5,7 @@ name: Claude CI Auto-Fix
5
5
 
6
6
  on:
7
7
  workflow_run:
8
- workflows: ['CI Quality Checks']
8
+ workflows: ['🔍 CI Quality Checks']
9
9
  types: [completed]
10
10
 
11
11
  permissions: