mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-28 08:49:38 +02:00
Fast mode (the ktx ingest --fast/--deep database-ingest depth toggle) is removed.
ktx ingest now always builds the full enriched ("deep") context. There is no
structural fallback: a database connection without a configured model and
embeddings fails the enrichment-readiness preflight before any work runs, with
a 'Run ktx setup to configure a model and embeddings' hint.
- Remove --fast/--deep flags, the per-connection context.depth field, and the
ktx setup depth prompt (delete setup-database-context-depth.ts).
- Rename ingest-depth.ts -> connection-drivers.ts; ingest always requests scan
mode 'enriched'; readiness gate (enrichmentReadinessGaps) runs for every
database target.
- Drop the database-context-depth telemetry step (Node + Python schema mirrors
regenerated).
- Update CLI, setup, context-build view, docs, the public ktx skill, and the
release-smoke / artifacts scripts (now assert the no-LLM guard failure).
ktx status --fast (a separate network-probe flag) is unchanged.
Follow-ups: KLO-726 (live progress for ktx ingest --all), KLO-727 (restore
credentialed successful-ingest release smoke coverage).
42 lines
1.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
function escapeRegExp(value: string): string {
|
|
return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
|
}
|
|
|
|
const DATABASE_INGEST_REPLACEMENTS: Array<[RegExp, string]> = [
|
|
[/\bPreparing scan\b/gi, 'Preparing database ingest'],
|
|
[/\bInspecting database schema\b/gi, 'Reading database schema'],
|
|
[/\bWriting schema artifacts\b/gi, 'Writing schema context'],
|
|
[/\bEnriching schema metadata\b/gi, 'Building enriched schema context'],
|
|
[
|
|
/\bKTX scan enrichment failed after structural scan completed\b/gi,
|
|
'Database enrichment failed after schema context completed',
|
|
],
|
|
[/\bstructural scan\b/gi, 'schema context'],
|
|
[/\benriched scan\b/gi, 'database ingest'],
|
|
[/\bscan results\b/gi, 'database context'],
|
|
];
|
|
|
|
export function publicDatabaseIngestMessage(message: string): string {
|
|
return DATABASE_INGEST_REPLACEMENTS.reduce(
|
|
(current, [pattern, replacement]) => current.replace(pattern, replacement),
|
|
message,
|
|
);
|
|
}
|
|
|
|
export function publicQueryHistoryMessage(message: string, connectionId?: string): string {
|
|
let current = message;
|
|
if (connectionId && connectionId.length > 0) {
|
|
const escapedConnectionId = escapeRegExp(connectionId);
|
|
current = current
|
|
.replace(
|
|
new RegExp(`Fetching source files for ${escapedConnectionId}/historic-sql`, 'i'),
|
|
`Fetching query history for ${connectionId}`,
|
|
)
|
|
.replace(`${connectionId}/historic-sql`, `${connectionId} query history`);
|
|
}
|
|
return current.replace(/\bhistoric-sql\b/g, 'query history').replace(/\bhistoric SQL\b/gi, 'query history');
|
|
}
|
|
|
|
export function publicIngestOutputLine(line: string): string {
|
|
return publicQueryHistoryMessage(publicDatabaseIngestMessage(line)).replace(/\blive-database\b/g, 'database schema');
|
|
}
|