feat(FN-3858): untrack plugin dist artifacts to unblock autostash

Removes committed `dist/` build artifacts from `fusion-plugin-hermes-runtime` and `fusion-plugin-openclaw-runtime` (56 files, ~2200 lines deleted), unblocking autostash during rebase by ensuring compiled output is no longer tracked in git.

Fusion-Task-Id: FN-3858
This commit is contained in:
Fusion
2026-05-09 10:37:07 -07:00
committed by gsxdsm
parent c4e0c1d28c
commit 66e480baea
56 changed files with 0 additions and 2209 deletions

View File

@@ -1,21 +0,0 @@
/**
* Hermes Runtime Adapter — drives the local `hermes` CLI as a subprocess.
*
* Each call to `promptWithFallback` invokes `hermes chat -q ... -Q --source tool`
* and captures the resulting `session_id:` line. Subsequent calls on the same
* session pass `--resume <id>` to continue the conversation.
*/
import type { HermesCliSettings } from "./cli-spawn.js";
import type { AgentRuntime, AgentRuntimeOptions, AgentSession, AgentSessionResult } from "./types.js";
export declare class HermesRuntimeAdapter implements AgentRuntime {
readonly id = "hermes";
readonly name = "Hermes Runtime";
private readonly settings;
constructor(settings?: Record<string, unknown> | HermesCliSettings);
createSession(options: AgentRuntimeOptions): Promise<AgentSessionResult>;
promptWithFallback(session: AgentSession, prompt: string, _options?: unknown): Promise<void>;
describeModel(session: AgentSession): string;
dispose(_session: AgentSession): Promise<void>;
private describeFromSettings;
}
//# sourceMappingURL=runtime-adapter.d.ts.map