@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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +46 -22
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <img src="assets/demo.gif" alt="Lisa demo" width="800" />
12
+ <img src="assets/demo.gif?v=2" alt="Lisa demo" width="800" />
13
13
  </p>
14
14
 
15
15
  <p align="center">
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-512", title: "Rate limiter" },
6744
- { id: "INT-513", title: "WebSocket leak" },
6745
- { id: "INT-514", title: "Dark mode UI" }
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 issue3 of demoIssues) {
6754
+ for (const issue4 of demoIssues) {
6751
6755
  kanbanEmitter.emit("issue:queued", {
6752
- id: issue3.id,
6753
- title: issue3.title,
6756
+ id: issue4.id,
6757
+ title: issue4.title,
6754
6758
  description: "",
6755
6759
  url: ""
6756
6760
  });
6757
- await sleep2(300);
6761
+ await sleep2(200);
6758
6762
  }
6759
- await sleep2(600);
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/middleware/rateLimiter.ts...\n",
6766
- "Writing rate limiter logic...\n",
6767
- "Adding tests in src/middleware/rateLimiter.test.ts...\n",
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-512-rate-limiting...\n"
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(400);
6777
+ await sleep2(500);
6774
6778
  }
6775
- kanbanEmitter.emit("issue:done", issue1.id, ["https://github.com/acme/webapp/pull/89"]);
6776
- await sleep2(800);
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
- "Pushing branch int-513-fix-ws-memory-leak...\n"
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(400);
6793
+ await sleep2(500);
6789
6794
  }
6790
- kanbanEmitter.emit("issue:done", issue2.id, ["https://github.com/acme/webapp/pull/90"]);
6791
- await sleep2(800);
6792
- kanbanEmitter.emit("work:complete", { total: 2, duration: 14e3 });
6793
- await sleep2(3e3);
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: "Ready",
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarcisiopgs/lisa",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Autonomous issue resolver",
5
5
  "keywords": [
6
6
  "loop",