@tarcisiopgs/lisa 1.14.0 → 1.14.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.
- package/README.md +1 -1
- package/dist/index.js +46 -22
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -6740,40 +6740,44 @@ function installSignalHandlers() {
|
|
|
6740
6740
|
// src/loop/demo.ts
|
|
6741
6741
|
async function runDemoLoop() {
|
|
6742
6742
|
const demoIssues = [
|
|
6743
|
-
{ id: "INT-
|
|
6744
|
-
{ id: "INT-513", title: "WebSocket leak" },
|
|
6745
|
-
{ id: "INT-
|
|
6743
|
+
{ id: "INT-514", title: "Dark mode UI" },
|
|
6744
|
+
{ id: "INT-513", title: "WebSocket leak fix" },
|
|
6745
|
+
{ id: "INT-512", title: "Rate limiter middleware" },
|
|
6746
|
+
{ id: "INT-511", title: "Sidebar navigation icons" },
|
|
6747
|
+
{ id: "INT-510", title: "Blog post CRUD" },
|
|
6748
|
+
{ id: "INT-509", title: "Admin FAQ management" },
|
|
6749
|
+
{ id: "INT-508", title: "Changelog CRUD" }
|
|
6746
6750
|
];
|
|
6747
6751
|
await sleep2(3e3);
|
|
6748
6752
|
kanbanEmitter.emit("provider:model-changed", "claude-sonnet-4-6");
|
|
6749
6753
|
await sleep2(400);
|
|
6750
|
-
for (const
|
|
6754
|
+
for (const issue4 of demoIssues) {
|
|
6751
6755
|
kanbanEmitter.emit("issue:queued", {
|
|
6752
|
-
id:
|
|
6753
|
-
title:
|
|
6756
|
+
id: issue4.id,
|
|
6757
|
+
title: issue4.title,
|
|
6754
6758
|
description: "",
|
|
6755
6759
|
url: ""
|
|
6756
6760
|
});
|
|
6757
|
-
await sleep2(
|
|
6761
|
+
await sleep2(200);
|
|
6758
6762
|
}
|
|
6759
|
-
await sleep2(
|
|
6763
|
+
await sleep2(1e3);
|
|
6760
6764
|
const issue1 = demoIssues[0];
|
|
6761
6765
|
kanbanEmitter.emit("issue:started", issue1.id);
|
|
6762
6766
|
const outputs1 = [
|
|
6763
6767
|
"Reading issue description...\n",
|
|
6764
6768
|
"Analyzing codebase structure...\n",
|
|
6765
|
-
"Creating src/
|
|
6766
|
-
"
|
|
6767
|
-
"Adding
|
|
6769
|
+
"Creating src/theme/dark-mode.ts...\n",
|
|
6770
|
+
"Updating CSS variables for dark palette...\n",
|
|
6771
|
+
"Adding toggle component...\n",
|
|
6768
6772
|
"Running tests... all passing \u2713\n",
|
|
6769
|
-
"Pushing branch int-
|
|
6773
|
+
"Pushing branch int-514-dark-mode-ui...\n"
|
|
6770
6774
|
];
|
|
6771
6775
|
for (const line of outputs1) {
|
|
6772
6776
|
kanbanEmitter.emit("issue:output", issue1.id, line);
|
|
6773
|
-
await sleep2(
|
|
6777
|
+
await sleep2(500);
|
|
6774
6778
|
}
|
|
6775
|
-
kanbanEmitter.emit("issue:done", issue1.id, ["https://github.com/acme/webapp/pull/
|
|
6776
|
-
await sleep2(
|
|
6779
|
+
kanbanEmitter.emit("issue:done", issue1.id, ["https://github.com/acme/webapp/pull/91"]);
|
|
6780
|
+
await sleep2(1e3);
|
|
6777
6781
|
const issue2 = demoIssues[1];
|
|
6778
6782
|
kanbanEmitter.emit("issue:started", issue2.id);
|
|
6779
6783
|
const outputs2 = [
|
|
@@ -6781,16 +6785,33 @@ async function runDemoLoop() {
|
|
|
6781
6785
|
"Locating WebSocket connection handler...\n",
|
|
6782
6786
|
"Patching connection lifecycle in src/ws/handler.ts...\n",
|
|
6783
6787
|
"Adding cleanup in disconnect callback...\n",
|
|
6784
|
-
"
|
|
6788
|
+
"Running tests... all passing \u2713\n",
|
|
6789
|
+
"Pushing branch int-513-fix-ws-leak...\n"
|
|
6785
6790
|
];
|
|
6786
6791
|
for (const line of outputs2) {
|
|
6787
6792
|
kanbanEmitter.emit("issue:output", issue2.id, line);
|
|
6788
|
-
await sleep2(
|
|
6793
|
+
await sleep2(500);
|
|
6789
6794
|
}
|
|
6790
|
-
kanbanEmitter.emit("issue:done", issue2.id, ["https://github.com/acme/webapp/pull/
|
|
6791
|
-
await sleep2(
|
|
6792
|
-
|
|
6793
|
-
|
|
6795
|
+
kanbanEmitter.emit("issue:done", issue2.id, ["https://github.com/acme/webapp/pull/92"]);
|
|
6796
|
+
await sleep2(1e3);
|
|
6797
|
+
const issue3 = demoIssues[2];
|
|
6798
|
+
kanbanEmitter.emit("issue:started", issue3.id);
|
|
6799
|
+
const outputs3 = [
|
|
6800
|
+
"Reading issue description...\n",
|
|
6801
|
+
"Creating src/middleware/rateLimiter.ts...\n",
|
|
6802
|
+
"Writing sliding window rate limiter...\n",
|
|
6803
|
+
"Adding tests in rateLimiter.test.ts...\n",
|
|
6804
|
+
"Running tests... all passing \u2713\n",
|
|
6805
|
+
"Pushing branch int-512-rate-limiting...\n"
|
|
6806
|
+
];
|
|
6807
|
+
for (const line of outputs3) {
|
|
6808
|
+
kanbanEmitter.emit("issue:output", issue3.id, line);
|
|
6809
|
+
await sleep2(500);
|
|
6810
|
+
}
|
|
6811
|
+
kanbanEmitter.emit("issue:done", issue3.id, ["https://github.com/acme/webapp/pull/93"]);
|
|
6812
|
+
await sleep2(1e3);
|
|
6813
|
+
kanbanEmitter.emit("work:complete", { total: 3, duration: 127e3 });
|
|
6814
|
+
await sleep2(4e3);
|
|
6794
6815
|
kanbanEmitter.emit("tui:exit");
|
|
6795
6816
|
}
|
|
6796
6817
|
|
|
@@ -6892,10 +6913,13 @@ var run = defineCommand5({
|
|
|
6892
6913
|
team: "Engineering",
|
|
6893
6914
|
project: "Web App",
|
|
6894
6915
|
label: "ready",
|
|
6895
|
-
pick_from: "
|
|
6916
|
+
pick_from: "Backlog",
|
|
6896
6917
|
in_progress: "In Progress",
|
|
6897
6918
|
done: "Done"
|
|
6898
6919
|
},
|
|
6920
|
+
provider_options: {
|
|
6921
|
+
claude: { models: ["claude-sonnet-4-6"] }
|
|
6922
|
+
},
|
|
6899
6923
|
loop: { cooldown: 30 },
|
|
6900
6924
|
bell: false
|
|
6901
6925
|
};
|