MCPcopy
hub / github.com/codeaashu/claude-code / list

Function list

web/lib/api/conversations.ts:46–50  ·  view source on GitHub ↗
(opts)

Source from the content-addressed store, hash-verified

44
45export const conversationAPI: ConversationAPI = {
46 async list(opts) {
47 const { limit = 20, offset = 0 } = opts ?? {};
48 const { conversations } = getStore().getState();
49 return conversations.slice(offset, offset + limit);
50 },
51
52 async get(id) {
53 return findConversation(id);

Callers

nothing calls this directly

Calls 1

getStoreFunction · 0.70

Tested by

no test coverage detected