@vortex-os/base 0.9.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -160,6 +160,25 @@ interface AutoRecordConfig {
160
160
  * keep more around. A non-positive / malformed value falls back to the default.
161
161
  */
162
162
  readonly handoffRetentionDays: number;
163
+ /**
164
+ * Auto-reindex the on-demand memory index (`_memory/_INDEX.md`) at session
165
+ * start when it looks stale (a memory file is newer than the index).
166
+ * Mechanical and idempotent — it only rewrites `_INDEX.md` from each memory's
167
+ * frontmatter, never a memory's content, and writes only when the rendered
168
+ * index actually changes (then refreshes the index's mtime so the stale flag
169
+ * clears). On by default; off → the start report just flags the stale index
170
+ * for the agent to fix instead of fixing it automatically.
171
+ */
172
+ readonly reindex: boolean;
173
+ /**
174
+ * Auto-backfill a missed worklog. When a past day had commits but no worklog,
175
+ * the in-session agent reconstructs and writes it at the next session start
176
+ * (zero-worklog days only, capped, labeled as reconstructed — see AI-RULES.md
177
+ * "Default behaviors"). Gated by `worklog` as well: turning `worklog` off
178
+ * suppresses backfill too. On by default; off → the start report still flags
179
+ * the gap but the agent leaves it for you.
180
+ */
181
+ readonly backfill: boolean;
163
182
  }
164
183
  /**
165
184
  * One environment label plus the signal that selects it. Rules are evaluated
@@ -3029,6 +3048,16 @@ interface SessionStartReport {
3029
3048
  */
3030
3049
  declare const sessionStartCommand: Command<SessionStartReport>;
3031
3050
 
