opencode-kiro 0.1.5 → 0.1.6

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.
@@ -38,10 +38,11 @@ function createContextView(api, sessionID) {
38
38
  root,
39
39
  mutedLine(theme, () => `${usage().percent ?? 0}% used`)
40
40
  );
41
- const costBox = createElement("box");
42
- insertNode(root, costBox);
43
41
  const costLines = createMemo(() => spendLines({ cost: cost(), credits: credits() }));
44
- insert(costBox, () => costLines().map((line) => mutedLine(theme, () => line)));
42
+ insertNode(
43
+ root,
44
+ mutedLine(theme, () => costLines().join("\n"))
45
+ );
45
46
  return root;
46
47
  }
47
48
  function headerLine(theme) {
package/dist/tui.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
 
10
10
  // src/tui.ts
11
11
  var tui = async (api) => {
12
- const { createContextView } = await import("./context-view-UFA6UYZV.js");
12
+ const { createContextView } = await import("./context-view-E6Q2FXL3.js");
13
13
  const { createCreditsChipView } = await import("./credits-chip-view-RL5JAEZ5.js");
14
14
  api.slots.register({
15
15
  order: 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-kiro",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "The ACP-compliant Kiro plugin for opencode: auth via the official kiro-cli login, 12 Kiro models through the Agent Client Protocol, and TUI credits display",
5
5
  "license": "MIT",
6
6
  "author": "Nacho F. Lizaur (https://github.com/NachoFLizaur)",