@tarcisiopgs/lisa 1.8.1 → 1.8.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.
Files changed (2) hide show
  1. package/README.md +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -57,7 +57,7 @@ Lisa follows a deterministic pipeline:
57
57
  2. **Activate** — Moves the issue to `in_progress` so your team knows it's being worked on.
58
58
  3. **Implement** — Builds a structured prompt with full issue context and sends it to the AI agent. The agent works in a worktree or branch, implements the change, runs tests, and commits.
59
59
  4. **Validate** — If the agent's tests pass and pre-push hooks succeed, the branch is pushed. If hooks fail, Lisa re-invokes the agent with the error output and retries.
60
- 5. **PR** — Pushes the branch and creates a pull request referencing the original issue. The PR body includes a footer crediting the provider that resolved it.
60
+ 5. **PR** — Pushes the branch and creates a pull request referencing the original issue.
61
61
  6. **Update** — Moves the issue to the `done` status and removes the pickup label.
62
62
  7. **Next** — Picks the next issue. When there are no more matching issues, Lisa stops.
63
63
 
@@ -86,7 +86,9 @@ Lisa follows a deterministic pipeline:
86
86
 
87
87
  At least one provider must be installed and available in your PATH.
88
88
 
89
- > **Cursor Free plan** — `lisa init` automatically detects Free accounts and restricts model selection to `auto` only. On paid plans, a curated list of top-tier models is shown (`composer-1.5`, `opus-4.6`, `sonnet-4.6`, `gpt-5.3-codex`, etc.).
89
+ > **Cursor Free plan** — `lisa init` automatically detects Free accounts and restricts model selection to `auto` only. On paid plans, available models are fetched live from `cursor --list-models` and filtered to a curated top-tier list (`composer-1.5`, `opus-4.6`, `sonnet-4.6`, `gpt-5.3-codex`, etc.).
90
+
91
+ > **OpenCode** — `lisa init` fetches available models from `opencode models` and filters them based on which API keys are present in your environment (`ANTHROPIC_API_KEY`, `GEMINI_API_KEY`, `OPENAI_API_KEY`, `GITHUB_TOKEN`, `GROQ_API_KEY`, `MISTRAL_API_KEY`, `DEEPSEEK_API_KEY`). Only models from providers you have credentials for are shown.
90
92
 
91
93
  ### Fallback Chain
92
94
 
@@ -180,12 +182,14 @@ When running in an interactive terminal, `lisa run` renders a real-time Kanban b
180
182
  └──────────────────────────┘ └───────────────────────────┘ └───────────────────────────┘
181
183
  ```
182
184
 
185
+ In-progress cards show a live elapsed timer. When the loop is paused, the active card displays a visual pause indicator. The detail view includes a scroll bar when output overflows.
186
+
183
187
  ### Keyboard shortcuts
184
188
 
185
189
  | Key | Action |
186
190
  |-----|--------|
187
- | `Tab` | Move to next column |
188
- | `Shift+Tab` | Move to previous column |
191
+ | `←` / `→` | Move between columns |
192
+ | `Tab` / `Shift+Tab` | Move between columns (alternative) |
189
193
  | `↑` / `↓` | Navigate cards / scroll output |
190
194
  | `Enter` | Open issue detail view (streams provider output) |
191
195
  | `Esc` | Close detail view, return to board |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarcisiopgs/lisa",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Autonomous issue resolver",
5
5
  "license": "MIT",
6
6
  "type": "module",