@codyswann/lisa 2.16.3 → 2.16.5

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.
@@ -10,8 +10,7 @@
10
10
  "code-review@claude-plugins-official": true,
11
11
  "coderabbit@claude-plugins-official": true,
12
12
  "sentry@claude-plugins-official": true,
13
- "skill-creator@claude-plugins-official": true,
14
- "atlassian@claude-plugins-official": true
13
+ "skill-creator@claude-plugins-official": true
15
14
  },
16
15
  "extraKnownMarketplaces": {
17
16
  "CodySwannGT/lisa": {
package/package.json CHANGED
@@ -79,7 +79,7 @@
79
79
  "lodash": ">=4.18.1"
80
80
  },
81
81
  "name": "@codyswann/lisa",
82
- "version": "2.16.3",
82
+ "version": "2.16.5",
83
83
  "description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
84
84
  "main": "dist/index.js",
85
85
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisa",
3
- "version": "2.16.3",
3
+ "version": "2.16.5",
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.16.3",
3
+ "version": "2.16.5",
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": "2.16.3",
3
+ "version": "2.16.5",
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": "2.16.3",
3
+ "version": "2.16.5",
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-rails",
3
- "version": "2.16.3",
3
+ "version": "2.16.5",
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": "2.16.3",
3
+ "version": "2.16.5",
4
4
  "description": "TypeScript-specific hooks — Prettier formatting, ESLint linting, and ast-grep scanning on edit",
5
5
  "author": {
6
6
  "name": "Cody Swann"
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # Lisa Local Project Commit & PR
4
4
  #
5
- # Iterates over projects defined in .lisa.config.local.json, creates
5
+ # Iterates over projects defined in .lisa.workspaces.json, creates
6
6
  # date-stamped branches for any projects with uncommitted changes,
7
7
  # commits those changes, pushes to remote, and opens pull requests.
8
8
  #
@@ -19,14 +19,14 @@
19
19
  # Prerequisites:
20
20
  # - jq installed
21
21
  # - GitHub CLI (gh) installed and authenticated
22
- # - .lisa.config.local.json exists in the project root
22
+ # - .lisa.workspaces.json exists in the project root
23
23
  #
24
24
 
25
25
  set -euo pipefail
26
26
 
27
27
  SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
28
28
  LISA_ROOT="$(dirname "$SCRIPT_DIR")"
29
- CONFIG_FILE="$LISA_ROOT/.lisa.config.local.json"
29
+ CONFIG_FILE="$LISA_ROOT/.lisa.workspaces.json"
30
30
 
31
31
  # Colors for output
32
32
  RED='\033[0;31m'
@@ -77,7 +77,7 @@ fi
77
77
 
78
78
  if [[ ! -f "$CONFIG_FILE" ]]; then
79
79
  log_error "Config file not found: $CONFIG_FILE"
80
- log_info "Create .lisa.config.local.json with project paths and target branches"
80
+ log_info "Create .lisa.workspaces.json with project paths and target branches"
81
81
  exit 1
82
82
  fi
83
83
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # Lisa Local Project Update
4
4
  #
5
- # Iterates over projects defined in .lisa.config.local.json, checks out their
5
+ # Iterates over projects defined in .lisa.workspaces.json, checks out their
6
6
  # target branches, pulls latest changes, and updates @codyswann/lisa via the
7
7
  # project's package manager. The postinstall script automatically applies
8
8
  # Lisa templates.
@@ -19,7 +19,7 @@
19
19
  #
20
20
  # Prerequisites:
21
21
  # - jq installed
22
- # - .lisa.config.local.json exists in the project root
22
+ # - .lisa.workspaces.json exists in the project root
23
23
  # - each project's package manager (bun, pnpm, yarn, or npm) installed
24
24
  #
25
25
 
@@ -27,7 +27,7 @@ set -euo pipefail
27
27
 
28
28
  SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
29
29
  LISA_ROOT="$(dirname "$SCRIPT_DIR")"
30
- CONFIG_FILE="$LISA_ROOT/.lisa.config.local.json"
30
+ CONFIG_FILE="$LISA_ROOT/.lisa.workspaces.json"
31
31
 
32
32
  # Colors for output
33
33
  RED='\033[0;31m'
@@ -73,7 +73,7 @@ fi
73
73
 
74
74
  if [[ ! -f "$CONFIG_FILE" ]]; then
75
75
  log_error "Config file not found: $CONFIG_FILE"
76
- log_info "Create .lisa.config.local.json with project paths and target branches"
76
+ log_info "Create .lisa.workspaces.json with project paths and target branches"
77
77
  exit 1
78
78
  fi
79
79