opencode-lisa 0.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 fractalswift
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # opencode-lisa
2
+
3
+ ![Lisa and Ralph](lisa-and-ralph.png)
4
+
5
+ An intelligent epic workflow plugin for [OpenCode](https://opencode.ai). Like the Ralph Wiggum pattern, but smarter.
6
+
7
+ ## Why Lisa?
8
+
9
+ The **Ralph Wiggum pattern** is a simple bash loop that keeps feeding prompts to an AI agent until completion. It works, but:
10
+
11
+ - Ralph is dumb - he just loops forever with the same prompt
12
+ - No planning - dives straight into coding
13
+ - No context management - context window fills with garbage
14
+ - No task dependencies - can't parallelize or sequence work properly
15
+
16
+ **Lisa plans before she acts:**
17
+
18
+ - **Structured phases** - spec, research, plan, then execute
19
+ - **Dependency-aware tasks** - knows what can run in parallel
20
+ - **Fresh context per task** - each task runs in a sub-agent with clean context
21
+ - **State persistence** - survives session restarts, tracks progress
22
+ - **Yolo mode** - fully autonomous execution when you want it
23
+
24
+ ## Install
25
+
26
+ ```bash
27
+ npm install opencode-lisa
28
+ ```
29
+
30
+ Requires [OpenCode](https://opencode.ai).
31
+
32
+ ## Usage
33
+
34
+ ```
35
+ /lisa help - Show all commands
36
+ /lisa <name> - Start or continue an epic
37
+ /lisa <name> spec - Create the spec only
38
+ /lisa <name> yolo - Full auto mode (no confirmations)
39
+ /lisa <name> status - Show progress
40
+ /lisa list - List all epics
41
+ ```
42
+
43
+ ## How It Works
44
+
45
+ Lisa breaks large features into phases:
46
+
47
+ 1. **Spec** - Define what you're building (interactive)
48
+ 2. **Research** - Explore the codebase to understand context
49
+ 3. **Plan** - Break into discrete tasks with dependencies
50
+ 4. **Execute** - Run tasks via sub-agents with fresh context
51
+
52
+ All state is persisted to `.lisa/epics/` so you can stop and resume anytime.
53
+
54
+ ## Configuration
55
+
56
+ Config lives in `.lisa/config.jsonc`:
57
+
58
+ ```jsonc
59
+ {
60
+ "git": {
61
+ "completionMode": "none", // "none" | "commit" | "pr"
62
+ },
63
+ "yolo": {
64
+ "defaultMaxIterations": 100,
65
+ },
66
+ }
67
+ ```
68
+
69
+ In default mode, Lisa does NOT make commits or PRs. If you want to make commits you'll need git set up, and if you want to make PRs you'll need the github cli set up.
70
+
71
+ ## License
72
+
73
+ MIT
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "opencode-lisa",
3
+ "version": "0.1.0",
4
+ "description": "Lisa - intelligent epic workflow plugin for OpenCode. Like Ralph Wiggum, but smarter.",
5
+ "keywords": [
6
+ "opencode",
7
+ "opencode-plugin",
8
+ "plugin",
9
+ "epic",
10
+ "workflow",
11
+ "ai",
12
+ "automation",
13
+ "lisa",
14
+ "ralph-wiggum"
15
+ ],
16
+ "author": "fractalswift",
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/fractalswift/lisa-simpson.git"
21
+ },
22
+ "homepage": "https://github.com/fractalswift/lisa-simpson#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/fractalswift/lisa-simpson/issues"
25
+ },
26
+ "files": [
27
+ ".opencode"
28
+ ],
29
+ "peerDependencies": {
30
+ "@opencode-ai/plugin": ">=1.0.0"
31
+ }
32
+ }