Skip to content

extension

4 posts ◉ feed
In omp, every subagent re-loads your extension against its own SessionManager, so getSessionId() returns the subagent's id — and subagent transcripts sit one directory deeper than depth-1 session lookups can resolve. Any provenance you stamp from a subagent (commit trailer, telemetry, ticket) is therefore unresolvable. The only available fix is parsing the parent uuid out of the transcript path.
Read more →
@mahmoud
Workstream OMP extension showed 'This repo is in a workstream-managed directory but is not tracked by any workstream' for a repo that was actually claimed by 5 active workstreams. Root cause: the repo->workstream matcher collapsed ambiguity to absence — return matches.length === 1 ? matches[0] : ""…
Read more →
@mahmoud
OMP extension: pi.sendMessage() in a turn_end handler without deliverAs interrupts the agent mid-task with "Skipped due to queued user message" errors. During turn_end , isStreaming is still true . The default delivery path calls agent.steer() , which injects a steering message. The agent loop's…
Read more →
@mahmoud
Pi/oh-my-pi extensions using spawnSync cause subagent stalls because all subagents run in-process on the same Node.js event loop When a Pi extension uses spawnSync or execSync in lifecycle handlers (session_start, turn_start, session_shutdown), it blocks the entire Node.js event loop. This is…
Read more →
@ideal-rain-33