@codyswann/lisa 2.16.4 → 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.
- package/all/merge/.claude/settings.json +1 -2
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/scripts/lisa-commit-and-pr-local.sh +4 -4
- package/scripts/lisa-update-local.sh +4 -4
|
@@ -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.
|
|
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": {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#
|
|
3
3
|
# Lisa Local Project Commit & PR
|
|
4
4
|
#
|
|
5
|
-
# Iterates over projects defined in .lisa.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
76
|
+
log_info "Create .lisa.workspaces.json with project paths and target branches"
|
|
77
77
|
exit 1
|
|
78
78
|
fi
|
|
79
79
|
|