opencode-kiro 0.1.4 → 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.
|
@@ -39,9 +39,9 @@ function createContextView(api, sessionID) {
|
|
|
39
39
|
mutedLine(theme, () => `${usage().percent ?? 0}% used`)
|
|
40
40
|
);
|
|
41
41
|
const costLines = createMemo(() => spendLines({ cost: cost(), credits: credits() }));
|
|
42
|
-
|
|
42
|
+
insertNode(
|
|
43
43
|
root,
|
|
44
|
-
() => costLines().
|
|
44
|
+
mutedLine(theme, () => costLines().join("\n"))
|
|
45
45
|
);
|
|
46
46
|
return root;
|
|
47
47
|
}
|
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-
|
|
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.
|
|
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)",
|