Drop leftover STRIPPED-module comment markers

Remove placeholder comments left behind by the earlier strip of
tts/vision/chat-policy/model-catalog/transcription imports. Pure
noise removal, no behavior change.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Operator & Claude Code 2026-05-10 18:27:43 +02:00
parent 898d2d495e
commit 928fe9307b

View file

@ -76,7 +76,6 @@ import {
runAgentHeartbeat,
startControlplaneHeartbeatLoop,
} from './controlplane-heartbeat.js';
// STRIPPED: model-catalog — import removed
import {
getAllChats,
getAllRegisteredGroups,
@ -98,8 +97,6 @@ import {
import { GroupQueue, quarantineStrandedIpcInputs } from './group-queue.js';
import { resolveGroupFolderPath } from './group-folder.js';
import { decideRootAdminBootstrapGroup } from './root-admin-bootstrap.js';
// STRIPPED: vision — import removed
// STRIPPED: chat-policy — import removed
import { initMemoryPool, shutdownMemoryPool } from './memory-lifecycle.js';
import {
getPool as getMemoryPool,
@ -122,7 +119,6 @@ import {
markRunFinished,
markRunStarted,
} from './health.js';
// STRIPPED: transcription — import removed
import { startIpcWatcher } from './ipc.js';
import { findChannel, formatMessages, formatOutbound } from './router.js';
import { startSchedulerLoop } from './task-scheduler.js';
@ -143,13 +139,11 @@ import {
isMemoryArchitectureIntent,
} from './memory-architecture.js';
import { buildExplanationGrounding } from './explanation-grounder.js';
// STRIPPED: tts — import removed
import { setCommandContext } from './telegram-commands.js';
import {
captureTmuxScreenshot,
parseTmuxScreenshotRequest,
} from './tmux-screenshot-command.js';
// STRIPPED: tts — TtsAutoMode type import removed
// Re-export for backwards compatibility during refactor
export { escapeXml, formatMessages } from './router.js';
@ -167,7 +161,7 @@ let heartbeatConfig:
const channels: Channel[] = [];
const queue = new GroupQueue();
const watchdog = new Watchdog(queue, WATCHDOG_MODE);
const lastInboundWasVoice: Record<string, boolean> = {}; // STRIPPED: tts — no longer populated, kept for type safety
const lastInboundWasVoice: Record<string, boolean> = {};
async function sendOutboundToChannel(
channel: Channel,
@ -177,8 +171,6 @@ async function sendOutboundToChannel(
let text = formatOutbound(rawText);
if (!text) return;
// STRIPPED: tts — TTS synthesis block removed
const { imagePaths, remainingText } = extractTmpImagePaths(text);
const hasPhotos = imagePaths.length > 0;