MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / getWorklog

Method getWorklog

src/session/store.ts:445–449  ·  view source on GitHub ↗
(cwd: string, limit = 20)

Source from the content-addressed store, hash-verified

443 const row = this.db.prepare(`SELECT * FROM projects WHERE cwd = ?`).get(cwd) as
444 | ProjectMeta
445 | undefined;
446 return row ?? null;
447 }
448
449 /** Append one accomplishment/decision/blocker/note to the project's worklog. */
450 addWorklogEntry(cwd: string, sessionId: string | null, entry: string, kind: WorklogKind = 'work'): void {
451 this.db.prepare(
452 `INSERT INTO project_worklog (cwd, session_id, kind, entry) VALUES (?, ?, ?, ?)`,

Callers 5

executeMethod · 0.80
handleSlashCommandFunction · 0.80
dispatchActionFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected