SDK context coordination primitives
Trackers: pm-e200, pm-4ri6, and pm-hcrmye.
pm treats project management as context management. These primitives let an
agent learn what changed, avoid creating redundant work, and keep that work
bounded at scale without shelling out from an SDK host.
Agent quick context
- Use
pm eventsfor cross-process mutation facts instead of repeatedly requesting whole-workspace context. - Persist the returned cursor and resume with
--since; cursors are bound to their filters and cannot be reused for a different query accidentally. - Duplicate governance is disabled by the minimal preset, advisory by default,
and strict under the strict preset. Configure
advisoryto report likely matches orstrictto require an explicit--allow-duplicatebypass. - Authoritative TOON item documents and JSONL history remain the source of truth. SQLite indexes are rebuildable projections.
Durable mutation events
Read committed history facts as newline-delimited JSON:
pm events --type create --author agent-a --limit 100
pm events --since <cursor> --item pm-abcd
pm events --since <cursor> --follow --interval-ms 250
Each line carries cursor, item_id, version, ts, author, type, and
patch_count; --full also includes the complete authoritative history entry.
--type, --author, and --item accept repeatable or comma-separated values.
--since accepts either a cursor or an ISO timestamp. The CLI emits only event
rows, so it composes directly with standard NDJSON consumers.
The public SDK provides bounded pages and an abortable async iterator:
import {
listMutationEvents,
subscribeMutationEvents,
} from "@unbrained/pm-cli/sdk";
const page = await listMutationEvents({
pmRoot,
type: ["create", "update"],
limit: 100,
});
const controller = new AbortController();
for await (const event of subscribeMutationEvents({
pmRoot,
since: page.next_cursor,
signal: controller.signal,
})) {
await consume(event);
}
The pm_events MCP tool exposes the same bounded page contract. Consumers such
as notification packages can store next_cursor, catch up after a restart,
then follow without requiring a daemon. A pm-slack migration can replace
workspace polling with this SDK iterator while keeping delivery state in the
package.
The derived event index orders every history stream by timestamp, stream id, and stream offset. Appends update it incrementally; audited history rewrites invalidate it; a missing or stale index rebuilds from JSONL. Cursor fingerprints include the filters, preventing silent skips when a caller changes scope.
Similarity and duplicate governance
Package authors can query the same scorer used by create/copy and the bundled governance audit:
import {
findSimilarItems,
scoreItemSimilarity,
} from "@unbrained/pm-cli/sdk";
const score = scoreItemSimilarity("Fix OAuth refresh", "Fix oauth refresh");
const matches = await findSimilarItems(
{ title: "Fix OAuth refresh", excludeIds: ["pm-source"] },
{ pmRoot, threshold: 0.8, limit: 3 },
);
findSimilarItems returns deterministic ranked records with id, title, status,
and score evidence. A warm metadata query index uses bounded SQLite FTS
candidates. Explicit SDK queries can fall back to authoritative metadata when
that projection is unavailable. Exact normalized titles and matching issue
codes receive stable high-confidence scores; other lexical matches use token
overlap. pm-governance-audit imports these same pure runtime exports, so
create-time and post-hoc duplicate detection cannot drift.
Configure create/copy behavior with discoverable scalar settings:
pm config project set governance-duplicate-detection-mode advisory
pm config project set governance-duplicate-detection-threshold 0.8
pm config project set governance-duplicate-detection-limit 3
Modes:
off: no create-path query; this is the minimal preset behavior.advisory: create/copy succeeds and reports the top matches in warnings and the structuredsimilarity_advisoryresult.strict: a threshold match rejects the mutation unless the caller supplies--allow-duplicate(orallowDuplicate: truethrough SDK/MCP).
The strict governance preset enables strict duplicate detection. The bypass is deliberate and visible at the mutation boundary; it does not claim transactional content uniqueness, so post-hoc dedupe remains useful for truly simultaneous creates.
The documented config spelling is kebab-case. Underscore spellings remain accepted aliases for existing automation.
Scale contract
Event catch-up reads from a persistent ordered projection and follows only new
rows. Similarity governance is zero-cost when off and index-bounded when
enabled on an indexed workspace. Production bundles are syntax-, whitespace-,
and identifier-minified, and command-family registration loads only the create
surface for a cold pm create.
The fixed 10,000-item latency, RSS, correctness, and token budgets remain unchanged. See Performance and scale for the reproducible gate; never relax a budget to accommodate a new context primitive.
Contract discovery
Do not copy flag or tool schemas into package code:
pm events --help --json
pm contracts --command events --flags-only --json
pm contracts --runtime-only --json
The main SDK barrel is the high-level application surface. Package adapters
that need dependency-light host primitives can import
@unbrained/pm-cli/sdk/runtime; the similarity scoring exports are available
there without importing the tracker query implementation.