@tarcisiopgs/lisa 1.19.1 → 1.19.3
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 +9 -2
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# Lisa
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<
|
|
4
|
+
<strong>Label an issue. Walk away. Come back to a PR.</strong>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<
|
|
8
|
+
<a href="https://www.npmjs.com/package/@tarcisiopgs/lisa"><img src="https://img.shields.io/npm/v/@tarcisiopgs/lisa.svg" alt="npm version" /></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/@tarcisiopgs/lisa"><img src="https://img.shields.io/npm/dm/@tarcisiopgs/lisa.svg" alt="npm downloads" /></a>
|
|
10
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License: MIT" /></a>
|
|
11
|
+
<img src="https://img.shields.io/node/v/%40tarcisiopgs%2Flisa" alt="Node.js version" />
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<p align="center">
|
|
15
|
+
<img src="assets/demo.gif" alt="Lisa demo" />
|
|
9
16
|
</p>
|
|
10
17
|
|
|
11
18
|
<p align="center">
|
package/dist/index.js
CHANGED
|
@@ -7220,7 +7220,11 @@ async function runLoop(config2, opts) {
|
|
|
7220
7220
|
rotateLogFiles(workspace);
|
|
7221
7221
|
if (!opts.dryRun) {
|
|
7222
7222
|
const contextLogFile = join19(workspace, ".lisa", "context-generation.log");
|
|
7223
|
-
|
|
7223
|
+
ensureWorkspaceContext(config2, models, workspace, contextLogFile).catch((err) => {
|
|
7224
|
+
warn(
|
|
7225
|
+
`Background context generation failed: ${err instanceof Error ? err.message : String(err)}`
|
|
7226
|
+
);
|
|
7227
|
+
});
|
|
7224
7228
|
}
|
|
7225
7229
|
log(
|
|
7226
7230
|
`Starting loop (models: ${models.map((m) => m.model ? `${m.provider}/${m.model}` : m.provider).join(" \u2192 ")}, source: ${config2.source}, label: ${formatLabels(config2.source_config)}, workflow: ${config2.workflow}${concurrency > 1 ? `, concurrency: ${concurrency}` : ""})`
|