@codyswann/lisa 1.24.0 → 1.25.0
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 +10 -46
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,35 +1,10 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
A Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects.
|
|
1
|
+
# NPM
|
|
4
2
|
|
|
5
3
|
Developers write specs and answer questions. Agents implement, test, verify, question, and document.
|
|
6
4
|
|
|
7
5
|
## About This Project
|
|
8
6
|
|
|
9
|
-
> Ask Claude: "What is the purpose of
|
|
10
|
-
|
|
11
|
-
## Installation
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
# Install via npm
|
|
15
|
-
npm install -g @codyswann/lisa
|
|
16
|
-
|
|
17
|
-
# Or use npx (no install required)
|
|
18
|
-
npx @codyswann/lisa /path/to/project
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## How It Works
|
|
22
|
-
|
|
23
|
-
Lisa applies multiple layers of quality control to Claude Code projects:
|
|
24
|
-
|
|
25
|
-
| Layer | Purpose |
|
|
26
|
-
|-------|---------|
|
|
27
|
-
| **CLAUDE.md** | Direct behavioral rules for Claude |
|
|
28
|
-
| **Skills** | Teach coding philosophy and patterns |
|
|
29
|
-
| **Hooks** | Auto-format and lint on every edit |
|
|
30
|
-
| **Slash Commands** | Guided workflows (`/plan:add-test-coverage`, `/git:commit`) |
|
|
31
|
-
| **ESLint Plugins** | Enforce code structure and ordering |
|
|
32
|
-
| **Git Hooks** | Pre-commit quality gates via Husky |
|
|
7
|
+
> Ask Claude: "What is the purpose of this project and how does it work?"
|
|
33
8
|
|
|
34
9
|
## Step 1: Install Claude Code
|
|
35
10
|
|
|
@@ -40,22 +15,15 @@ brew install claude-code
|
|
|
40
15
|
|
|
41
16
|
## Step 2: Set Up This Project
|
|
42
17
|
|
|
43
|
-
> Ask Claude: "I just cloned this repo. Walk me through the full setup including installing dependencies and
|
|
44
|
-
|
|
45
|
-
## Step 3: Apply Lisa to a Project
|
|
18
|
+
> Ask Claude: "I just cloned this repo. Walk me through the full setup including installing dependencies, environment variables, and any other configuration."
|
|
46
19
|
|
|
47
|
-
|
|
48
|
-
lisa /path/to/your-project
|
|
20
|
+
## Step 3: Build and Test
|
|
49
21
|
|
|
50
|
-
|
|
51
|
-
npx @codyswann/lisa .
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
> Ask Claude: "How do I apply Lisa to a project? Walk me through using the CLI on an existing codebase."
|
|
22
|
+
> Ask Claude: "How do I build this package and run the tests?"
|
|
55
23
|
|
|
56
24
|
## Step 4: Work on a Feature
|
|
57
25
|
|
|
58
|
-
> Ask Claude: "I have
|
|
26
|
+
> Ask Claude: "I have Jira ticket [TICKET-ID]. Research the codebase, create a plan, and implement it."
|
|
59
27
|
|
|
60
28
|
Or use utility commands:
|
|
61
29
|
|
|
@@ -88,13 +56,13 @@ Or use utility commands:
|
|
|
88
56
|
|
|
89
57
|
> Ask Claude: "Increase test coverage for the files I changed."
|
|
90
58
|
|
|
91
|
-
###
|
|
59
|
+
### Publish to npm
|
|
92
60
|
|
|
93
|
-
> Ask Claude: "
|
|
61
|
+
> Ask Claude: "Walk me through publishing a new version of this package to npm."
|
|
94
62
|
|
|
95
|
-
###
|
|
63
|
+
### Deploy
|
|
96
64
|
|
|
97
|
-
> Ask Claude: "
|
|
65
|
+
> Ask Claude: "Walk me through deploying this project."
|
|
98
66
|
|
|
99
67
|
## Project Standards
|
|
100
68
|
|
|
@@ -107,7 +75,3 @@ Or use utility commands:
|
|
|
107
75
|
## Troubleshooting
|
|
108
76
|
|
|
109
77
|
> Ask Claude: "I'm having an issue with [describe problem]. Help me debug it."
|
|
110
|
-
|
|
111
|
-
## License
|
|
112
|
-
|
|
113
|
-
MIT License - see [LICENSE](LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@isaacs/brace-expansion": "^5.0.1"
|
|
89
89
|
},
|
|
90
90
|
"name": "@codyswann/lisa",
|
|
91
|
-
"version": "1.
|
|
91
|
+
"version": "1.25.0",
|
|
92
92
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
93
93
|
"main": "dist/index.js",
|
|
94
94
|
"bin": {
|