/** * synap context * * Emit a session-start context summary: recent engineering knowledge, * open proposals, active tasks. Designed for injection into CLAUDE.md or * as JSON for agents to consume at session start. * * Usage: * synap context # markdown output * synap context --json # NDJSON (one object per section) * synap context --repo synap-backend # filter knowledge by repo tag * synap context --limit 5 # entries per section (default: 5) */ export interface ContextOpts { repo?: string; limit?: string; json?: boolean; podUrl?: string; apiKey?: string; workspace?: string; } export declare function contextSummary(opts: ContextOpts): Promise;