3051
+ /**
3052
+ * The single gap-detection window (days). Worklog-gap detection compares two
3053
+ * sets over the SAME span: worklog dates present (filtered here) and commit days
3054
+ * (the hook supplies them). The commit lookup MUST use this same window — see
3055
+ * `gapWindowSinceArg()` — or gaps older than the commit lookup are invisible
3056
+ * while younger-than-the-worklog-window dates leak in. Keep them aligned.
3057
+ */
3058
+ declare const DEFAULT_GAP_WINDOW_DAYS = 30;
3059
+ /** `git log --since=<this>` argument for commit-day lookup — aligned to the worklog window. */
3060
+ declare function gapWindowSinceArg(): string;
3032
3061
  interface RecentWorklog {
3033
3062
  /** Path relative to the data directory (e.g. `worklog/2026/05/2026-05-30-foo.md`). */
3034
3063
  readonly path: string;
@@ -3305,6 +3334,130 @@ interface CatchUpOptions {
3305
3334
  }
3306
3335
  declare function catchUpSessions(ctx: ModuleContext, opts?: CatchUpOptions): Promise<CatchUpResult>;
3307
3336
 
3337
+ /**
3338
+ * `vortex statusline` — a Claude Code statusLine renderer.
3339
+ *
3340
+ * Claude Code pipes a JSON snapshot of the session (model, context window,
3341
+ * cost, rate limits, workspace) to the configured statusLine command on every
3342
+ * refresh and renders whatever the command prints. This module turns that
3343
+ * snapshot into a colored status bar:
3344
+ *
3345
+ * full (default, 3 lines + a VortEX line inside an instance):
3346
+ * 🧠 Fable 5 │ █ max │ █░░░░░░░░░ 12% · 120K/1M │ 🕐 22:25 │ 💰 $9.22
3347
+ * 5h ██████░░ 75%(2h13m) │ 7d ███████░ 96%(0d8h) │ 📦 cache 98%
3348
+ * 📁 my-project │ ⎇ main 2b0949d │ ⏱ 1h19m │ +78 -38 │ ⧉ 1
3349
+ * 🌀 VortEX v0.11.0 │ last: 2026-06-10_0452-….md
3350
+ *
3351
+ * lite (1 line):
3352
+ * 📁 my-project │ ⎇ main │ 🧠 Fable 5 │ █ max │ ░░░░░░░░ 12% · 120K/1M │ 5h 75% · 7d 96% │ ⧉ 1 │ 🌀 v0.11.0 │ 🕐 22:25
3353
+ *
3354
+ * Design notes:
3355
+ * - Rendering is PURE (`renderStatusline(data, probes, mode)`) — every
3356
+ * environment lookup (git, process list, clock, VortEX instance files) is
3357
+ * collected separately in `collectStatuslineProbes`, so the composition is
3358
+ * unit-testable without a repo or a terminal.
3359
+ * - Reasoning effort is shown as one bar whose height + color encode the
3360
+ * level. Claude Code reports `ultracode` as plain `xhigh` (ultracode is
3361
+ * "xhigh + workflow orchestration"), so when the level reads `xhigh` we
3362
+ * additionally sniff the session transcript for the last `/effort` change
3363
+ * notice — a best-effort heuristic that degrades to showing `xhigh`.
3364
+ * - Every probe is wrapped: a statusline must NEVER throw or block the bar —
3365
+ * on any failure a segment silently falls back to a neutral value.
3366
+ */
3367
+
3368
+ /** The slice of Claude Code's statusLine input JSON this renderer consumes. */
3369
+ interface StatuslineData {
3370
+ readonly modelName: string;
3371
+ /** Reasoning effort level as reported (`effort.level`), or null. */
3372
+ readonly effortLevel: string | null;
3373
+ readonly transcriptPath: string | null;
3374
+ /** Project directory (workspace.current_dir, falling back to cwd). */
3375
+ readonly dir: string | null;
3376
+ readonly contextWindowSize: number;
3377
+ /** Context used, percent — kept as reported (may be fractional). */
3378
+ readonly usedPercentage: number;
3379
+ readonly cacheReadTokens: number;
3380
+ readonly cacheCreationTokens: number;
3381
+ readonly costUsd: number;
3382
+ readonly durationMs: number;
3383
+ readonly linesAdded: number;
3384
+ readonly linesRemoved: number;
3385
+ readonly fiveHourUsedPct: number;
3386
+ readonly fiveHourResetsAt: number;
3387
+ readonly sevenDayUsedPct: number;
3388
+ readonly sevenDayResetsAt: number;
3389
+ }
3390
+ /** Environment lookups the renderer composes in — collected impurely, injected purely. */
3391
+ interface StatuslineProbes {
3392
+ readonly gitBranch: string;
3393
+ readonly gitHash: string;
3394
+ readonly sessionCount: number;
3395
+ /** Set when `dir` is a VortEX instance root; lastWorklog is the newest worklog file name. */
3396
+ readonly vortex: {
3397
+ readonly version: string | null;
3398
+ readonly lastWorklog: string | null;
3399
+ } | null;
3400
+ /** Effort level after the ultracode transcript sniff (null → use data.effortLevel). */
3401
+ readonly effortLevel: string | null;
3402
+ readonly now: Date;
3403
+ }
3404
+ /**
3405
+ * Make a dynamic string safe to put in a single-line ANSI bar: drop control
3406
+ * chars (incl. ESC — no injected sequences/newlines), collapse whitespace, and
3407
+ * truncate long values. The bar must render intact whatever a branch name,
3408
+ * model name, or worklog filename contains.
3409
+ */
3410
+ declare function safeSegment(s: string, max?: number): string;
3411
+ /** Parse Claude Code's statusLine stdin JSON into the fields the bar uses. Never throws on shape — only on non-JSON. */
3412
+ declare function parseStatuslineInput(text: string): StatuslineData;
3413
+ /** One-character effort meter: height + color encode the level (`█✦` for ultracode). */
3414
+ declare function effortMeter(level: string | null): {
3415
+ meter: string;
3416
+ color: string;
3417
+ } | null;
3418
+ /** `7` → `7`, `70_000` → `70K`, `1_200_000` → `1.2M` (token quantities). */
3419
+ declare function formatTokens(t: number): string;
3420
+ /** Window sizes render without a decimal: `200_000` → `200K`, `1_000_000` → `1M`. */
3421
+ declare function formatWindow(t: number): string;
3422
+ /** `█`-filled gauge, `width` cells, floor-scaled so 100% and only 100% fills it. */
3423
+ declare function makeBar(pct: number, width: number): string;
3424
+ /** Compose the status bar. Pure — see `collectStatuslineProbes` for the impure half. */
3425
+ declare function renderStatusline(d: StatuslineData, p: StatuslineProbes, mode?: "full" | "lite"): string;
3426
+ /**
3427
+ * Claude Code reports `ultracode` as `xhigh`; the transcript keeps the last
3428
+ * `/effort` change notice. Read the transcript tail and return the level named
3429
+ * by the LAST such notice, or null. Best-effort by design — a format change
3430
+ * simply degrades the display to `xhigh`.
3431
+ */
3432
+ declare function sniffEffortFromTranscript(transcriptPath: string, maxBytes?: number): string | null;
3433
+ /** Collect every environment lookup the renderer needs for this input. */
3434
+ declare function collectStatuslineProbes(d: StatuslineData, now?: Date): StatuslineProbes;
3435
+ /** The statusLine command written by `install`. Mirrors the session hooks: bin-name resolution, fail-closed, self-silencing. */
3436
+ declare function statuslineCommand(lite: boolean): string;
3437
+ interface StatuslineInstallResult {
3438
+ readonly status: "installed" | "already-ours" | "kept-existing";
3439
+ readonly settingsPath: string;
3440
+ readonly command?: string;
3441
+ /** Present when status is "kept-existing": the command we refused to overwrite. */
3442
+ readonly existing?: string;
3443
+ }
3444
+ /**
3445
+ * Merge `statusLine` into a settings object. NON-DESTRUCTIVE: an existing
3446
+ * statusLine that is not ours is kept (the user owns their bar) unless `force`.
3447
+ * Switching full↔lite of our own command counts as ours and is updated.
3448
+ */
3449
+ declare function ensureStatusline(existing: ClaudeSettings, lite: boolean, force?: boolean): {
3450
+ settings: ClaudeSettings;
3451
+ status: StatuslineInstallResult["status"];
3452
+ existing?: string;
3453
+ };
3454
+ /**
3455
+ * Run the statusline CLI. `install` wires `.claude/settings.json` (at
3456
+ * `repoRoot`); anything else renders the bar from stdin JSON. A render must
3457
+ * never break the bar: bad/absent input prints nothing and exits 0.
3458
+ */
3459
+ declare function runStatuslineCli(argv: readonly string[], repoRoot: string, out: (s: string) => void, err: (s: string) => void): Promise<number>;
3460
+
3308
3461
  interface ReindexResult {
3309
3462
  readonly dir: string;
3310
3463
  readonly status: "written" | "unchanged" | "missing";
@@ -3321,6 +3474,17 @@ interface ReindexResult {
3321
3474
  * directories are reported as `missing` (no write attempted).
3322
3475
  */
3323
3476
  declare const reindexCommand: Command<readonly ReindexResult[]>;
3477
+ /**
3478
+ * Auto-reindex `_memory/_INDEX.md` at session start (gated by
3479
+ * `autoRecord.reindex`). Mechanical and idempotent: it rewrites the index only
3480
+ * when the rendered content changes, then refreshes the index file's mtime so
3481
+ * the stale flag — newest `_memory/*.md` mtime > `_INDEX.md` mtime, see
3482
+ * `scanMemoryTiers` — clears even when the content was unchanged (a memory's
3483
+ * BODY changed but its one-line index row did not). Touching identical content
3484
+ * changes only mtime, so there is no git churn. Best-effort: any error returns
3485
+ * `"error"` and never blocks session start.
3486
+ */
3487
+ declare function autoReindexMemory(ctx: ModuleContext): Promise<ReindexResult["status"] | "error">;
3324
3488
 
3325
3489
  interface NewDecisionResult {
3326
3490
  readonly path: string;
@@ -3973,6 +4137,7 @@ type index_d_CuratePayload = CuratePayload;
3973
4137
  type index_d_CuratePayloadValidation = CuratePayloadValidation;
3974
4138
  type index_d_CuratePreviewResult = CuratePreviewResult;
3975
4139
  type index_d_CurateResult = CurateResult;
4140
+ declare const index_d_DEFAULT_GAP_WINDOW_DAYS: typeof DEFAULT_GAP_WINDOW_DAYS;
3976
4141
  type index_d_EnsureHooksResult = EnsureHooksResult;
3977
4142
  type index_d_EnsureWorklogResult = EnsureWorklogResult;
3978
4143
  type index_d_GitPullResult = GitPullResult;
@@ -3996,6 +4161,9 @@ declare const index_d_SESSION_END_COMMAND: typeof SESSION_END_COMMAND;
3996
4161
  declare const index_d_SESSION_START_COMMAND: typeof SESSION_START_COMMAND;
3997
4162
  type index_d_SessionStartHookReport = SessionStartHookReport;
3998
4163
  type index_d_SessionStartReport = SessionStartReport;
4164
+ type index_d_StatuslineData = StatuslineData;
4165
+ type index_d_StatuslineInstallResult = StatuslineInstallResult;
4166
+ type index_d_StatuslineProbes = StatuslineProbes;
3999
4167
  type index_d_UpdateCheckResult = UpdateCheckResult;
4000
4168
  type index_d_UpdateFileAction = UpdateFileAction;
4001
4169
  type index_d_UpdateFileActionKind = UpdateFileActionKind;
@@ -4013,6 +4181,7 @@ declare const index_d_agendaCommand: typeof agendaCommand;
4013
4181
  declare const index_d_aggregateHandoff: typeof aggregateHandoff;
4014
4182
  declare const index_d_applyGlobalSetup: typeof applyGlobalSetup;
4015
4183
  declare const index_d_argvToSlash: typeof argvToSlash;
4184
+ declare const index_d_autoReindexMemory: typeof autoReindexMemory;
4016
4185
  declare const index_d_buildInstallCommand: typeof buildInstallCommand;
4017
4186
  declare const index_d_buildOwnershipManifest: typeof buildOwnershipManifest;
4018
4187
  declare const index_d_buildRegistry: typeof buildRegistry;
@@ -4021,6 +4190,7 @@ declare const index_d_checkBaseUpdate: typeof checkBaseUpdate;
4021
4190
  declare const index_d_collectAgenda: typeof collectAgenda;
4022
4191
  declare const index_d_collectCarryover: typeof collectCarryover;
4023
4192
  declare const index_d_collectSessionStartReport: typeof collectSessionStartReport;
4193
+ declare const index_d_collectStatuslineProbes: typeof collectStatuslineProbes;
4024
4194
  declare const index_d_compareSemver: typeof compareSemver;
4025
4195
  declare const index_d_computeCurateFingerprint: typeof computeCurateFingerprint;
4026
4196
  declare const index_d_countUncommitted: typeof countUncommitted;
@@ -4031,10 +4201,15 @@ declare const index_d_curateCommand: typeof curateCommand;
4031
4201
  declare const index_d_decisionCommand: typeof decisionCommand;
4032
4202
  declare const index_d_detectInterruptedGitOp: typeof detectInterruptedGitOp;
4033
4203
  declare const index_d_detectWorklogGaps: typeof detectWorklogGaps;
4204
+ declare const index_d_effortMeter: typeof effortMeter;
4205
+ declare const index_d_ensureStatusline: typeof ensureStatusline;
4034
4206
  declare const index_d_ensureVortexHooks: typeof ensureVortexHooks;
4035
4207
  declare const index_d_ensureWorklogEntry: typeof ensureWorklogEntry;
4036
4208
  declare const index_d_extractNextUp: typeof extractNextUp;
4037
4209
  declare const index_d_extractOpenTasks: typeof extractOpenTasks;
4210
+ declare const index_d_formatTokens: typeof formatTokens;
4211
+ declare const index_d_formatWindow: typeof formatWindow;
4212
+ declare const index_d_gapWindowSinceArg: typeof gapWindowSinceArg;
4038
4213
  declare const index_d_globalMemoryPath: typeof globalMemoryPath;
4039
4214
  declare const index_d_globalSettingsHasHook: typeof globalSettingsHasHook;
4040
4215
  declare const index_d_globalSettingsPath: typeof globalSettingsPath;
@@ -4046,9 +4221,11 @@ declare const index_d_isInstanceRoot: typeof isInstanceRoot;
4046
4221
  declare const index_d_isNewer: typeof isNewer;
4047
4222
  declare const index_d_isStableUpdate: typeof isStableUpdate;
4048
4223
  declare const index_d_logCommand: typeof logCommand;
4224
+ declare const index_d_makeBar: typeof makeBar;
4049
4225
  declare const index_d_ownershipManifestPath: typeof ownershipManifestPath;
4050
4226
  declare const index_d_parseAdoptArgs: typeof parseAdoptArgs;
4051
4227
  declare const index_d_parseSettings: typeof parseSettings;
4228
+ declare const index_d_parseStatuslineInput: typeof parseStatuslineInput;
4052
4229
  declare const index_d_pruneHandoffs: typeof pruneHandoffs;
4053
4230
  declare const index_d_queryNpmLatest: typeof queryNpmLatest;
4054
4231
  declare const index_d_readGlobalInstancePointer: typeof readGlobalInstancePointer;
@@ -4059,24 +4236,29 @@ declare const index_d_reindexCommand: typeof reindexCommand;
4059
4236
  declare const index_d_renderAgenda: typeof renderAgenda;
4060
4237
  declare const index_d_renderGlobalBlock: typeof renderGlobalBlock;
4061
4238
  declare const index_d_renderSessionStartReport: typeof renderSessionStartReport;
4239
+ declare const index_d_renderStatusline: typeof renderStatusline;
4062
4240
  declare const index_d_repairOwnershipManifest: typeof repairOwnershipManifest;
4063
4241
  declare const index_d_resolveRepoRoot: typeof resolveRepoRoot;
4064
4242
  declare const index_d_runCurateAccept: typeof runCurateAccept;
4065
4243
  declare const index_d_runCurateCandidates: typeof runCurateCandidates;
4066
4244
  declare const index_d_runCurateDecline: typeof runCurateDecline;
4067
4245
  declare const index_d_runCuratePreview: typeof runCuratePreview;
4246
+ declare const index_d_runStatuslineCli: typeof runStatuslineCli;
4068
4247
  declare const index_d_runTemplatesUpdate: typeof runTemplatesUpdate;
4069
4248
  declare const index_d_runVortexCli: typeof runVortexCli;
4249
+ declare const index_d_safeSegment: typeof safeSegment;
4070
4250
  declare const index_d_scanHandoffs: typeof scanHandoffs;
4071
4251
  declare const index_d_serializeSettings: typeof serializeSettings;
4072
4252
  declare const index_d_sessionStartCommand: typeof sessionStartCommand;
4253
+ declare const index_d_sniffEffortFromTranscript: typeof sniffEffortFromTranscript;
4254
+ declare const index_d_statuslineCommand: typeof statuslineCommand;
4073
4255
  declare const index_d_templateDestRelPath: typeof templateDestRelPath;
4074
4256
  declare const index_d_upsertGlobalBlock: typeof upsertGlobalBlock;
4075
4257
  declare const index_d_validateCuratePayload: typeof validateCuratePayload;
4076
4258
  declare const index_d_vortexCommand: typeof vortexCommand;
4077
4259
  declare const index_d_writeOwnershipManifest: typeof writeOwnershipManifest;
4078
4260
  declare namespace index_d {
4079
- export { type index_d_AgendaReport as AgendaReport, type index_d_AmbientRecallFactoryOptions as AmbientRecallFactoryOptions, type index_d_CatchUpOptions as CatchUpOptions, type index_d_CatchUpResult as CatchUpResult, type index_d_ClaudeSettings as ClaudeSettings, type index_d_CliIo as CliIo, type index_d_CollectAgendaOptions as CollectAgendaOptions, type index_d_CurateAcceptResult as CurateAcceptResult, type index_d_CurateActionKind as CurateActionKind, type index_d_CurateAnyProposal as CurateAnyProposal, type index_d_CurateCandidate as CurateCandidate, type index_d_CurateCandidatesResult as CurateCandidatesResult, type index_d_CurateDeclineResult as CurateDeclineResult, type index_d_CurateOptions as CurateOptions, type index_d_CuratePayload as CuratePayload, type index_d_CuratePayloadValidation as CuratePayloadValidation, type index_d_CuratePreviewResult as CuratePreviewResult, type index_d_CurateResult as CurateResult, type index_d_EnsureHooksResult as EnsureHooksResult, type index_d_EnsureWorklogResult as EnsureWorklogResult, type index_d_GitPullResult as GitPullResult, index_d_HANDOFF_ARCHIVE_DIR as HANDOFF_ARCHIVE_DIR, index_d_HANDOFF_DIR as HANDOFF_DIR, type index_d_HandoffCreateResult as HandoffCreateResult, type index_d_HandoffSummary as HandoffSummary, type index_d_HandoffWriteResult as HandoffWriteResult, type index_d_NewDecisionResult as NewDecisionResult, index_d_OWNERSHIP_SCHEMA as OWNERSHIP_SCHEMA, type index_d_OpenDecision as OpenDecision, type index_d_OpenTask as OpenTask, type index_d_OwnershipDiagnosis as OwnershipDiagnosis, type index_d_OwnershipEntry as OwnershipEntry, type index_d_OwnershipManifest as OwnershipManifest, type index_d_RecallOptions as RecallOptions, type index_d_RecentWorklog as RecentWorklog, type index_d_ReindexResult as ReindexResult, type index_d_RitualRegistryOptions as RitualRegistryOptions, index_d_SESSION_END_COMMAND as SESSION_END_COMMAND, index_d_SESSION_START_COMMAND as SESSION_START_COMMAND, type index_d_SessionStartHookReport as SessionStartHookReport, type index_d_SessionStartReport as SessionStartReport, type index_d_UpdateCheckResult as UpdateCheckResult, type index_d_UpdateFileAction as UpdateFileAction, type index_d_UpdateFileActionKind as UpdateFileActionKind, type index_d_VortexHelpResult as VortexHelpResult, type index_d_VortexInitResult as VortexInitResult, type index_d_VortexPlannedResult as VortexPlannedResult, type index_d_VortexResult as VortexResult, type index_d_VortexSyncResult as VortexSyncResult, type index_d_VortexSyncStep as VortexSyncStep, type index_d_VortexSyncStepId as VortexSyncStepId, type index_d_VortexSyncStepStatus as VortexSyncStepStatus, type index_d_VortexUpdateResult as VortexUpdateResult, type index_d_WorklogAppendResult as WorklogAppendResult, index_d_agendaCommand as agendaCommand, index_d_aggregateHandoff as aggregateHandoff, index_d_applyGlobalSetup as applyGlobalSetup, index_d_argvToSlash as argvToSlash, index_d_buildInstallCommand as buildInstallCommand, index_d_buildOwnershipManifest as buildOwnershipManifest, index_d_buildRegistry as buildRegistry, index_d_catchUpSessions as catchUpSessions, index_d_checkBaseUpdate as checkBaseUpdate, index_d_collectAgenda as collectAgenda, index_d_collectCarryover as collectCarryover, index_d_collectSessionStartReport as collectSessionStartReport, index_d_compareSemver as compareSemver, index_d_computeCurateFingerprint as computeCurateFingerprint, index_d_countUncommitted as countUncommitted, index_d_createAmbientRecaller as createAmbientRecaller, index_d_createHandoffSkeleton as createHandoffSkeleton, index_d_createRitualRegistry as createRitualRegistry, index_d_curateCommand as curateCommand, index_d_decisionCommand as decisionCommand, index_d_detectInterruptedGitOp as detectInterruptedGitOp, index_d_detectWorklogGaps as detectWorklogGaps, index_d_ensureVortexHooks as ensureVortexHooks, index_d_ensureWorklogEntry as ensureWorklogEntry, index_d_extractNextUp as extractNextUp, index_d_extractOpenTasks as extractOpenTasks, index_d_globalMemoryPath as globalMemoryPath, index_d_globalSettingsHasHook as globalSettingsHasHook, index_d_globalSettingsPath as globalSettingsPath, index_d_globalStatePath as globalStatePath, index_d_handoffCommand as handoffCommand, index_d_inspectGlobalSetup as inspectGlobalSetup, index_d_inspectOwnership as inspectOwnership, index_d_isInstanceRoot as isInstanceRoot, index_d_isNewer as isNewer, index_d_isStableUpdate as isStableUpdate, index_d_logCommand as logCommand, index_d_ownershipManifestPath as ownershipManifestPath, index_d_parseAdoptArgs as parseAdoptArgs, index_d_parseSettings as parseSettings, index_d_pruneHandoffs as pruneHandoffs, index_d_queryNpmLatest as queryNpmLatest, index_d_readGlobalInstancePointer as readGlobalInstancePointer, index_d_readInstalledBaseVersion as readInstalledBaseVersion, index_d_recallCommand as recallCommand, index_d_recordGlobalSetupDecline as recordGlobalSetupDecline, index_d_reindexCommand as reindexCommand, index_d_renderAgenda as renderAgenda, index_d_renderGlobalBlock as renderGlobalBlock, index_d_renderSessionStartReport as renderSessionStartReport, index_d_repairOwnershipManifest as repairOwnershipManifest, index_d_resolveRepoRoot as resolveRepoRoot, index_d_runCurateAccept as runCurateAccept, index_d_runCurateCandidates as runCurateCandidates, index_d_runCurateDecline as runCurateDecline, index_d_runCuratePreview as runCuratePreview, index_d_runTemplatesUpdate as runTemplatesUpdate, index_d_runVortexCli as runVortexCli, index_d_scanHandoffs as scanHandoffs, index_d_serializeSettings as serializeSettings, index_d_sessionStartCommand as sessionStartCommand, index_d_templateDestRelPath as templateDestRelPath, index_d_upsertGlobalBlock as upsertGlobalBlock, index_d_validateCuratePayload as validateCuratePayload, index_d_vortexCommand as vortexCommand, index_d_writeOwnershipManifest as writeOwnershipManifest };
4261
+ export { type index_d_AgendaReport as AgendaReport, type index_d_AmbientRecallFactoryOptions as AmbientRecallFactoryOptions, type index_d_CatchUpOptions as CatchUpOptions, type index_d_CatchUpResult as CatchUpResult, type index_d_ClaudeSettings as ClaudeSettings, type index_d_CliIo as CliIo, type index_d_CollectAgendaOptions as CollectAgendaOptions, type index_d_CurateAcceptResult as CurateAcceptResult, type index_d_CurateActionKind as CurateActionKind, type index_d_CurateAnyProposal as CurateAnyProposal, type index_d_CurateCandidate as CurateCandidate, type index_d_CurateCandidatesResult as CurateCandidatesResult, type index_d_CurateDeclineResult as CurateDeclineResult, type index_d_CurateOptions as CurateOptions, type index_d_CuratePayload as CuratePayload, type index_d_CuratePayloadValidation as CuratePayloadValidation, type index_d_CuratePreviewResult as CuratePreviewResult, type index_d_CurateResult as CurateResult, index_d_DEFAULT_GAP_WINDOW_DAYS as DEFAULT_GAP_WINDOW_DAYS, type index_d_EnsureHooksResult as EnsureHooksResult, type index_d_EnsureWorklogResult as EnsureWorklogResult, type index_d_GitPullResult as GitPullResult, index_d_HANDOFF_ARCHIVE_DIR as HANDOFF_ARCHIVE_DIR, index_d_HANDOFF_DIR as HANDOFF_DIR, type index_d_HandoffCreateResult as HandoffCreateResult, type index_d_HandoffSummary as HandoffSummary, type index_d_HandoffWriteResult as HandoffWriteResult, type index_d_NewDecisionResult as NewDecisionResult, index_d_OWNERSHIP_SCHEMA as OWNERSHIP_SCHEMA, type index_d_OpenDecision as OpenDecision, type index_d_OpenTask as OpenTask, type index_d_OwnershipDiagnosis as OwnershipDiagnosis, type index_d_OwnershipEntry as OwnershipEntry, type index_d_OwnershipManifest as OwnershipManifest, type index_d_RecallOptions as RecallOptions, type index_d_RecentWorklog as RecentWorklog, type index_d_ReindexResult as ReindexResult, type index_d_RitualRegistryOptions as RitualRegistryOptions, index_d_SESSION_END_COMMAND as SESSION_END_COMMAND, index_d_SESSION_START_COMMAND as SESSION_START_COMMAND, type index_d_SessionStartHookReport as SessionStartHookReport, type index_d_SessionStartReport as SessionStartReport, type index_d_StatuslineData as StatuslineData, type index_d_StatuslineInstallResult as StatuslineInstallResult, type index_d_StatuslineProbes as StatuslineProbes, type index_d_UpdateCheckResult as UpdateCheckResult, type index_d_UpdateFileAction as UpdateFileAction, type index_d_UpdateFileActionKind as UpdateFileActionKind, type index_d_VortexHelpResult as VortexHelpResult, type index_d_VortexInitResult as VortexInitResult, type index_d_VortexPlannedResult as VortexPlannedResult, type index_d_VortexResult as VortexResult, type index_d_VortexSyncResult as VortexSyncResult, type index_d_VortexSyncStep as VortexSyncStep, type index_d_VortexSyncStepId as VortexSyncStepId, type index_d_VortexSyncStepStatus as VortexSyncStepStatus, type index_d_VortexUpdateResult as VortexUpdateResult, type index_d_WorklogAppendResult as WorklogAppendResult, index_d_agendaCommand as agendaCommand, index_d_aggregateHandoff as aggregateHandoff, index_d_applyGlobalSetup as applyGlobalSetup, index_d_argvToSlash as argvToSlash, index_d_autoReindexMemory as autoReindexMemory, index_d_buildInstallCommand as buildInstallCommand, index_d_buildOwnershipManifest as buildOwnershipManifest, index_d_buildRegistry as buildRegistry, index_d_catchUpSessions as catchUpSessions, index_d_checkBaseUpdate as checkBaseUpdate, index_d_collectAgenda as collectAgenda, index_d_collectCarryover as collectCarryover, index_d_collectSessionStartReport as collectSessionStartReport, index_d_collectStatuslineProbes as collectStatuslineProbes, index_d_compareSemver as compareSemver, index_d_computeCurateFingerprint as computeCurateFingerprint, index_d_countUncommitted as countUncommitted, index_d_createAmbientRecaller as createAmbientRecaller, index_d_createHandoffSkeleton as createHandoffSkeleton, index_d_createRitualRegistry as createRitualRegistry, index_d_curateCommand as curateCommand, index_d_decisionCommand as decisionCommand, index_d_detectInterruptedGitOp as detectInterruptedGitOp, index_d_detectWorklogGaps as detectWorklogGaps, index_d_effortMeter as effortMeter, index_d_ensureStatusline as ensureStatusline, index_d_ensureVortexHooks as ensureVortexHooks, index_d_ensureWorklogEntry as ensureWorklogEntry, index_d_extractNextUp as extractNextUp, index_d_extractOpenTasks as extractOpenTasks, index_d_formatTokens as formatTokens, index_d_formatWindow as formatWindow, index_d_gapWindowSinceArg as gapWindowSinceArg, index_d_globalMemoryPath as globalMemoryPath, index_d_globalSettingsHasHook as globalSettingsHasHook, index_d_globalSettingsPath as globalSettingsPath, index_d_globalStatePath as globalStatePath, index_d_handoffCommand as handoffCommand, index_d_inspectGlobalSetup as inspectGlobalSetup, index_d_inspectOwnership as inspectOwnership, index_d_isInstanceRoot as isInstanceRoot, index_d_isNewer as isNewer, index_d_isStableUpdate as isStableUpdate, index_d_logCommand as logCommand, index_d_makeBar as makeBar, index_d_ownershipManifestPath as ownershipManifestPath, index_d_parseAdoptArgs as parseAdoptArgs, index_d_parseSettings as parseSettings, index_d_parseStatuslineInput as parseStatuslineInput, index_d_pruneHandoffs as pruneHandoffs, index_d_queryNpmLatest as queryNpmLatest, index_d_readGlobalInstancePointer as readGlobalInstancePointer, index_d_readInstalledBaseVersion as readInstalledBaseVersion, index_d_recallCommand as recallCommand, index_d_recordGlobalSetupDecline as recordGlobalSetupDecline, index_d_reindexCommand as reindexCommand, index_d_renderAgenda as renderAgenda, index_d_renderGlobalBlock as renderGlobalBlock, index_d_renderSessionStartReport as renderSessionStartReport, index_d_renderStatusline as renderStatusline, index_d_repairOwnershipManifest as repairOwnershipManifest, index_d_resolveRepoRoot as resolveRepoRoot, index_d_runCurateAccept as runCurateAccept, index_d_runCurateCandidates as runCurateCandidates, index_d_runCurateDecline as runCurateDecline, index_d_runCuratePreview as runCuratePreview, index_d_runStatuslineCli as runStatuslineCli, index_d_runTemplatesUpdate as runTemplatesUpdate, index_d_runVortexCli as runVortexCli, index_d_safeSegment as safeSegment, index_d_scanHandoffs as scanHandoffs, index_d_serializeSettings as serializeSettings, index_d_sessionStartCommand as sessionStartCommand, index_d_sniffEffortFromTranscript as sniffEffortFromTranscript, index_d_statuslineCommand as statuslineCommand, index_d_templateDestRelPath as templateDestRelPath, index_d_upsertGlobalBlock as upsertGlobalBlock, index_d_validateCuratePayload as validateCuratePayload, index_d_vortexCommand as vortexCommand, index_d_writeOwnershipManifest as writeOwnershipManifest };
4080
4262
  }
4081
4263
 
4082
4264
  export { index_d$9 as aiCodingPitfalls, index_d$d as core, index_d$a as dataLint, index_d$5 as decisionLog, index_d$4 as indexGenerator, index_d$2 as linkRewriter, index_d$b as memorySystem, index_d$1 as proactiveCurator, index_d$7 as reportGenerator, index_d$3 as runbooks, index_d as sessionRituals, index_d$c as slashCommands, index_d$8 as toolRules, index_d$6 as worklog };