MCPcopy
hub / github.com/continuedev/continue / viewRepoMapImpl

Function viewRepoMapImpl

core/tools/implementations/viewRepoMap.ts:5–17  ·  view source on GitHub ↗
(args, extras)

Source from the content-addressed store, hash-verified

3import { ToolImpl } from ".";
4
5export const viewRepoMapImpl: ToolImpl = async (args, extras) => {
6 const repoMap = await generateRepoMap(extras.llm, extras.ide, {
7 outputRelativeUriPaths: true,
8 includeSignatures: true,
9 });
10 return [
11 {
12 name: "Repo map",
13 description: "Overview of the repository structure",
14 content: repoMap,
15 },
16 ];
17};

Callers 1

callBuiltInToolFunction · 0.90

Calls 1

generateRepoMapFunction · 0.85

Tested by

no test coverage detected