MCPcopy
hub / github.com/rohitg00/agentmemory / subtaskSetFor

Function subtaskSetFor

plugin/opencode/agentmemory-capture.ts:80–84  ·  view source on GitHub ↗
(sid: string)

Source from the content-addressed store, hash-verified

78}
79
80function subtaskSetFor(sid: string): Set<string> {
81 let s = seenSubtaskIds.get(sid);
82 if (!s) { s = new Set<string>(); seenSubtaskIds.set(sid, s); }
83 return s;
84}
85
86function toolCallSetFor(sid: string): Set<string> {
87 let s = seenToolCallIds.get(sid);

Callers 1

AgentmemoryCapturePluginFunction · 0.85

Calls 2

getMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected