MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / revealFile

Method revealFile

apps/kimi-web/src/api/daemon/client.ts:929–937  ·  view source on GitHub ↗
(
    sessionId: string,
    input: { path: string },
  )

Source from the content-addressed store, hash-verified

927 }
928
929 async revealFile(
930 sessionId: string,
931 input: { path: string },
932 ): Promise<{ revealed: true }> {
933 return this.http.post<{ revealed: true }>(
934 `/sessions/${encodeURIComponent(sessionId)}/fs:reveal`,
935 { path: input.path },
936 );
937 }
938
939 async openInApp(
940 sessionId: string,

Callers

nothing calls this directly

Calls 1

postMethod · 0.65

Tested by

no test coverage detected