chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
export { clearPendingStore, consumeToolMetadata, getPendingStoreSize, storeToolMetadata, } from "./store";
export type { PendingToolMetadata } from "./store";
+39
View File
@@ -0,0 +1,39 @@
/**
* Pending tool metadata store.
*
* OpenCode's `fromPlugin()` wrapper always replaces the metadata returned by
* plugin tools with `{ truncated, outputPath }`, discarding any sessionId,
* title, or custom metadata set during `execute()`.
*
* This store captures metadata written via `ctx.metadata()` inside execute(),
* then the `tool.execute.after` hook consumes it and merges it back into the
* result *before* the processor writes the final part to the session store.
*
* Flow:
* execute() → storeToolMetadata(sessionID, callID, data)
* fromPlugin() → overwrites metadata with { truncated }
* tool.execute.after → consumeToolMetadata(sessionID, callID) → merges back
* processor → Session.updatePart(status:"completed", metadata: result.metadata)
*/
export interface PendingToolMetadata {
title?: string;
metadata?: Record<string, unknown>;
}
/**
* Store metadata to be restored after fromPlugin() overwrites it.
* Called from tool execute() functions alongside ctx.metadata().
*/
export declare function storeToolMetadata(sessionID: string, callID: string, data: PendingToolMetadata): void;
/**
* Consume stored metadata (one-time read, removes from store).
* Called from tool.execute.after hook.
*/
export declare function consumeToolMetadata(sessionID: string, callID: string): PendingToolMetadata | undefined;
/**
* Get current store size (for testing/debugging).
*/
export declare function getPendingStoreSize(): number;
/**
* Clear all pending metadata (for testing).
*/
export declare function clearPendingStore(): void;