MCPcopy Index your code
hub / github.com/benjitaylor/agentation / updateAnnotationStatus

Function updateAnnotationStatus

mcp/src/server/sqlite.ts:485–496  ·  view source on GitHub ↗
(
      id: string,
      status: AnnotationStatus,
      resolvedBy?: "human" | "agent"
    )

Source from the content-addressed store, hash-verified

483 },
484
485 updateAnnotationStatus(
486 id: string,
487 status: AnnotationStatus,
488 resolvedBy?: "human" | "agent"
489 ): Annotation | undefined {
490 const isResolved = status === "resolved" || status === "dismissed";
491 return this.updateAnnotation(id, {
492 status,
493 resolvedAt: isResolved ? new Date().toISOString() : undefined,
494 resolvedBy: isResolved ? (resolvedBy || "agent") : undefined,
495 });
496 },
497
498 addThreadMessage(
499 annotationId: string,

Callers

nothing calls this directly

Calls 1

updateAnnotationMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…