opencode-lisa 0.1.0 → 0.2.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 +11 -1
- package/dist/index.js +14086 -0
- package/package.json +19 -4
- package/.opencode/command/lisa.md +0 -7
- package/.opencode/plugin/lisa.ts +0 -1228
- package/.opencode/skill/lisa/SKILL.md +0 -841
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
An intelligent epic workflow plugin for [OpenCode](https://opencode.ai). Like the Ralph Wiggum pattern, but smarter.
|
|
6
6
|
|
|
7
|
+
**Latest version: 0.2.0** - Now fully self-contained for npm installation!
|
|
8
|
+
|
|
7
9
|
## Why Lisa?
|
|
8
10
|
|
|
9
11
|
The **Ralph Wiggum pattern** is a simple bash loop that keeps feeding prompts to an AI agent until completion. It works, but:
|
|
@@ -27,7 +29,15 @@ The **Ralph Wiggum pattern** is a simple bash loop that keeps feeding prompts to
|
|
|
27
29
|
npm install opencode-lisa
|
|
28
30
|
```
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
Add to your `opencode.json`:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"plugin": ["opencode-lisa"]
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Restart OpenCode. Requires [OpenCode](https://opencode.ai).
|
|
31
41
|
|
|
32
42
|
## Usage
|
|
33
43
|
|