@lisa.ai/agent 2.0.2 → 2.0.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/dist/commands/coverage.js +11 -1
- package/dist/commands/heal.js +11 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -78,7 +78,15 @@ async function coverageCommand(command, modelProvider, attempt = 1, maxRetries =
|
|
|
78
78
|
const lines = text.split('\n');
|
|
79
79
|
for (const line of lines) {
|
|
80
80
|
if (line.includes('Executed')) {
|
|
81
|
-
|
|
81
|
+
const cleanLine = line.replace(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, '').trim();
|
|
82
|
+
if (process.stdout.isTTY) {
|
|
83
|
+
process.stdout.clearLine(0);
|
|
84
|
+
process.stdout.cursorTo(0);
|
|
85
|
+
process.stdout.write(`⏳ [Lisa.ai Testing] ${cleanLine}`);
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
process.stdout.write(`\r⏳ [Lisa.ai Testing] ${cleanLine}`);
|
|
89
|
+
}
|
|
82
90
|
}
|
|
83
91
|
}
|
|
84
92
|
}
|
|
@@ -87,6 +95,8 @@ async function coverageCommand(command, modelProvider, attempt = 1, maxRetries =
|
|
|
87
95
|
stderrData += data.toString();
|
|
88
96
|
});
|
|
89
97
|
child.on('close', (code) => {
|
|
98
|
+
if (printProgress)
|
|
99
|
+
process.stdout.write('\n');
|
|
90
100
|
if (code === 0) {
|
|
91
101
|
resolve();
|
|
92
102
|
}
|
package/dist/commands/heal.js
CHANGED
|
@@ -129,7 +129,15 @@ async function healCommand(command, modelProvider, attempt = 1, healedFilePath =
|
|
|
129
129
|
const lines = text.split('\n');
|
|
130
130
|
for (const line of lines) {
|
|
131
131
|
if (line.includes('Executed')) {
|
|
132
|
-
|
|
132
|
+
const cleanLine = line.replace(/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/g, '').trim();
|
|
133
|
+
if (process.stdout.isTTY) {
|
|
134
|
+
process.stdout.clearLine(0);
|
|
135
|
+
process.stdout.cursorTo(0);
|
|
136
|
+
process.stdout.write(`⏳ [Lisa.ai Testing] ${cleanLine}`);
|
|
137
|
+
}
|
|
138
|
+
else {
|
|
139
|
+
process.stdout.write(`\r⏳ [Lisa.ai Testing] ${cleanLine}`);
|
|
140
|
+
}
|
|
133
141
|
}
|
|
134
142
|
}
|
|
135
143
|
}
|
|
@@ -138,6 +146,8 @@ async function healCommand(command, modelProvider, attempt = 1, healedFilePath =
|
|
|
138
146
|
stderrData += data.toString();
|
|
139
147
|
});
|
|
140
148
|
child.on('close', (code) => {
|
|
149
|
+
if (printProgress)
|
|
150
|
+
process.stdout.write('\n');
|
|
141
151
|
if (code === 0) {
|
|
142
152
|
resolve({ stdout: stdoutData, stderr: stderrData });
|
|
143
153
|
}
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ program
|
|
|
25
25
|
.option('-p, --project-id <id>', 'Control Plane Project ID to fetch dynamic config')
|
|
26
26
|
.action(async (options) => {
|
|
27
27
|
printBanner();
|
|
28
|
-
let maxRetries =
|
|
28
|
+
let maxRetries = 5;
|
|
29
29
|
let model = options.model;
|
|
30
30
|
let apiKey = undefined;
|
|
31
31
|
if (options.projectId) {
|
|
@@ -53,7 +53,7 @@ program
|
|
|
53
53
|
.option('-p, --project-id <id>', 'Control Plane Project ID to fetch dynamic config')
|
|
54
54
|
.action(async (options) => {
|
|
55
55
|
printBanner();
|
|
56
|
-
let maxRetries =
|
|
56
|
+
let maxRetries = 5;
|
|
57
57
|
let model = options.model;
|
|
58
58
|
let apiKey = undefined;
|
|
59
59
|
if (options.projectId) {
|