@bogyie/opencode-kiro-plugin 0.2.6 → 0.2.7

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 CHANGED
@@ -37,7 +37,7 @@ The plugin resolves credentials in this order:
37
37
  2. OpenCode auth input for provider `kiro`
38
38
  3. `kiro-cli whoami` diagnostics for CLI session visibility
39
39
 
40
- Direct fetch mode requires an API key/token usable by the Kiro/CodeWhisperer client. `cli-chat` mode uses the official `kiro-cli chat --no-interactive` surface and depends on the local Kiro CLI login state.
40
+ Direct fetch mode requires an API key/token usable by the Kiro/CodeWhisperer client. `cli-chat` mode uses the official `kiro-cli chat --no-interactive` surface and depends on the local Kiro CLI login state. `acp` mode uses the official `kiro-cli acp` surface, but is still treated as an explicit backend while its real-world protocol behavior is validated across Kiro CLI versions.
41
41
 
42
42
  Use the `kiro_status` plugin tool to inspect provider id, backend, region, auth method, and discovered model count. Secrets are redacted in diagnostics.
43
43
 
@@ -65,9 +65,9 @@ Configure the backend through plugin options:
65
65
 
66
66
  Supported values:
67
67
 
68
- - `auto`: use CodeWhisperer fetch transport when an API key is available; otherwise use CLI chat fallback.
68
+ - `auto`: use CodeWhisperer fetch transport when an API key is available; otherwise use streaming `cli-chat` with the local Kiro CLI login.
69
69
  - `fetch`: require the direct Kiro/CodeWhisperer fetch path. If no usable auth is available, requests fail with a structured backend/auth error.
70
- - `cli-chat`: call `kiro-cli chat --no-interactive --model <model>`. This is official and stable, and uses the model selected in OpenCode.
70
+ - `cli-chat`: spawn `kiro-cli chat --no-interactive --model <model>` and stream stdout chunks as they arrive. Chunk granularity is controlled by Kiro CLI.
71
71
  - `acp`: launch `kiro-cli acp`, initialize a session, optionally set the requested model, send the prompt, and collect `AgentMessageChunk` notifications until `TurnEnd`.
72
72
 
73
73
  `trustAllTools` affects both `cli-chat` and ACP permission handling. In ACP mode, permission requests are rejected by default and allowed only when `trustAllTools: true`.
@@ -1,17 +1,22 @@
1
1
  import type { CommandRunner } from "./auth.js";
2
2
  import type { KiroTransport } from "./fetch-adapter.js";
3
3
  import type { KiroGenerateRequest } from "./request-adapter.js";
4
- import type { KiroGenerateResponse } from "./response-adapter.js";
4
+ import type { KiroGenerateResponse, KiroStreamEvent } from "./response-adapter.js";
5
+ import { type ChildProcess } from "node:child_process";
5
6
  export interface CliChatTransportOptions {
6
7
  readonly runner?: CommandRunner;
8
+ readonly spawner?: CliChatSpawner;
7
9
  readonly trustAllTools?: boolean;
8
10
  readonly requestTimeoutMs?: number;
9
11
  }
12
+ export type CliChatSpawner = (command: string, args: ReadonlyArray<string>) => ChildProcess;
10
13
  export declare function promptForCli(request: KiroGenerateRequest): string;
11
14
  export declare function cliChatArgs(request: KiroGenerateRequest, options?: Pick<CliChatTransportOptions, "trustAllTools">): string[];
12
15
  export declare function sanitizeCliChatOutput(output: string): string;
16
+ export declare function sanitizeCliChatStreamingOutput(output: string): string;
13
17
  export declare class KiroCliChatTransport implements KiroTransport {
14
18
  #private;
15
19
  constructor(options?: CliChatTransportOptions);
16
20
  generate(request: KiroGenerateRequest): Promise<KiroGenerateResponse>;
21
+ stream(request: KiroGenerateRequest): AsyncIterable<KiroStreamEvent>;
17
22
  }
@@ -1,5 +1,6 @@
1
1
  import { runCommand } from "./auth.js";
2
2
  import { KiroPluginError } from "./errors.js";
