@codyswann/lisa 2.16.4 → 2.16.6
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/README.md +28 -0
- 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
package/README.md
CHANGED
|
@@ -121,3 +121,31 @@ You don't have to remember any of this. Tell Claude what you want and the right
|
|
|
121
121
|
> "Get test coverage to 90%."
|
|
122
122
|
|
|
123
123
|
> Ask Claude: "What commands are available?" for the full list at any time.
|
|
124
|
+
|
|
125
|
+
## Lisa LLM Wiki
|
|
126
|
+
|
|
127
|
+
Lisa keeps an in-repository LLM Wiki under `wiki/`. It is the durable markdown knowledge base for Lisa architecture, workflows, skills, commands, templates, quality gates, git history, and ingestion notes.
|
|
128
|
+
|
|
129
|
+
Start with:
|
|
130
|
+
|
|
131
|
+
- `wiki/start-here.md` for orientation.
|
|
132
|
+
- `wiki/index.md` for the maintained map.
|
|
133
|
+
- `wiki/documentation/` for canonical Lisa documentation moved from root docs/spec files.
|
|
134
|
+
- `wiki/projects/registry.md` for the monorepo registry.
|
|
135
|
+
- `wiki/log.md` for ingestion history.
|
|
136
|
+
- `wiki/sources/` for provenance.
|
|
137
|
+
|
|
138
|
+
Sample questions:
|
|
139
|
+
|
|
140
|
+
- What are Lisa's main architecture layers?
|
|
141
|
+
- How do rules, skills, hooks, commands, and CI quality gates work together?
|
|
142
|
+
- Which template strategies does Lisa use?
|
|
143
|
+
- What changed in recent merged PRs?
|
|
144
|
+
- What should a new contributor read first?
|
|
145
|
+
|
|
146
|
+
Useful ingestion requests:
|
|
147
|
+
|
|
148
|
+
- Ingest the latest repository commits and merged PRs.
|
|
149
|
+
- Ingest this design plan into the Lisa wiki.
|
|
150
|
+
- Ingest these meeting notes.
|
|
151
|
+
- Update the architecture overview from recent source changes.
|
|
@@ -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.6",
|
|
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
|
|