@tarcisiopgs/lisa 1.0.0 → 1.0.1

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,7 @@ Lisa is deterministic. She follows a structured pipeline with clear stages (fetc
16
16
 
17
17
  - **Token efficiency** — Each issue gets one focused prompt with full context. No wasted retries, no speculative exploration, no idle polling.
18
18
  - **Multi-repo awareness** — Lisa detects which repos the agent touched and creates one PR per repo. Monorepos with multiple packages just work.
19
- - **Provider fallback** — Configure a chain of models (`claude → gemini → opencode`). Transient errors (429, quota, timeout) trigger the next provider; non-transient errors stop the chain.
19
+ - **Model fallback** — Configure a chain of models (`claude → gemini → opencode`). Transient errors (429, quota, timeout) trigger the next model; non-transient errors stop the chain.
20
20
  - **Workflow integration** — Issues move through your board in real time (Backlog → In Progress → In Review). Your team always knows what's being worked on.
21
21
  - **Self-healing** — Orphan issues (stuck in "In Progress" from interrupted runs) are automatically recovered on startup. Pre-push hook failures trigger the agent to fix and retry.
22
22
  - **Guardrails** — Past failures are logged and injected into future prompts so the agent avoids repeating mistakes.
@@ -99,7 +99,7 @@ All providers use `child_process.spawn` with `sh -c`. Prompts are written to a t
99
99
 
100
100
  ### Fallback Chain
101
101
 
102
- Configure multiple providers in the `models` array. Lisa tries them in order — transient errors (429, quota, timeout, network) trigger the next provider. Non-transient errors stop the chain immediately.
102
+ Configure multiple models in the `models` array. Lisa tries them in order — transient errors (429, quota, timeout, network) trigger the next model. Non-transient errors stop the chain immediately.
103
103
 
104
104
  ```yaml
105
105
  models:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarcisiopgs/lisa",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Deterministic autonomous issue resolver — structured AI agent loop for Linear/Trello",
5
5
  "license": "MIT",
6
6
  "type": "module",