Files
boocode/apps/server/src/services/tools/codecontext/get_file_analysis.ts
indifferentketchup 8c200216eb refactor: codebase audit cleanup — dead code, dedup, module splits
Multi-agent audit + aggressive cleanup across server/web/coder/booterm,
delivered behind a DEFER discipline so none of the in-flight files were
touched. Removes dead code/deps/columns, dedups server + coder helpers,
and splits the oversized modules (tools.ts, opencode-server.ts,
sentinel-summaries, turn.ts, TerminalPane.tsx) behind stable contracts.
Adds 78 parity/unit tests (server 587, coder 323); fixes two latent bugs
(ChatPane queue keys, FileViewerOverlay blank-line parity).

Intended tag: v2.7.12-audit-cleanup.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-02 21:12:29 +00:00

35 lines
1.2 KiB
TypeScript

import { z } from 'zod';
import { makeCodecontextTool } from './factory.js';
export const GetFileAnalysisInput = z.object({
file_path: z.string().trim().min(1),
});
export type GetFileAnalysisInputT = z.infer<typeof GetFileAnalysisInput>;
const DESCRIPTION =
'Returns detailed analysis of a single file: symbols defined, imports, exports, and inferred role. ' +
'Use when you have a specific file in mind and need its structure without view_file-ing the whole thing. ' +
'Tree-sitter coverage: full for JS/Python/Java/Go/Rust/C++. TypeScript symbols are approximate. ' +
'PHP and SQL are not supported — fall back to view_file for those.';
const { toolDef: getFileAnalysis, execute: executeGetFileAnalysis } =
makeCodecontextTool<GetFileAnalysisInputT>({
name: 'get_file_analysis',
schema: GetFileAnalysisInput,
description: DESCRIPTION,
jsonParameters: {
type: 'object',
properties: {
file_path: {
type: 'string',
description: 'Absolute or project-relative path to the file.',
},
},
required: ['file_path'],
additionalProperties: false,
},
mapArgs: (input) => ({ file_path: input.file_path }),
});
export { getFileAnalysis, executeGetFileAnalysis };