feat(FN-1757): clear residual lint debt in engine package

- Remove unused imports across 25 files in engine package
- Remove unused variable declarations in ipc-worker.ts, child-process-runtime.ts, and mission-autopilot.ts
- Clean up unnecessary imports in agent-instructions.ts, agent-tools.ts, cron-runner.ts, executor.ts, and other modules
- Minor cleanup in notifier.ts, peer-exchange-service.ts, pi.ts, plugin-runner.ts, and other files
- Improves code quality and reduces potential confusion from unused code
This commit is contained in:
Fusion
2026-04-15 02:20:39 -07:00
committed by gsxdsm
parent d87ab0e26f
commit d2bf84538f
25 changed files with 47 additions and 44 deletions

View File

@@ -5,6 +5,7 @@
* Provides factory functions for creating triage and executor agent sessions.
*/
/* eslint-disable @typescript-eslint/no-explicit-any */
import { existsSync, readFileSync } from "node:fs";
import { exec } from "node:child_process";
import { promisify } from "node:util";
@@ -396,7 +397,6 @@ export function wrapToolsWithBoundary(
}
// Store the original execute function
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const originalExecute = tool.execute as any;
@@ -404,9 +404,9 @@ export function wrapToolsWithBoundary(
...tool,
execute: async (...args: any[]) => {
const toolCallId = args[0] as string;
const _toolCallId = args[0] as string;
const params = args[1] as Record<string, unknown>;
const signal = args[2] as AbortSignal | undefined;
const _signal = args[2] as AbortSignal | undefined;
// Check path argument for file operations
const pathArg = params.path as string | undefined;
@@ -528,7 +528,6 @@ export async function createKbAgent(options: AgentOptions): Promise<AgentResult>
authStorage,
modelRegistry,
resourceLoader,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
tools: wrappedTools as any,
customTools: options.customTools,
sessionManager,