refactor: eliminate ~400 no-explicit-any warnings across the workspace

Parallel subagent pass: four typescript-pro agents on non-overlapping scopes.

Patterns applied:
- catch (err: any) { ... err.message ... } → catch (err) { ... getErrorMessage(err) ... }
  using the new @fusion/core helper. Bare catch {} where the error was unused.
- SQLite row types: defined typed XxxRow interfaces per table and cast
  .all()/.get() results via `as unknown as XxxRow[]` (the double cast is
  required because better-sqlite3 returns Record<string, SQLOutputValue>).
- rowToX(row: any) converters: typed argument with the matching row interface.
- Dynamic settings key writes: (settings as Record<string, unknown>)[key].
- React event handlers and setState callbacks: inferred types or concrete
  React.{Mouse,Change,Form}Event<...> where needed.
- pi-claude-cli: local PiMessage / PiContext duck types to avoid re-typing
  pi-ai concrete shapes; typed Claude stream event message fields.

72 files changed, ~400 anys eliminated. Typecheck passes across the workspace.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-04-23 18:57:31 -07:00
parent e3b6965620
commit 3fbb7c47cf
72 changed files with 1298 additions and 783 deletions

View File

@@ -1,5 +1,6 @@
import { useState, useCallback, useEffect, useMemo, useRef } from "react";
import type { PlanningQuestion } from "@fusion/core";
import { getErrorMessage } from "@fusion/core";
import {
startMilestoneInterview,
startSliceInterview,
@@ -210,9 +211,9 @@ export function MilestoneSliceInterviewModal({
currentSessionIdRef.current = sessionId;
setLockSessionId(sessionId);
connectToInterviewStream(sessionId);
} catch (err: any) {
} catch (err) {
setIsReconnecting(false);
setError(err.message || `Failed to start ${targetLabel.toLowerCase()} interview`);
setError(getErrorMessage(err) || `Failed to start ${targetLabel.toLowerCase()} interview`);
setView({ type: "initial" });
currentSessionIdRef.current = null;
setLockSessionId(null);
@@ -227,8 +228,8 @@ export function MilestoneSliceInterviewModal({
await skipInterview(targetId, projectId);
onApplied();
setView({ type: "applied" });
} catch (err: any) {
setError(err.message || `Failed to skip ${targetLabel.toLowerCase()} interview`);
} catch (err) {
setError(getErrorMessage(err) || `Failed to skip ${targetLabel.toLowerCase()} interview`);
setIsApplying(false);
}
}, [onApplied, projectId, skipInterview, targetId, targetLabel]);
@@ -395,10 +396,10 @@ export function MilestoneSliceInterviewModal({
try {
connectToInterviewStream(sessionId);
await respondToInterview(sessionId, responses, projectId, sessionTabId);
} catch (err: any) {
} catch (err) {
streamConnectionRef.current?.close();
streamConnectionRef.current = null;
setError(err.message || "Failed to submit response");
setError(getErrorMessage(err) || "Failed to submit response");
setView({ type: "question", sessionId, question: view.question });
}
},
@@ -415,8 +416,8 @@ export function MilestoneSliceInterviewModal({
await applyInterview(view.sessionId, editedSummary || undefined, projectId);
onApplied();
setView({ type: "applied" });
} catch (err: any) {
setError(err.message || "Failed to apply interview results");
} catch (err) {
setError(getErrorMessage(err) || "Failed to apply interview results");
setIsApplying(false);
}
}, [applyInterview, editedSummary, onApplied, projectId, view]);