await db.vcs.addReport({
type: "progress",
severity: "info",
title: "Phase Complete",
content: "Research phase completed successfully",
metadata: { phase: "research", duration: 5000 },
});
await db.vcs.addReport({
type: "finding",
severity: "warning",
title: "Potential Issue",
content: "Found deprecated API usage",
agentId: agentId,
});
await db.vcs.addReport({
type: "error",
severity: "critical",
title: "Build Failed",
content: "TypeScript compilation errors",
});