MCPcopy Create free account
hub / github.com/coleam00/remote-agentic-coding-system / getCodebase

Function getCodebase

src/db/codebases.ts:21–26  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

19}
20
21export async function getCodebase(id: string): Promise<Codebase | null> {
22 const result = await pool.query<Codebase>('SELECT * FROM remote_agent_codebases WHERE id = $1', [
23 id,
24 ]);
25 return result.rows[0] || null;
26}
27
28export async function updateCodebaseCommands(
29 id: string,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected