@tarcisiopgs/lisa 1.28.1 → 1.30.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 +35 -4
- package/dist/{chunk-FCEUJ7VK.js → chunk-5GZPXARF.js} +446 -88
- package/dist/{chunk-5N4BWHIT.js → chunk-66TB6NMR.js} +27 -1
- package/dist/{chunk-2TW2MJXF.js → chunk-72DVXSHO.js} +8 -8
- package/dist/chunk-7JT7DTSS.js +10 -0
- package/dist/{chunk-UXVSQQID.js → chunk-IMIDFVMI.js} +50 -18
- package/dist/{chunk-42NKASE3.js → chunk-IQDRQXFK.js} +4 -2
- package/dist/{chunk-KDAXGOFF.js → chunk-PBPVDKID.js} +728 -29
- package/dist/{detection-JT7HSKSX.js → detection-PC7EMUHY.js} +3 -2
- package/dist/index.js +167 -97
- package/dist/{kanban-HFUBTOF4.js → kanban-OHFQGK3R.js} +71 -2
- package/dist/{loop-SXI4PQOI.js → loop-TTRI7MFZ.js} +5 -4
- package/dist/merge-LRFZXFV2.js +147 -0
- package/dist/{tui-bridge-DCC4JAPM.js → tui-bridge-LIQLGTZ2.js} +44 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ lisa # start the agent loop
|
|
|
31
31
|
Plan → Create issues → Fetch → Implement → Push → Open PR → Update board → Next
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
Lisa starts and shows a Kanban board. If the queue is empty, press `n` to plan — describe a goal and the AI decomposes
|
|
34
|
+
Lisa starts and shows a Kanban board. If the queue is empty, press `n` to plan — describe a goal and the AI brainstorms with you (asking clarifying questions), presents its understanding for your confirmation, then decomposes the goal into atomic issues created directly in your tracker. You can review, edit, reorder, delete, or regenerate the plan with feedback before approving. Press `r` to start processing. Lisa picks the highest-priority labeled issue, moves it to "In Progress", sends a structured prompt to the AI agent, and monitors execution. The agent works in an isolated git worktree, implements the change, runs tests, and commits. Lisa pushes, opens a PR, moves the ticket to "In Review", and picks up the next one.
|
|
35
35
|
|
|
36
36
|
If something fails — pre-push hooks, quota limits, stuck processes — Lisa handles it: retries with error context, falls back to the next model, or kills and moves on.
|
|
37
37
|
|
|
@@ -39,11 +39,15 @@ If something fails — pre-push hooks, quota limits, stuck processes — Lisa ha
|
|
|
39
39
|
|
|
40
40
|
- **7 issue trackers** — Linear, GitHub Issues, GitLab Issues, Jira, Trello, Plane, Shortcut
|
|
41
41
|
- **8 AI agents** — Claude Code, Gemini CLI, GitHub Copilot CLI, Cursor Agent, Aider, Goose, OpenCode, Codex
|
|
42
|
-
- **AI planning** — describe a goal, the AI decomposes it into issues with dependencies, created in your tracker
|
|
42
|
+
- **AI planning** — describe a goal, the AI brainstorms with you, decomposes it into issues with dependencies, created in your tracker
|
|
43
|
+
- **Language-aware** — detects your goal's language (pt/en/es) and generates issues in the same language
|
|
43
44
|
- **Concurrent execution** — process multiple issues in parallel, each in its own worktree
|
|
44
45
|
- **Multi-repo** — plans across repos, creates one PR per repo in the correct order
|
|
45
46
|
- **Model fallback** — chain models; transient errors (429, quota, timeout) auto-switch to the next
|
|
46
|
-
- **Real-time TUI** — Kanban board with live provider output, plan mode,
|
|
47
|
+
- **Real-time TUI** — Kanban board with live provider output, plan mode, merge PRs with `m`
|
|
48
|
+
- **CI monitoring** — polls CI after PR creation, re-invokes the agent to fix failures automatically
|
|
49
|
+
- **Progress comments** — posts real-time status updates on issues as Lisa works through stages
|
|
50
|
+
- **Context enrichment** — greps for issue-related files and surfaces them in the agent prompt
|
|
47
51
|
- **Self-healing** — orphan recovery on startup, push failure retry, stuck process detection
|
|
48
52
|
- **Guardrails** — past failures are injected into future prompts to avoid repeating mistakes
|
|
49
53
|
- **Project context** — auto-generates `.lisa/context.md` with your stack, conventions, and constraints
|
|
@@ -90,9 +94,11 @@ lisa --watch # poll for new issues after queue empties
|
|
|
90
94
|
lisa -c 3 # process 3 issues in parallel
|
|
91
95
|
lisa --issue INT-42 # process a specific issue
|
|
92
96
|
lisa --limit 5 # stop after 5 issues
|
|
93
|
-
lisa plan "Add rate limiting" # decompose goal into issues via AI
|
|
97
|
+
lisa plan "Add rate limiting" # brainstorm + decompose goal into issues via AI
|
|
94
98
|
lisa plan --issue EPIC-123 # decompose existing issue into sub-issues
|
|
95
99
|
lisa plan --continue # resume interrupted plan
|
|
100
|
+
lisa plan --no-brainstorm "goal" # skip brainstorming, decompose directly
|
|
101
|
+
lisa plan --yes "goal" # skip confirmations (CI/scripts)
|
|
96
102
|
lisa init # create .lisa/config.yaml interactively
|
|
97
103
|
lisa status # show session stats
|
|
98
104
|
lisa doctor # diagnose setup issues (config, provider, env, git)
|
|
@@ -214,8 +220,30 @@ lifecycle:
|
|
|
214
220
|
mode: auto # "auto", "skip" (default), "validate-only"
|
|
215
221
|
timeout: 30
|
|
216
222
|
|
|
223
|
+
proof_of_work:
|
|
224
|
+
enabled: true
|
|
225
|
+
block_on_failure: true # skip PR when validation fails (default: false)
|
|
226
|
+
max_retries: 2 # retry agent on validation failure
|
|
227
|
+
commands:
|
|
228
|
+
- name: lint
|
|
229
|
+
run: pnpm run lint
|
|
230
|
+
- name: typecheck
|
|
231
|
+
run: pnpm run typecheck
|
|
232
|
+
- name: test
|
|
233
|
+
run: pnpm run test
|
|
234
|
+
|
|
217
235
|
validation:
|
|
218
236
|
require_acceptance_criteria: true
|
|
237
|
+
|
|
238
|
+
ci_monitor:
|
|
239
|
+
enabled: true
|
|
240
|
+
max_retries: 3 # fix attempts on CI failure
|
|
241
|
+
poll_interval: 30 # seconds between CI status checks
|
|
242
|
+
poll_timeout: 600 # max seconds to wait for CI
|
|
243
|
+
block_on_failure: false # revert issue if CI never passes
|
|
244
|
+
|
|
245
|
+
progress_comments:
|
|
246
|
+
enabled: true # post real-time status on issues
|
|
219
247
|
```
|
|
220
248
|
|
|
221
249
|
</details>
|
|
@@ -259,6 +287,7 @@ The real-time Kanban board shows issue progress, streams provider output, and de
|
|
|
259
287
|
|-----|--------|
|
|
260
288
|
| `↑` `↓` | Scroll output log |
|
|
261
289
|
| `o` | Open PR in browser |
|
|
290
|
+
| `m` | Merge PR (warns if CI not passed) |
|
|
262
291
|
| `Esc` | Back to board |
|
|
263
292
|
|
|
264
293
|
**Plan mode**
|
|
@@ -271,6 +300,8 @@ The real-time Kanban board shows issue progress, streams provider output, and de
|
|
|
271
300
|
| `a` | Approve and create issues |
|
|
272
301
|
| `Esc` | Cancel / back |
|
|
273
302
|
|
|
303
|
+
In CLI mode, the plan wizard also offers **Regenerate with feedback** — describe what to change and the AI regenerates the entire plan incorporating your feedback.
|
|
304
|
+
|
|
274
305
|
## License
|
|
275
306
|
|
|
276
307
|
[MIT](LICENSE)
|