@vortex-os/base 0.8.0 → 0.9.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 +136 -2
- package/dist/index.js +666 -429
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/commands/handoff.md +15 -13
- package/templates/manifest.json +3 -3
- package/templates/routers/AI-RULES.md +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -146,6 +146,20 @@ interface AutoRecordConfig {
|
|
|
146
146
|
* wait for you to merge.
|
|
147
147
|
*/
|
|
148
148
|
readonly commitFrameworkChanges: boolean;
|
|
149
|
+
/**
|
|
150
|
+
* Use the dedicated session hand-off store (`data/_handoff/`) — a forward-
|
|
151
|
+
* looking baton kept separate from the worklog. On by default. When off,
|
|
152
|
+
* hand-offs fall back to the legacy `## 다음 작업` worklog section and no
|
|
153
|
+
* auto-archiving runs.
|
|
154
|
+
*/
|
|
155
|
+
readonly handoff: boolean;
|
|
156
|
+
/**
|
|
157
|
+
* Days a hand-off stays "active" before session start sweeps it to
|
|
158
|
+
* `_handoff/_archive/` (deterministic, age-based — git keeps the history).
|
|
159
|
+
* Default 7 (covers a week-long absence); set lower to tidy faster, higher to
|
|
160
|
+
* keep more around. A non-positive / malformed value falls back to the default.
|
|
161
|
+
*/
|
|
162
|
+
readonly handoffRetentionDays: number;
|
|
149
163
|
}
|
|
150
164
|
/**
|
|
151
165
|
* One environment label plus the signal that selects it. Rules are evaluated
|
|
@@ -896,11 +910,14 @@ interface WorklogFrontmatter {
|
|
|
896
910
|
* A parsed worklog entry.
|
|
897
911
|
*
|
|
898
912
|
* `date` is the ISO date portion of the filename (`YYYY-MM-DD`).
|
|
913
|
+
* `time` is the optional `HHMM` creation-time segment (`YYYY-MM-DD_HHMM-…`);
|
|
914
|
+
* absent on legacy names that predate the time convention.
|
|
899
915
|
* `keyword` is the trailing slug portion of the filename without `.md`.
|
|
900
916
|
* `path` is the absolute path of the file on disk.
|
|
901
917
|
*/
|
|
902
918
|
interface WorklogEntry {
|
|
903
919
|
readonly date: string;
|
|
920
|
+
readonly time?: string;
|
|
904
921
|
readonly keyword: string;
|
|
905
922
|
readonly path: string;
|
|
906
923
|
readonly frontmatter: WorklogFrontmatter;
|
|
@@ -929,7 +946,7 @@ declare class WorklogStore {
|
|
|
929
946
|
/** Most recent entry by date (descending), then keyword (descending). */
|
|
930
947
|
getLatest(): Promise<WorklogEntry | undefined>;
|
|
931
948
|
/** Resolve the file path for a given (date, keyword), without creating it. */
|
|
932
|
-
pathFor(date: string, keyword: string): string;
|
|
949
|
+
pathFor(date: string, keyword: string, time?: string): string;
|
|
933
950
|
private listSubdirs;
|
|
934
951
|
private entriesIn;
|
|
935
952
|
}
|
|
@@ -3096,6 +3113,22 @@ interface SessionStartHookReport {
|
|
|
3096
3113
|
* exist but `_INDEX.md` is missing, or a `_memory/*.md` is newer than it.
|
|
3097
3114
|
*/
|
|
3098
3115
|
readonly memoryIndexStale: boolean;
|
|
3116
|
+
/**
|
|
3117
|
+
* Active session hand-offs (`data/_handoff/`, newest first) — the forward-
|
|
3118
|
+
* looking "resume from here" batons, kept separate from the worklog. Each
|
|
3119
|
+
* carries a SANITIZED title and its next-step lines. Multiple are NORMAL
|
|
3120
|
+
* (concurrent sessions). When any exist they are the canonical resume surface
|
|
3121
|
+
* and the render shows them in place of the worklog-derived `nextUp`.
|
|
3122
|
+
*/
|
|
3123
|
+
readonly handoffs: readonly {
|
|
3124
|
+
readonly date: string;
|
|
3125
|
+
readonly time: string;
|
|
3126
|
+
readonly path: string;
|
|
3127
|
+
readonly title: string;
|
|
3128
|
+
readonly nextUp: readonly string[];
|
|
3129
|
+
}[];
|
|
3130
|
+
/** Active hand-offs beyond the surfaced cap (0 = none). */
|
|
3131
|
+
readonly handoffsOmitted: number;
|
|
3099
3132
|
}
|
|
3100
3133
|
/**
|
|
3101
3134
|
* Gather the read-only facts for a start-of-session report: data-dir counts,
|
|
@@ -3141,6 +3174,10 @@ declare function renderSessionStartReport(report: SessionStartHookReport, extras
|
|
|
3141
3174
|
*/
|
|
3142
3175
|
readonly baseVersion?: string | null;
|
|
3143
3176
|
readonly missingWorklogDays?: readonly string[];
|
|
3177
|
+
/** Hand-offs swept to `_handoff/_archive/` by the age-based prune this run. */
|
|
3178
|
+
readonly handoffPrune?: {
|
|
3179
|
+
readonly archived: number;
|
|
3180
|
+
};
|
|
3144
3181
|
readonly catchUp?: {
|
|
3145
3182
|
readonly ingestedLocal: number;
|
|
3146
3183
|
readonly indexedPulled: number;
|
|
@@ -3318,6 +3355,94 @@ interface WorklogAppendResult {
|
|
|
3318
3355
|
*/
|
|
3319
3356
|
declare const logCommand: Command<WorklogAppendResult>;
|
|
3320
3357
|
|
|
3358
|
+
interface HandoffCreateResult {
|
|
3359
|
+
readonly path: string;
|
|
3360
|
+
readonly date: string;
|
|
3361
|
+
readonly time: string;
|
|
3362
|
+
}
|
|
3363
|
+
/**
|
|
3364
|
+
* `/handoff [title]` — Create a new, empty session hand-off file under
|
|
3365
|
+
* `data/_handoff/` (named `YYYY-MM-DD_HHMM.md`, with a `-2` suffix only on a
|
|
3366
|
+
* same-minute collision) and return its path for the agent to fill in.
|
|
3367
|
+
*
|
|
3368
|
+
* Deliberately small, mirroring `/log`: the host creates the file SAFELY
|
|
3369
|
+
* (atomic exclusive create, so a concurrent session never clobbers another's
|
|
3370
|
+
* baton), and the agent writes the actual hand-off content into the returned
|
|
3371
|
+
* file. The hand-off is a forward-looking baton kept separate from the worklog;
|
|
3372
|
+
* old ones are swept to `_handoff/_archive/` automatically at session start.
|
|
3373
|
+
*/
|
|
3374
|
+
declare const handoffCommand: Command<HandoffCreateResult>;
|
|
3375
|
+
|
|
3376
|
+
/**
|
|
3377
|
+
* Session hand-off store: `data/_handoff/`.
|
|
3378
|
+
*
|
|
3379
|
+
* A hand-off is a forward-looking baton — "where this session stopped and what
|
|
3380
|
+
* the next one should pick up" — kept SEPARATE from the worklog (the permanent,
|
|
3381
|
+
* backward-looking record). One file per session, named
|
|
3382
|
+
* `YYYY-MM-DD_HHMM.md` (a `-2`/`-3` suffix is added only when two sessions wrap
|
|
3383
|
+
* in the same minute, so a concurrent session never clobbers another's baton).
|
|
3384
|
+
* The file is created with an EXCLUSIVE open (`wx`) so that collision handling
|
|
3385
|
+
* is atomic, not an LLM ritual. Old hand-offs are swept to `_handoff/_archive/`
|
|
3386
|
+
* by {@link pruneHandoffs} (deterministic, age-based) — git keeps the history.
|
|
3387
|
+
*
|
|
3388
|
+
* Design rationale + the alternatives rejected (carry-forward, archive-on-
|
|
3389
|
+
* consume): decision-log `2026-06-07-핸드오프-세션단위-분리-자동정리`.
|
|
3390
|
+
*/
|
|
3391
|
+
declare const HANDOFF_DIR = "_handoff";
|
|
3392
|
+
declare const HANDOFF_ARCHIVE_DIR = "_archive";
|
|
3393
|
+
interface HandoffWriteResult {
|
|
3394
|
+
readonly path: string;
|
|
3395
|
+
readonly name: string;
|
|
3396
|
+
readonly date: string;
|
|
3397
|
+
readonly time: string;
|
|
3398
|
+
}
|
|
3399
|
+
/**
|
|
3400
|
+
* Create a new, EMPTY-skeleton hand-off file and return its path for the agent
|
|
3401
|
+
* to fill in (mirrors `/log`: the host creates the file safely, the agent writes
|
|
3402
|
+
* the content). Atomic exclusive create; on a same-minute collision a numeric
|
|
3403
|
+
* suffix is appended so a concurrent session's file is never overwritten.
|
|
3404
|
+
*/
|
|
3405
|
+
declare function createHandoffSkeleton(dataDir: string, opts?: {
|
|
3406
|
+
readonly now?: Date;
|
|
3407
|
+
readonly title?: string;
|
|
3408
|
+
}): Promise<HandoffWriteResult>;
|
|
3409
|
+
interface HandoffSummary {
|
|
3410
|
+
readonly date: string;
|
|
3411
|
+
readonly time: string;
|
|
3412
|
+
/** Path relative to the data dir, e.g. `_handoff/2026-06-07_1604.md`. */
|
|
3413
|
+
readonly relPath: string;
|
|
3414
|
+
/** First `# ` heading, else the filename. RAW — the caller sanitizes. */
|
|
3415
|
+
readonly title: string;
|
|
3416
|
+
/** Hand-off `## 다음 작업` lines (via {@link extractNextUp}). RAW. */
|
|
3417
|
+
readonly nextUp: readonly string[];
|
|
3418
|
+
}
|
|
3419
|
+
/**
|
|
3420
|
+
* List the ACTIVE hand-offs (everything under `_handoff/` except `_archive/`),
|
|
3421
|
+
* newest first. Returns up to `max` summaries with the count omitted beyond it,
|
|
3422
|
+
* so a busy stretch of many small hand-offs stays a bounded pointer at session
|
|
3423
|
+
* start. Multiple active hand-offs are NORMAL (concurrent sessions) — the caller
|
|
3424
|
+
* surfaces them all, not as an exceptional state.
|
|
3425
|
+
*/
|
|
3426
|
+
declare function scanHandoffs(dataDir: string, opts?: {
|
|
3427
|
+
readonly max?: number;
|
|
3428
|
+
}): Promise<{
|
|
3429
|
+
active: HandoffSummary[];
|
|
3430
|
+
omitted: number;
|
|
3431
|
+
}>;
|
|
3432
|
+
/**
|
|
3433
|
+
* Sweep hand-offs older than `retentionDays` into `_handoff/_archive/`
|
|
3434
|
+
* (deterministic, age-based — NOT an LLM step, so it cannot drift). Idempotent
|
|
3435
|
+
* and concurrency-tolerant: a file already moved by a racing session is simply
|
|
3436
|
+
* skipped. Git keeps the full history, so this is a working-tree tidy, not a
|
|
3437
|
+
* destructive delete. Returns how many were archived.
|
|
3438
|
+
*/
|
|
3439
|
+
declare function pruneHandoffs(dataDir: string, opts: {
|
|
3440
|
+
readonly now?: Date;
|
|
3441
|
+
readonly retentionDays: number;
|
|
3442
|
+
}): Promise<{
|
|
3443
|
+
archived: number;
|
|
3444
|
+
}>;
|
|
3445
|
+
|
|
3321
3446
|
/**
|
|
3322
3447
|
* "What should I do today?" — a read-only synthesis over existing records
|
|
3323
3448
|
* (worklog + decision-log + open `- [ ]` checkboxes), the P2 work-management
|
|
@@ -3851,6 +3976,11 @@ type index_d_CurateResult = CurateResult;
|
|
|
3851
3976
|
type index_d_EnsureHooksResult = EnsureHooksResult;
|
|
3852
3977
|
type index_d_EnsureWorklogResult = EnsureWorklogResult;
|
|
3853
3978
|
type index_d_GitPullResult = GitPullResult;
|
|
3979
|
+
declare const index_d_HANDOFF_ARCHIVE_DIR: typeof HANDOFF_ARCHIVE_DIR;
|
|
3980
|
+
declare const index_d_HANDOFF_DIR: typeof HANDOFF_DIR;
|
|
3981
|
+
type index_d_HandoffCreateResult = HandoffCreateResult;
|
|
3982
|
+
type index_d_HandoffSummary = HandoffSummary;
|
|
3983
|
+
type index_d_HandoffWriteResult = HandoffWriteResult;
|
|
3854
3984
|
type index_d_NewDecisionResult = NewDecisionResult;
|
|
3855
3985
|
declare const index_d_OWNERSHIP_SCHEMA: typeof OWNERSHIP_SCHEMA;
|
|
3856
3986
|
type index_d_OpenDecision = OpenDecision;
|
|
@@ -3895,6 +4025,7 @@ declare const index_d_compareSemver: typeof compareSemver;
|
|
|
3895
4025
|
declare const index_d_computeCurateFingerprint: typeof computeCurateFingerprint;
|
|
3896
4026
|
declare const index_d_countUncommitted: typeof countUncommitted;
|
|
3897
4027
|
declare const index_d_createAmbientRecaller: typeof createAmbientRecaller;
|
|
4028
|
+
declare const index_d_createHandoffSkeleton: typeof createHandoffSkeleton;
|
|
3898
4029
|
declare const index_d_createRitualRegistry: typeof createRitualRegistry;
|
|
3899
4030
|
declare const index_d_curateCommand: typeof curateCommand;
|
|
3900
4031
|
declare const index_d_decisionCommand: typeof decisionCommand;
|
|
@@ -3908,6 +4039,7 @@ declare const index_d_globalMemoryPath: typeof globalMemoryPath;
|
|
|
3908
4039
|
declare const index_d_globalSettingsHasHook: typeof globalSettingsHasHook;
|
|
3909
4040
|
declare const index_d_globalSettingsPath: typeof globalSettingsPath;
|
|
3910
4041
|
declare const index_d_globalStatePath: typeof globalStatePath;
|
|
4042
|
+
declare const index_d_handoffCommand: typeof handoffCommand;
|
|
3911
4043
|
declare const index_d_inspectGlobalSetup: typeof inspectGlobalSetup;
|
|
3912
4044
|
declare const index_d_inspectOwnership: typeof inspectOwnership;
|
|
3913
4045
|
declare const index_d_isInstanceRoot: typeof isInstanceRoot;
|
|
@@ -3917,6 +4049,7 @@ declare const index_d_logCommand: typeof logCommand;
|
|
|
3917
4049
|
declare const index_d_ownershipManifestPath: typeof ownershipManifestPath;
|
|
3918
4050
|
declare const index_d_parseAdoptArgs: typeof parseAdoptArgs;
|
|
3919
4051
|
declare const index_d_parseSettings: typeof parseSettings;
|
|
4052
|
+
declare const index_d_pruneHandoffs: typeof pruneHandoffs;
|
|
3920
4053
|
declare const index_d_queryNpmLatest: typeof queryNpmLatest;
|
|
3921
4054
|
declare const index_d_readGlobalInstancePointer: typeof readGlobalInstancePointer;
|
|
3922
4055
|
declare const index_d_readInstalledBaseVersion: typeof readInstalledBaseVersion;
|
|
@@ -3934,6 +4067,7 @@ declare const index_d_runCurateDecline: typeof runCurateDecline;
|
|
|
3934
4067
|
declare const index_d_runCuratePreview: typeof runCuratePreview;
|
|
3935
4068
|
declare const index_d_runTemplatesUpdate: typeof runTemplatesUpdate;
|
|
3936
4069
|
declare const index_d_runVortexCli: typeof runVortexCli;
|
|
4070
|
+
declare const index_d_scanHandoffs: typeof scanHandoffs;
|
|
3937
4071
|
declare const index_d_serializeSettings: typeof serializeSettings;
|
|
3938
4072
|
declare const index_d_sessionStartCommand: typeof sessionStartCommand;
|
|
3939
4073
|
declare const index_d_templateDestRelPath: typeof templateDestRelPath;
|
|
@@ -3942,7 +4076,7 @@ declare const index_d_validateCuratePayload: typeof validateCuratePayload;
|
|
|
3942
4076
|
declare const index_d_vortexCommand: typeof vortexCommand;
|
|
3943
4077
|
declare const index_d_writeOwnershipManifest: typeof writeOwnershipManifest;
|
|
3944
4078
|
declare namespace index_d {
|
|
3945
|
-
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, 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_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_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_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_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 };
|
|
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 };
|
|
3946
4080
|
}
|
|
3947
4081
|
|
|
3948
4082
|
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 };
|