@tarcisiopgs/lisa 1.26.1 → 1.26.2
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 +39 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,13 +56,27 @@ If something fails — pre-push hooks, quota limits, stuck processes — Lisa ha
|
|
|
56
56
|
| GitHub Copilot CLI | `copilot` | Aider | `aider` |
|
|
57
57
|
| OpenCode | `opencode` | OpenAI Codex | `codex` |
|
|
58
58
|
|
|
59
|
-
Configure
|
|
59
|
+
Configure models and provider-specific options:
|
|
60
60
|
|
|
61
61
|
```yaml
|
|
62
62
|
provider: claude
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
63
|
+
provider_options:
|
|
64
|
+
claude:
|
|
65
|
+
models:
|
|
66
|
+
- claude-sonnet-4-6 # primary
|
|
67
|
+
- claude-opus-4-6 # fallback
|
|
68
|
+
effort: high # optional: low, medium, high, max
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Goose requires a backend selection:
|
|
72
|
+
|
|
73
|
+
```yaml
|
|
74
|
+
provider: goose
|
|
75
|
+
provider_options:
|
|
76
|
+
goose:
|
|
77
|
+
goose_provider: gemini-cli # gemini-cli, anthropic, openai, google, ollama
|
|
78
|
+
models:
|
|
79
|
+
- gemini-2.5-pro
|
|
66
80
|
```
|
|
67
81
|
|
|
68
82
|
## Commands
|
|
@@ -93,11 +107,14 @@ workflow: worktree # "worktree" (isolated) or "branch" (in-place)
|
|
|
93
107
|
source_config:
|
|
94
108
|
scope: Engineering
|
|
95
109
|
project: Web App
|
|
96
|
-
label: ready
|
|
110
|
+
label: ready # or array: [ready, urgent]
|
|
111
|
+
remove_label: ready # label to remove on completion (defaults to label)
|
|
97
112
|
pick_from: Backlog
|
|
98
113
|
in_progress: In Progress
|
|
99
114
|
done: In Review
|
|
100
115
|
|
|
116
|
+
bell: true # terminal bell on issue completion
|
|
117
|
+
|
|
101
118
|
platform: cli # "cli" (gh), "token" (GITHUB_TOKEN), "gitlab", "bitbucket"
|
|
102
119
|
base_branch: main
|
|
103
120
|
```
|
|
@@ -120,6 +137,21 @@ SHORTCUT_API_TOKEN=""
|
|
|
120
137
|
GITLAB_TOKEN=""
|
|
121
138
|
GITHUB_TOKEN=""
|
|
122
139
|
JIRA_BASE_URL="" && JIRA_EMAIL="" && JIRA_API_TOKEN=""
|
|
140
|
+
|
|
141
|
+
# Self-hosted instances (optional)
|
|
142
|
+
PLANE_BASE_URL="" # default: https://api.plane.so
|
|
143
|
+
GITLAB_BASE_URL="" # default: https://gitlab.com
|
|
144
|
+
PLANE_WORKSPACE="" # fallback for source_config.scope
|
|
145
|
+
|
|
146
|
+
# Goose backend (required when provider: goose)
|
|
147
|
+
GOOSE_PROVIDER="" # gemini-cli, anthropic, openai, google, ollama
|
|
148
|
+
GOOSE_MODEL="" # model name for the selected backend
|
|
149
|
+
|
|
150
|
+
# AI provider API keys (used by Aider / Goose / wizard auto-detection)
|
|
151
|
+
ANTHROPIC_API_KEY=""
|
|
152
|
+
OPENAI_API_KEY=""
|
|
153
|
+
GEMINI_API_KEY=""
|
|
154
|
+
GOOGLE_API_KEY="" # for Goose with goose_provider: google
|
|
123
155
|
```
|
|
124
156
|
|
|
125
157
|
</details>
|
|
@@ -133,6 +165,7 @@ JIRA_BASE_URL="" && JIRA_EMAIL="" && JIRA_API_TOKEN=""
|
|
|
133
165
|
| `project` | Project name | — | Project ID | — | — | — | — |
|
|
134
166
|
| `pick_from` | Status name | List name | State name | Workflow state | — | — | Status name |
|
|
135
167
|
| `label` | Label | Label | Label | Label | Label | Label | Label |
|
|
168
|
+
| `remove_label` | Label | Label | Label | Label | — | — | — |
|
|
136
169
|
| `in_progress` | Status | Column | State | Workflow state | Label | Label | Status |
|
|
137
170
|
| `done` | Status | Column | State | Workflow state | Closes issue | Closes issue | Status |
|
|
138
171
|
|
|
@@ -163,6 +196,7 @@ Lisa runs a planning phase, then executes steps sequentially — one worktree an
|
|
|
163
196
|
loop:
|
|
164
197
|
cooldown: 10 # seconds between issues
|
|
165
198
|
session_timeout: 0 # max seconds per provider run (0 = disabled)
|
|
199
|
+
output_stall_timeout: 120 # seconds without stdout before killing provider (0 = disabled)
|
|
166
200
|
|
|
167
201
|
overseer:
|
|
168
202
|
enabled: true
|