3
+ import { spawn } from "node:child_process";
3
4
  export function promptForCli(request) {
4
5
  const parts = [
5
6
  request.system ? `System:\n${request.system}` : "",
@@ -29,12 +30,65 @@ export function sanitizeCliChatOutput(output) {
29
30
  }
30
31
  return lines.join("\n").trim();
31
32
  }
33
+ export function sanitizeCliChatStreamingOutput(output) {
34
+ const text = output.replace(/\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])/g, "").replace(/\r/g, "");
35
+ const lines = text
36
+ .split("\n")
37
+ .filter((line) => !line.includes("Credits:"));
38
+ if (lines[0]?.trimStart().startsWith(">")) {
39
+ lines[0] = lines[0].replace(/^\s*>\s*/, "");
40
+ }
41
+ return lines.join("\n");
42
+ }
43
+ class AsyncQueue {
44
+ #values = [];
45
+ #waiting = [];
46
+ #closed = false;
47
+ #error;
48
+ push(value) {
49
+ if (this.#closed || this.#error)
50
+ return;
51
+ this.#values.push(value);
52
+ this.#wake();
53
+ }
54
+ close() {
55
+ this.#closed = true;
56
+ this.#wake();
57
+ }
58
+ fail(error) {
59
+ this.#error = error;
60
+ this.#wake();
61
+ }
62
+ #wake() {
63
+ for (const resolve of this.#waiting.splice(0))
64
+ resolve();
65
+ }
66
+ async *[Symbol.asyncIterator]() {
67
+ for (;;) {
68
+ if (this.#values.length > 0) {
69
+ const value = this.#values.shift();
70
+ if (value !== undefined)
71
+ yield value;
72
+ continue;
73
+ }
74
+ if (this.#error)
75
+ throw this.#error;
76
+ if (this.#closed)
77
+ return;
78
+ await new Promise((resolve) => {
79
+ this.#waiting.push(resolve);
80
+ });
81
+ }
82
+ }
83
+ }
32
84
  export class KiroCliChatTransport {
33
85
  #runner;
86
+ #spawner;
34
87
  #trustAllTools;
35
88
  #requestTimeoutMs;
36
89
  constructor(options = {}) {
37
90
  this.#runner = options.runner ?? runCommand;
91
+ this.#spawner = options.spawner ?? ((command, args) => spawn(command, [...args], { stdio: ["ignore", "pipe", "pipe"] }));
38
92
  this.#trustAllTools = options.trustAllTools === true;
39
93
  this.#requestTimeoutMs = options.requestTimeoutMs ?? 120_000;
40
94
  }
@@ -55,4 +109,55 @@ export class KiroCliChatTransport {
55
109
  modelId: request.modelId,
56
110
  };
57
111
  }
112
+ async *stream(request) {
113
+ const child = this.#spawner("kiro-cli", cliChatArgs(request, { trustAllTools: this.#trustAllTools }));
114
+ const queue = new AsyncQueue();
115
+ let rawStdout = "";
116
+ let emittedText = "";
117
+ let stderr = "";
118
+ let sawText = false;
119
+ const timer = setTimeout(() => {
120
+ child.kill();
121
+ queue.fail(new KiroPluginError("Timed out waiting for kiro-cli chat response.", "KIRO_TIMEOUT", 504));
122
+ }, this.#requestTimeoutMs);
123
+ child.stdout?.on("data", (chunk) => {
124
+ rawStdout += chunk.toString("utf8");
125
+ const cleaned = sanitizeCliChatStreamingOutput(rawStdout);
126
+ if (!cleaned.startsWith(emittedText))
127
+ return;
128
+ const delta = cleaned.slice(emittedText.length);
129
+ emittedText = cleaned;
130
+ if (!delta)
131
+ return;
132
+ sawText = true;
133
+ queue.push({ type: "text", text: delta, modelId: request.modelId });
134
+ });
135
+ child.stderr?.on("data", (chunk) => {
136
+ stderr += chunk.toString("utf8");
137
+ });
138
+ child.on("error", (error) => {
139
+ clearTimeout(timer);
140
+ queue.fail(new KiroPluginError(error.message, "KIRO_CLI_FAILED", 502));
141
+ });
142
+ child.on("exit", (code, signal) => {
143
+ clearTimeout(timer);
144
+ if (code === 0) {
145
+ if (sawText)
146
+ queue.close();
147
+ else
148
+ queue.fail(new KiroPluginError(stderr.trim() || "kiro-cli chat completed without returning assistant text", "KIRO_EMPTY_RESPONSE", 502));
149
+ return;
150
+ }
151
+ const authError = stderr.toLowerCase().includes("not logged in");
152
+ queue.fail(new KiroPluginError(stderr.trim() || `kiro-cli chat exited${code === null ? "" : ` with code ${code}`}${signal ? ` and signal ${signal}` : ""}`, authError ? "KIRO_AUTH_ERROR" : "KIRO_CLI_FAILED", authError ? 401 : 502));
153
+ });
154
+ try {
155
+ yield* queue;
156
+ }
157
+ finally {
158
+ clearTimeout(timer);
159
+ if (!child.killed && child.exitCode === null)
160
+ child.kill();
161
+ }
162
+ }
58
163
  }
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ export { AcpJsonRpcClient, createAcpStdioClient, decodeJsonRpc, encodeJsonRpc }
2
2
  export type { AcpConnection, AcpNotificationHandler, AcpStdioClientOptions, JsonRpcMessage } from "./acp-client.js";
3
3
  export { acpPermissionResponse, KiroAcpTransport } from "./acp-transport.js";
4
4
  export type { AcpSessionClient, KiroAcpTransportOptions } from "./acp-transport.js";
5
- export { createKiroPlugin, KiroPlugin } from "./plugin.js";
5
+ export { createKiroPlugin, effectiveBackend, KiroPlugin } from "./plugin.js";
6
6
  export { detectAuth, redacted, resolveApiKey } from "./auth.js";
7
7
  export { cliChatArgs, KiroCliChatTransport, promptForCli } from "./cli-transport.js";
8
8
  export { createKiroFetch } from "./fetch-adapter.js";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { KiroPlugin } from "./plugin.js";
2
2
  export { AcpJsonRpcClient, createAcpStdioClient, decodeJsonRpc, encodeJsonRpc } from "./acp-client.js";
3
3
  export { acpPermissionResponse, KiroAcpTransport } from "./acp-transport.js";
4
- export { createKiroPlugin, KiroPlugin } from "./plugin.js";
4
+ export { createKiroPlugin, effectiveBackend, KiroPlugin } from "./plugin.js";
5
5
  export { detectAuth, redacted, resolveApiKey } from "./auth.js";
6
6
  export { cliChatArgs, KiroCliChatTransport, promptForCli } from "./cli-transport.js";
7
7
  export { createKiroFetch } from "./fetch-adapter.js";
package/dist/plugin.d.ts CHANGED
@@ -2,7 +2,10 @@ import type { Plugin } from "@opencode-ai/plugin";
2
2
  import type { KiroAcpTransportOptions } from "./acp-transport.js";
3
3
  import type { KiroPluginOptions } from "./config.js";
4
4
  import type { KiroTransportOptions } from "./kiro-transport.js";
5
+ type EffectiveBackend = "fetch" | "cli-chat" | "acp" | "none";
6
+ export declare function effectiveBackend(options: Pick<KiroPluginOptions, "backend">, accessToken?: string): EffectiveBackend;
5
7
  export declare function acpTransportOptions(options: Pick<KiroPluginOptions, "requestTimeoutMs" | "trustAllTools">): KiroAcpTransportOptions;
6
8
  export declare function fetchTransportOptions(options: Pick<KiroPluginOptions, "region" | "endpoint" | "profileArn" | "userAgent" | "agentMode" | "maxAttempts" | "requestTimeoutMs">, accessToken: string): KiroTransportOptions;
7
9
  export declare function createKiroPlugin(): Plugin;
8
10
  export declare const KiroPlugin: Plugin;
11
+ export {};
package/dist/plugin.js CHANGED
@@ -48,25 +48,34 @@ function bearerToken(init) {
48
48
  const match = header?.match(/^Bearer\s+(.+)$/i);
49
49
  return match?.[1] || undefined;
50
50
  }
51
- function localTransport(options, accessToken) {
51
+ export function effectiveBackend(options, accessToken) {
52
+ const apiKey = accessToken || process.env.KIRO_API_KEY;
52
53
  if (options.backend === "acp")
54
+ return "acp";
55
+ if (options.backend === "cli-chat")
56
+ return "cli-chat";
57
+ if (options.backend === "fetch")
58
+ return apiKey && apiKey !== "kiro-plugin-local-transport" ? "fetch" : "none";
59
+ if (apiKey && apiKey !== "kiro-plugin-local-transport")
60
+ return "fetch";
61
+ return "cli-chat";
62
+ }
63
+ function localTransport(options, accessToken) {
64
+ const backend = effectiveBackend(options, accessToken);
65
+ if (backend === "acp")
53
66
  return new KiroAcpTransport(acpTransportOptions(options));
54
- if (options.backend === "cli-chat") {
67
+ if (backend === "cli-chat") {
55
68
  return new KiroCliChatTransport({
56
69
  trustAllTools: options.trustAllTools,
57
70
  ...(options.requestTimeoutMs ? { requestTimeoutMs: options.requestTimeoutMs } : {}),
58
71
  });
59
72
  }
60
- const apiKey = accessToken || process.env.KIRO_API_KEY;
61
- if (apiKey && apiKey !== "kiro-plugin-local-transport") {
73
+ if (backend === "fetch") {
74
+ const apiKey = accessToken || process.env.KIRO_API_KEY;
75
+ if (!apiKey || apiKey === "kiro-plugin-local-transport")
76
+ return undefined;
62
77
  return new CodeWhispererKiroTransport(fetchTransportOptions(options, apiKey));
63
78
  }
64
- if (options.backend === "auto") {
65
- return new KiroCliChatTransport({
66
- trustAllTools: options.trustAllTools,
67
- ...(options.requestTimeoutMs ? { requestTimeoutMs: options.requestTimeoutMs } : {}),
68
- });
69
- }
70
79
  return undefined;
71
80
  }
72
81
  export function acpTransportOptions(options) {
@@ -200,6 +209,7 @@ export function createKiroPlugin() {
200
209
  output: [
201
210
  `provider: ${options.providerID}`,
202
211
  `backend: ${options.backend}`,
212
+ `effective backend: ${effectiveBackend(options)}`,
203
213
  `region: ${auth.region}`,
204
214
  `auth: ${auth.method}`,
205
215
  `authenticated: ${auth.authenticated ? "yes" : "no"}`,
@@ -209,6 +219,7 @@ export function createKiroPlugin() {
209
219
  metadata: {
210
220
  providerID: options.providerID,
211
221
  backend: options.backend,
222
+ effectiveBackend: effectiveBackend(options),
212
223
  region: auth.region,
213
224
  authMethod: auth.method,
214
225
  authenticated: auth.authenticated,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bogyie/opencode-kiro-plugin",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "OpenCode plugin for using Kiro as a provider adapter",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",