| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535 |
- #!/usr/bin/env bun
- import { Database } from "bun:sqlite";
- import { Glob, $ } from "bun";
- import { parseArgs } from "util";
- import { readFileSync, statSync, existsSync, unlinkSync, writeFileSync, openSync, closeSync, mkdirSync } from "fs";
- import {
- getPwd,
- getRealPath,
- homedir,
- resolve,
- enableProductionMode,
- searchFTS,
- extractSnippet,
- getContextForFile,
- getContextForPath,
- listCollections,
- removeCollection,
- renameCollection,
- findSimilarFiles,
- findDocumentByDocid,
- isDocid,
- matchFilesByGlob,
- getHashesNeedingEmbedding,
- getHashesForEmbedding,
- clearAllEmbeddings,
- insertEmbedding,
- getStatus,
- hashContent,
- extractTitle,
- formatDocForEmbedding,
- chunkDocumentByTokens,
- clearCache,
- getCacheKey,
- getCachedResult,
- setCachedResult,
- getIndexHealth,
- parseVirtualPath,
- buildVirtualPath,
- isVirtualPath,
- resolveVirtualPath,
- toVirtualPath,
- insertContent,
- insertDocument,
- findActiveDocument,
- updateDocumentTitle,
- updateDocument,
- deactivateDocument,
- getActiveDocumentPaths,
- cleanupOrphanedContent,
- deleteLLMCache,
- deleteInactiveDocuments,
- cleanupOrphanedVectors,
- vacuumDatabase,
- getCollectionsWithoutContext,
- getTopLevelPathsWithoutContext,
- handelize,
- hybridQuery,
- vectorSearchQuery,
- addLineNumbers,
- type ExpandedQuery,
- DEFAULT_EMBED_MODEL,
- DEFAULT_RERANK_MODEL,
- DEFAULT_GLOB,
- DEFAULT_MULTI_GET_MAX_BYTES,
- createStore,
- getDefaultDbPath,
- } from "./store.js";
- import { disposeDefaultLlamaCpp, withLLMSession, pullModels, DEFAULT_EMBED_MODEL_URI, DEFAULT_GENERATE_MODEL_URI, DEFAULT_RERANK_MODEL_URI, DEFAULT_MODEL_CACHE_DIR } from "./llm.js";
- import {
- formatSearchResults,
- formatDocuments,
- escapeXml,
- escapeCSV,
- type OutputFormat,
- } from "./formatter.js";
- import {
- getCollection as getCollectionFromYaml,
- listCollections as yamlListCollections,
- addContext as yamlAddContext,
- removeContext as yamlRemoveContext,
- setGlobalContext,
- listAllContexts,
- setConfigIndexName,
- } from "./collections.js";
- // Enable production mode - allows using default database path
- // Tests must set INDEX_PATH or use createStore() with explicit path
- enableProductionMode();
- // =============================================================================
- // Store/DB lifecycle (no legacy singletons in store.ts)
- // =============================================================================
- let store: ReturnType<typeof createStore> | null = null;
- let storeDbPathOverride: string | undefined;
- function getStore(): ReturnType<typeof createStore> {
- if (!store) {
- store = createStore(storeDbPathOverride);
- }
- return store;
- }
- function getDb(): Database {
- return getStore().db;
- }
- function closeDb(): void {
- if (store) {
- store.close();
- store = null;
- }
- }
- function getDbPath(): string {
- return store?.dbPath ?? storeDbPathOverride ?? getDefaultDbPath();
- }
- function setIndexName(name: string | null): void {
- storeDbPathOverride = name ? getDefaultDbPath(name) : undefined;
- // Reset open handle so next use opens the new index
- closeDb();
- }
- function ensureVecTable(_db: Database, dimensions: number): void {
- // Store owns the DB; ignore `_db` and ensure vec table on the active store
- getStore().ensureVecTable(dimensions);
- }
- // Terminal colors (respects NO_COLOR env)
- const useColor = !process.env.NO_COLOR && process.stdout.isTTY;
- const c = {
- reset: useColor ? "\x1b[0m" : "",
- dim: useColor ? "\x1b[2m" : "",
- bold: useColor ? "\x1b[1m" : "",
- cyan: useColor ? "\x1b[36m" : "",
- yellow: useColor ? "\x1b[33m" : "",
- green: useColor ? "\x1b[32m" : "",
- magenta: useColor ? "\x1b[35m" : "",
- blue: useColor ? "\x1b[34m" : "",
- };
- // Terminal cursor control
- const cursor = {
- hide() { process.stderr.write('\x1b[?25l'); },
- show() { process.stderr.write('\x1b[?25h'); },
- };
- // Ensure cursor is restored on exit
- process.on('SIGINT', () => { cursor.show(); process.exit(130); });
- process.on('SIGTERM', () => { cursor.show(); process.exit(143); });
- // Terminal progress bar using OSC 9;4 escape sequence
- const progress = {
- set(percent: number) {
- process.stderr.write(`\x1b]9;4;1;${Math.round(percent)}\x07`);
- },
- clear() {
- process.stderr.write(`\x1b]9;4;0\x07`);
- },
- indeterminate() {
- process.stderr.write(`\x1b]9;4;3\x07`);
- },
- error() {
- process.stderr.write(`\x1b]9;4;2\x07`);
- },
- };
- // Format seconds into human-readable ETA
- function formatETA(seconds: number): string {
- if (seconds < 60) return `${Math.round(seconds)}s`;
- if (seconds < 3600) return `${Math.floor(seconds / 60)}m ${Math.round(seconds % 60)}s`;
- return `${Math.floor(seconds / 3600)}h ${Math.floor((seconds % 3600) / 60)}m`;
- }
- // Check index health and print warnings/tips
- function checkIndexHealth(db: Database): void {
- const { needsEmbedding, totalDocs, daysStale } = getIndexHealth(db);
- // Warn if many docs need embedding
- if (needsEmbedding > 0) {
- const pct = Math.round((needsEmbedding / totalDocs) * 100);
- if (pct >= 10) {
- process.stderr.write(`${c.yellow}Warning: ${needsEmbedding} documents (${pct}%) need embeddings. Run 'qmd embed' for better results.${c.reset}\n`);
- } else {
- process.stderr.write(`${c.dim}Tip: ${needsEmbedding} documents need embeddings. Run 'qmd embed' to index them.${c.reset}\n`);
- }
- }
- // Check if most recent document update is older than 2 weeks
- if (daysStale !== null && daysStale >= 14) {
- process.stderr.write(`${c.dim}Tip: Index last updated ${daysStale} days ago. Run 'qmd update' to refresh.${c.reset}\n`);
- }
- }
- // Compute unique display path for a document
- // Always include at least parent folder + filename, add more parent dirs until unique
- function computeDisplayPath(
- filepath: string,
- collectionPath: string,
- existingPaths: Set<string>
- ): string {
- // Get path relative to collection (include collection dir name)
- const collectionDir = collectionPath.replace(/\/$/, '');
- const collectionName = collectionDir.split('/').pop() || '';
- let relativePath: string;
- if (filepath.startsWith(collectionDir + '/')) {
- // filepath is under collection: use collection name + relative path
- relativePath = collectionName + filepath.slice(collectionDir.length);
- } else {
- // Fallback: just use the filepath
- relativePath = filepath;
- }
- const parts = relativePath.split('/').filter(p => p.length > 0);
- // Always include at least parent folder + filename (minimum 2 parts if available)
- // Then add more parent dirs until unique
- const minParts = Math.min(2, parts.length);
- for (let i = parts.length - minParts; i >= 0; i--) {
- const candidate = parts.slice(i).join('/');
- if (!existingPaths.has(candidate)) {
- return candidate;
- }
- }
- // Absolute fallback: use full path (should be unique)
- return filepath;
- }
- function formatTimeAgo(date: Date): string {
- const seconds = Math.floor((Date.now() - date.getTime()) / 1000);
- if (seconds < 60) return `${seconds}s ago`;
- const minutes = Math.floor(seconds / 60);
- if (minutes < 60) return `${minutes}m ago`;
- const hours = Math.floor(minutes / 60);
- if (hours < 24) return `${hours}h ago`;
- const days = Math.floor(hours / 24);
- return `${days}d ago`;
- }
- function formatBytes(bytes: number): string {
- if (bytes < 1024) return `${bytes} B`;
- if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
- if (bytes < 1024 * 1024 * 1024) return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
- return `${(bytes / (1024 * 1024 * 1024)).toFixed(1)} GB`;
- }
- function showStatus(): void {
- const dbPath = getDbPath();
- const db = getDb();
- // Collections are defined in YAML; no duplicate cleanup needed.
- // Collections are defined in YAML; no duplicate cleanup needed.
- // Index size
- let indexSize = 0;
- try {
- const stat = statSync(dbPath).size;
- indexSize = stat;
- } catch { }
- // Collections info (from YAML + database stats)
- const collections = listCollections(db);
- // Overall stats
- const totalDocs = db.prepare(`SELECT COUNT(*) as count FROM documents WHERE active = 1`).get() as { count: number };
- const vectorCount = db.prepare(`SELECT COUNT(*) as count FROM content_vectors`).get() as { count: number };
- const needsEmbedding = getHashesNeedingEmbedding(db);
- // Most recent update across all collections
- const mostRecent = db.prepare(`SELECT MAX(modified_at) as latest FROM documents WHERE active = 1`).get() as { latest: string | null };
- console.log(`${c.bold}QMD Status${c.reset}\n`);
- console.log(`Index: ${dbPath}`);
- console.log(`Size: ${formatBytes(indexSize)}`);
- // MCP daemon status (check PID file liveness)
- const mcpCacheDir = Bun.env.XDG_CACHE_HOME
- ? resolve(Bun.env.XDG_CACHE_HOME, "qmd")
- : resolve(homedir(), ".cache", "qmd");
- const mcpPidPath = resolve(mcpCacheDir, "mcp.pid");
- if (existsSync(mcpPidPath)) {
- const mcpPid = parseInt(readFileSync(mcpPidPath, "utf-8").trim());
- try {
- process.kill(mcpPid, 0);
- console.log(`MCP: ${c.green}running${c.reset} (PID ${mcpPid})`);
- } catch {
- unlinkSync(mcpPidPath);
- // Stale PID file cleaned up silently
- }
- }
- console.log("");
- console.log(`${c.bold}Documents${c.reset}`);
- console.log(` Total: ${totalDocs.count} files indexed`);
- console.log(` Vectors: ${vectorCount.count} embedded`);
- if (needsEmbedding > 0) {
- console.log(` ${c.yellow}Pending: ${needsEmbedding} need embedding${c.reset} (run 'qmd embed')`);
- }
- if (mostRecent.latest) {
- const lastUpdate = new Date(mostRecent.latest);
- console.log(` Updated: ${formatTimeAgo(lastUpdate)}`);
- }
- // Get all contexts grouped by collection (from YAML)
- const allContexts = listAllContexts();
- const contextsByCollection = new Map<string, { path_prefix: string; context: string }[]>();
- for (const ctx of allContexts) {
- // Group contexts by collection name
- if (!contextsByCollection.has(ctx.collection)) {
- contextsByCollection.set(ctx.collection, []);
- }
- contextsByCollection.get(ctx.collection)!.push({
- path_prefix: ctx.path,
- context: ctx.context
- });
- }
- if (collections.length > 0) {
- console.log(`\n${c.bold}Collections${c.reset}`);
- for (const col of collections) {
- const lastMod = col.last_modified ? formatTimeAgo(new Date(col.last_modified)) : "never";
- const contexts = contextsByCollection.get(col.name) || [];
- console.log(` ${c.cyan}${col.name}${c.reset} ${c.dim}(qmd://${col.name}/)${c.reset}`);
- console.log(` ${c.dim}Pattern:${c.reset} ${col.glob_pattern}`);
- console.log(` ${c.dim}Files:${c.reset} ${col.active_count} (updated ${lastMod})`);
- if (contexts.length > 0) {
- console.log(` ${c.dim}Contexts:${c.reset} ${contexts.length}`);
- for (const ctx of contexts) {
- // Handle both empty string and '/' as root context
- const pathDisplay = (ctx.path_prefix === '' || ctx.path_prefix === '/') ? '/' : `/${ctx.path_prefix}`;
- const contextPreview = ctx.context.length > 60
- ? ctx.context.substring(0, 57) + '...'
- : ctx.context;
- console.log(` ${c.dim}${pathDisplay}:${c.reset} ${contextPreview}`);
- }
- }
- }
- // Show examples of virtual paths
- console.log(`\n${c.bold}Examples${c.reset}`);
- console.log(` ${c.dim}# List files in a collection${c.reset}`);
- if (collections.length > 0 && collections[0]) {
- console.log(` qmd ls ${collections[0].name}`);
- }
- console.log(` ${c.dim}# Get a document${c.reset}`);
- if (collections.length > 0 && collections[0]) {
- console.log(` qmd get qmd://${collections[0].name}/path/to/file.md`);
- }
- console.log(` ${c.dim}# Search within a collection${c.reset}`);
- if (collections.length > 0 && collections[0]) {
- console.log(` qmd search "query" -c ${collections[0].name}`);
- }
- } else {
- console.log(`\n${c.dim}No collections. Run 'qmd collection add .' to index markdown files.${c.reset}`);
- }
- closeDb();
- }
- async function updateCollections(): Promise<void> {
- const db = getDb();
- // Collections are defined in YAML; no duplicate cleanup needed.
- // Clear Ollama cache on update
- clearCache(db);
- const collections = listCollections(db);
- if (collections.length === 0) {
- console.log(`${c.dim}No collections found. Run 'qmd collection add .' to index markdown files.${c.reset}`);
- closeDb();
- return;
- }
- // Don't close db here - indexFiles will reuse it and close at the end
- console.log(`${c.bold}Updating ${collections.length} collection(s)...${c.reset}\n`);
- for (let i = 0; i < collections.length; i++) {
- const col = collections[i];
- if (!col) continue;
- console.log(`${c.cyan}[${i + 1}/${collections.length}]${c.reset} ${c.bold}${col.name}${c.reset} ${c.dim}(${col.glob_pattern})${c.reset}`);
- // Execute custom update command if specified in YAML
- const yamlCol = getCollectionFromYaml(col.name);
- if (yamlCol?.update) {
- console.log(`${c.dim} Running update command: ${yamlCol.update}${c.reset}`);
- try {
- const proc = Bun.spawn(["/usr/bin/env", "bash", "-c", yamlCol.update], {
- cwd: col.pwd,
- stdout: "pipe",
- stderr: "pipe",
- });
- const output = await new Response(proc.stdout).text();
- const errorOutput = await new Response(proc.stderr).text();
- const exitCode = await proc.exited;
- if (output.trim()) {
- console.log(output.trim().split('\n').map(l => ` ${l}`).join('\n'));
- }
- if (errorOutput.trim()) {
- console.log(errorOutput.trim().split('\n').map(l => ` ${l}`).join('\n'));
- }
- if (exitCode !== 0) {
- console.log(`${c.yellow}✗ Update command failed with exit code ${exitCode}${c.reset}`);
- process.exit(exitCode);
- }
- } catch (err) {
- console.log(`${c.yellow}✗ Update command failed: ${err}${c.reset}`);
- process.exit(1);
- }
- }
- await indexFiles(col.pwd, col.glob_pattern, col.name, true);
- console.log("");
- }
- // Check if any documents need embedding (show once at end)
- const finalDb = getDb();
- const needsEmbedding = getHashesNeedingEmbedding(finalDb);
- closeDb();
- console.log(`${c.green}✓ All collections updated.${c.reset}`);
- if (needsEmbedding > 0) {
- console.log(`\nRun 'qmd embed' to update embeddings (${needsEmbedding} unique hashes need vectors)`);
- }
- }
- /**
- * Detect which collection (if any) contains the given filesystem path.
- * Returns { collectionId, collectionName, relativePath } or null if not in any collection.
- */
- function detectCollectionFromPath(db: Database, fsPath: string): { collectionName: string; relativePath: string } | null {
- const realPath = getRealPath(fsPath);
- // Find collections that this path is under from YAML
- const allCollections = yamlListCollections();
- // Find longest matching path
- let bestMatch: { name: string; path: string } | null = null;
- for (const coll of allCollections) {
- if (realPath.startsWith(coll.path + '/') || realPath === coll.path) {
- if (!bestMatch || coll.path.length > bestMatch.path.length) {
- bestMatch = { name: coll.name, path: coll.path };
- }
- }
- }
- if (!bestMatch) return null;
- // Calculate relative path
- let relativePath = realPath;
- if (relativePath.startsWith(bestMatch.path + '/')) {
- relativePath = relativePath.slice(bestMatch.path.length + 1);
- } else if (relativePath === bestMatch.path) {
- relativePath = '';
- }
- return {
- collectionName: bestMatch.name,
- relativePath
- };
- }
- async function contextAdd(pathArg: string | undefined, contextText: string): Promise<void> {
- const db = getDb();
- // Handle "/" as global context (applies to all collections)
- if (pathArg === '/') {
- setGlobalContext(contextText);
- console.log(`${c.green}✓${c.reset} Set global context`);
- console.log(`${c.dim}Context: ${contextText}${c.reset}`);
- closeDb();
- return;
- }
- // Resolve path - defaults to current directory if not provided
- let fsPath = pathArg || '.';
- if (fsPath === '.' || fsPath === './') {
- fsPath = getPwd();
- } else if (fsPath.startsWith('~/')) {
- fsPath = homedir() + fsPath.slice(1);
- } else if (!fsPath.startsWith('/') && !fsPath.startsWith('qmd://')) {
- fsPath = resolve(getPwd(), fsPath);
- }
- // Handle virtual paths (qmd://collection/path)
- if (isVirtualPath(fsPath)) {
- const parsed = parseVirtualPath(fsPath);
- if (!parsed) {
- console.error(`${c.yellow}Invalid virtual path: ${fsPath}${c.reset}`);
- process.exit(1);
- }
- const coll = getCollectionFromYaml(parsed.collectionName);
- if (!coll) {
- console.error(`${c.yellow}Collection not found: ${parsed.collectionName}${c.reset}`);
- process.exit(1);
- }
- yamlAddContext(parsed.collectionName, parsed.path, contextText);
- const displayPath = parsed.path
- ? `qmd://${parsed.collectionName}/${parsed.path}`
- : `qmd://${parsed.collectionName}/ (collection root)`;
- console.log(`${c.green}✓${c.reset} Added context for: ${displayPath}`);
- console.log(`${c.dim}Context: ${contextText}${c.reset}`);
- closeDb();
- return;
- }
- // Detect collection from filesystem path
- const detected = detectCollectionFromPath(db, fsPath);
- if (!detected) {
- console.error(`${c.yellow}Path is not in any indexed collection: ${fsPath}${c.reset}`);
- console.error(`${c.dim}Run 'qmd status' to see indexed collections${c.reset}`);
- process.exit(1);
- }
- yamlAddContext(detected.collectionName, detected.relativePath, contextText);
- const displayPath = detected.relativePath ? `qmd://${detected.collectionName}/${detected.relativePath}` : `qmd://${detected.collectionName}/`;
- console.log(`${c.green}✓${c.reset} Added context for: ${displayPath}`);
- console.log(`${c.dim}Context: ${contextText}${c.reset}`);
- closeDb();
- }
- function contextList(): void {
- const db = getDb();
- const allContexts = listAllContexts();
- if (allContexts.length === 0) {
- console.log(`${c.dim}No contexts configured. Use 'qmd context add' to add one.${c.reset}`);
- closeDb();
- return;
- }
- console.log(`\n${c.bold}Configured Contexts${c.reset}\n`);
- let lastCollection = '';
- for (const ctx of allContexts) {
- if (ctx.collection !== lastCollection) {
- console.log(`${c.cyan}${ctx.collection}${c.reset}`);
- lastCollection = ctx.collection;
- }
- const displayPath = ctx.path ? ` ${ctx.path}` : ' / (root)';
- console.log(`${displayPath}`);
- console.log(` ${c.dim}${ctx.context}${c.reset}`);
- }
- closeDb();
- }
- function contextRemove(pathArg: string): void {
- if (pathArg === '/') {
- // Remove global context
- setGlobalContext(undefined);
- console.log(`${c.green}✓${c.reset} Removed global context`);
- return;
- }
- // Handle virtual paths
- if (isVirtualPath(pathArg)) {
- const parsed = parseVirtualPath(pathArg);
- if (!parsed) {
- console.error(`${c.yellow}Invalid virtual path: ${pathArg}${c.reset}`);
- process.exit(1);
- }
- const coll = getCollectionFromYaml(parsed.collectionName);
- if (!coll) {
- console.error(`${c.yellow}Collection not found: ${parsed.collectionName}${c.reset}`);
- process.exit(1);
- }
- const success = yamlRemoveContext(coll.name, parsed.path);
- if (!success) {
- console.error(`${c.yellow}No context found for: ${pathArg}${c.reset}`);
- process.exit(1);
- }
- console.log(`${c.green}✓${c.reset} Removed context for: ${pathArg}`);
- return;
- }
- // Handle filesystem paths
- let fsPath = pathArg;
- if (fsPath === '.' || fsPath === './') {
- fsPath = getPwd();
- } else if (fsPath.startsWith('~/')) {
- fsPath = homedir() + fsPath.slice(1);
- } else if (!fsPath.startsWith('/')) {
- fsPath = resolve(getPwd(), fsPath);
- }
- const db = getDb();
- const detected = detectCollectionFromPath(db, fsPath);
- closeDb();
- if (!detected) {
- console.error(`${c.yellow}Path is not in any indexed collection: ${fsPath}${c.reset}`);
- process.exit(1);
- }
- const success = yamlRemoveContext(detected.collectionName, detected.relativePath);
- if (!success) {
- console.error(`${c.yellow}No context found for: qmd://${detected.collectionName}/${detected.relativePath}${c.reset}`);
- process.exit(1);
- }
- console.log(`${c.green}✓${c.reset} Removed context for: qmd://${detected.collectionName}/${detected.relativePath}`);
- }
- function contextCheck(): void {
- const db = getDb();
- // Get collections without any context
- const collectionsWithoutContext = getCollectionsWithoutContext(db);
- // Get all collections to check for missing path contexts
- const allCollections = listCollections(db);
- if (collectionsWithoutContext.length === 0 && allCollections.length > 0) {
- // Check if all collections have contexts
- console.log(`\n${c.green}✓${c.reset} ${c.bold}All collections have context configured${c.reset}\n`);
- }
- if (collectionsWithoutContext.length > 0) {
- console.log(`\n${c.yellow}Collections without any context:${c.reset}\n`);
- for (const coll of collectionsWithoutContext) {
- console.log(`${c.cyan}${coll.name}${c.reset} ${c.dim}(${coll.doc_count} documents)${c.reset}`);
- console.log(` ${c.dim}Suggestion: qmd context add qmd://${coll.name}/ "Description of ${coll.name}"${c.reset}\n`);
- }
- }
- // Check for top-level paths without context within collections that DO have context
- const collectionsWithContext = allCollections.filter(c =>
- c && !collectionsWithoutContext.some(cwc => cwc.name === c.name)
- );
- let hasPathSuggestions = false;
- for (const coll of collectionsWithContext) {
- if (!coll) continue;
- const missingPaths = getTopLevelPathsWithoutContext(db, coll.name);
- if (missingPaths.length > 0) {
- if (!hasPathSuggestions) {
- console.log(`${c.yellow}Top-level directories without context:${c.reset}\n`);
- hasPathSuggestions = true;
- }
- console.log(`${c.cyan}${coll.name}${c.reset}`);
- for (const path of missingPaths) {
- console.log(` ${path}`);
- console.log(` ${c.dim}Suggestion: qmd context add qmd://${coll.name}/${path} "Description of ${path}"${c.reset}`);
- }
- console.log('');
- }
- }
- if (collectionsWithoutContext.length === 0 && !hasPathSuggestions) {
- console.log(`${c.dim}All collections and major paths have context configured.${c.reset}`);
- console.log(`${c.dim}Use 'qmd context list' to see all configured contexts.${c.reset}\n`);
- }
- closeDb();
- }
- function getDocument(filename: string, fromLine?: number, maxLines?: number, lineNumbers?: boolean): void {
- const db = getDb();
- // Parse :linenum suffix from filename (e.g., "file.md:100")
- let inputPath = filename;
- const colonMatch = inputPath.match(/:(\d+)$/);
- if (colonMatch && !fromLine) {
- const matched = colonMatch[1];
- if (matched) {
- fromLine = parseInt(matched, 10);
- inputPath = inputPath.slice(0, -colonMatch[0].length);
- }
- }
- // Handle docid lookup (#abc123, abc123, "#abc123", "abc123", etc.)
- if (isDocid(inputPath)) {
- const docidMatch = findDocumentByDocid(db, inputPath);
- if (docidMatch) {
- inputPath = docidMatch.filepath;
- } else {
- console.error(`Document not found: ${filename}`);
- closeDb();
- process.exit(1);
- }
- }
- let doc: { collectionName: string; path: string; body: string } | null = null;
- let virtualPath: string;
- // Handle virtual paths (qmd://collection/path)
- if (isVirtualPath(inputPath)) {
- const parsed = parseVirtualPath(inputPath);
- if (!parsed) {
- console.error(`Invalid virtual path: ${inputPath}`);
- closeDb();
- process.exit(1);
- }
- // Try exact match on collection + path
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path = ? AND d.active = 1
- `).get(parsed.collectionName, parsed.path) as typeof doc;
- if (!doc) {
- // Try fuzzy match by path ending
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path LIKE ? AND d.active = 1
- LIMIT 1
- `).get(parsed.collectionName, `%${parsed.path}`) as typeof doc;
- }
- virtualPath = inputPath;
- } else {
- // Try to interpret as collection/path format first (before filesystem path)
- // If path is relative (no / or ~ prefix), check if first component is a collection name
- if (!inputPath.startsWith('/') && !inputPath.startsWith('~')) {
- const parts = inputPath.split('/');
- if (parts.length >= 2) {
- const possibleCollection = parts[0];
- const possiblePath = parts.slice(1).join('/');
- // Check if this collection exists
- const collExists = possibleCollection ? db.prepare(`
- SELECT 1 FROM documents WHERE collection = ? AND active = 1 LIMIT 1
- `).get(possibleCollection) : null;
- if (collExists) {
- // Try exact match on collection + path
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path = ? AND d.active = 1
- `).get(possibleCollection || "", possiblePath || "") as { collectionName: string; path: string; body: string } | null;
- if (!doc) {
- // Try fuzzy match by path ending
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path LIKE ? AND d.active = 1
- LIMIT 1
- `).get(possibleCollection || "", `%${possiblePath}`) as { collectionName: string; path: string; body: string } | null;
- }
- if (doc) {
- virtualPath = buildVirtualPath(doc.collectionName, doc.path);
- // Skip the filesystem path handling below
- }
- }
- }
- }
- // If not found as collection/path, handle as filesystem paths
- if (!doc) {
- let fsPath = inputPath;
- // Expand ~ to home directory
- if (fsPath.startsWith('~/')) {
- fsPath = homedir() + fsPath.slice(1);
- } else if (!fsPath.startsWith('/')) {
- // Relative path - resolve from current directory
- fsPath = resolve(getPwd(), fsPath);
- }
- fsPath = getRealPath(fsPath);
- // Try to detect which collection contains this path
- const detected = detectCollectionFromPath(db, fsPath);
- if (detected) {
- // Found collection - query by collection name + relative path
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path = ? AND d.active = 1
- `).get(detected.collectionName, detected.relativePath) as { collectionName: string; path: string; body: string } | null;
- }
- // Fuzzy match by filename (last component of path)
- if (!doc) {
- const filename = inputPath.split('/').pop() || inputPath;
- doc = db.prepare(`
- SELECT d.collection as collectionName, d.path, content.doc as body
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.path LIKE ? AND d.active = 1
- LIMIT 1
- `).get(`%${filename}`) as { collectionName: string; path: string; body: string } | null;
- }
- if (doc) {
- virtualPath = buildVirtualPath(doc.collectionName, doc.path);
- } else {
- virtualPath = inputPath;
- }
- }
- }
- // Ensure doc is not null before proceeding
- if (!doc) {
- console.error(`Document not found: ${filename}`);
- closeDb();
- process.exit(1);
- }
- // Get context for this file
- const context = getContextForPath(db, doc.collectionName, doc.path);
- let output = doc.body;
- const startLine = fromLine || 1;
- // Apply line filtering if specified
- if (fromLine !== undefined || maxLines !== undefined) {
- const lines = output.split('\n');
- const start = startLine - 1; // Convert to 0-indexed
- const end = maxLines !== undefined ? start + maxLines : lines.length;
- output = lines.slice(start, end).join('\n');
- }
- // Add line numbers if requested
- if (lineNumbers) {
- output = addLineNumbers(output, startLine);
- }
- // Output context header if exists
- if (context) {
- console.log(`Folder Context: ${context}\n---\n`);
- }
- console.log(output);
- closeDb();
- }
- // Multi-get: fetch multiple documents by glob pattern or comma-separated list
- function multiGet(pattern: string, maxLines?: number, maxBytes: number = DEFAULT_MULTI_GET_MAX_BYTES, format: OutputFormat = "cli"): void {
- const db = getDb();
- // Check if it's a comma-separated list or a glob pattern
- const isCommaSeparated = pattern.includes(',') && !pattern.includes('*') && !pattern.includes('?');
- let files: { filepath: string; displayPath: string; bodyLength: number; collection?: string; path?: string }[];
- if (isCommaSeparated) {
- // Comma-separated list of files (can be virtual paths or relative paths)
- const names = pattern.split(',').map(s => s.trim()).filter(Boolean);
- files = [];
- for (const name of names) {
- let doc: { virtual_path: string; body_length: number; collection: string; path: string } | null = null;
- // Handle virtual paths
- if (isVirtualPath(name)) {
- const parsed = parseVirtualPath(name);
- if (parsed) {
- // Try exact match on collection + path
- doc = db.prepare(`
- SELECT
- 'qmd://' || d.collection || '/' || d.path as virtual_path,
- LENGTH(content.doc) as body_length,
- d.collection,
- d.path
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path = ? AND d.active = 1
- `).get(parsed.collectionName, parsed.path) as typeof doc;
- }
- } else {
- // Try exact match on path
- doc = db.prepare(`
- SELECT
- 'qmd://' || d.collection || '/' || d.path as virtual_path,
- LENGTH(content.doc) as body_length,
- d.collection,
- d.path
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.path = ? AND d.active = 1
- LIMIT 1
- `).get(name) as { virtual_path: string; body_length: number; collection: string; path: string } | null;
- // Try suffix match
- if (!doc) {
- doc = db.prepare(`
- SELECT
- 'qmd://' || d.collection || '/' || d.path as virtual_path,
- LENGTH(content.doc) as body_length,
- d.collection,
- d.path
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.path LIKE ? AND d.active = 1
- LIMIT 1
- `).get(`%${name}`) as { virtual_path: string; body_length: number; collection: string; path: string } | null;
- }
- }
- if (doc) {
- files.push({
- filepath: doc.virtual_path,
- displayPath: doc.virtual_path,
- bodyLength: doc.body_length,
- collection: doc.collection,
- path: doc.path
- });
- } else {
- console.error(`File not found: ${name}`);
- }
- }
- } else {
- // Glob pattern - matchFilesByGlob now returns virtual paths
- files = matchFilesByGlob(db, pattern).map(f => ({
- ...f,
- collection: undefined, // Will be fetched later if needed
- path: undefined
- }));
- if (files.length === 0) {
- console.error(`No files matched pattern: ${pattern}`);
- closeDb();
- process.exit(1);
- }
- }
- // Collect results for structured output
- const results: { file: string; displayPath: string; title: string; body: string; context: string | null; skipped: boolean; skipReason?: string }[] = [];
- for (const file of files) {
- // Parse virtual path to get collection info if not already available
- let collection = file.collection;
- let path = file.path;
- if (!collection || !path) {
- const parsed = parseVirtualPath(file.filepath);
- if (parsed) {
- collection = parsed.collectionName;
- path = parsed.path;
- }
- }
- // Get context using collection-scoped function
- const context = collection && path ? getContextForPath(db, collection, path) : null;
- // Check size limit
- if (file.bodyLength > maxBytes) {
- results.push({
- file: file.filepath,
- displayPath: file.displayPath,
- title: file.displayPath.split('/').pop() || file.displayPath,
- body: "",
- context,
- skipped: true,
- skipReason: `File too large (${Math.round(file.bodyLength / 1024)}KB > ${Math.round(maxBytes / 1024)}KB). Use 'qmd get ${file.displayPath}' to retrieve.`,
- });
- continue;
- }
- // Fetch document content using collection and path
- if (!collection || !path) continue;
- const doc = db.prepare(`
- SELECT content.doc as body, d.title
- FROM documents d
- JOIN content ON content.hash = d.hash
- WHERE d.collection = ? AND d.path = ? AND d.active = 1
- `).get(collection, path) as { body: string; title: string } | null;
- if (!doc) continue;
- let body = doc.body;
- // Apply line limit if specified
- if (maxLines !== undefined) {
- const lines = body.split('\n');
- body = lines.slice(0, maxLines).join('\n');
- if (lines.length > maxLines) {
- body += `\n\n[... truncated ${lines.length - maxLines} more lines]`;
- }
- }
- results.push({
- file: file.filepath,
- displayPath: file.displayPath,
- title: doc.title || file.displayPath.split('/').pop() || file.displayPath,
- body,
- context,
- skipped: false,
- });
- }
- closeDb();
- // Output based on format
- if (format === "json") {
- const output = results.map(r => ({
- file: r.displayPath,
- title: r.title,
- ...(r.context && { context: r.context }),
- ...(r.skipped ? { skipped: true, reason: r.skipReason } : { body: r.body }),
- }));
- console.log(JSON.stringify(output, null, 2));
- } else if (format === "csv") {
- const escapeField = (val: string | null | undefined): string => {
- if (val === null || val === undefined) return "";
- const str = String(val);
- if (str.includes(",") || str.includes('"') || str.includes("\n")) {
- return `"${str.replace(/"/g, '""')}"`;
- }
- return str;
- };
- console.log("file,title,context,skipped,body");
- for (const r of results) {
- console.log([r.displayPath, r.title, r.context, r.skipped ? "true" : "false", r.skipped ? r.skipReason : r.body].map(escapeField).join(","));
- }
- } else if (format === "files") {
- for (const r of results) {
- const ctx = r.context ? `,"${r.context.replace(/"/g, '""')}"` : "";
- const status = r.skipped ? "[SKIPPED]" : "";
- console.log(`${r.displayPath}${ctx}${status ? `,${status}` : ""}`);
- }
- } else if (format === "md") {
- for (const r of results) {
- console.log(`## ${r.displayPath}\n`);
- if (r.title && r.title !== r.displayPath) console.log(`**Title:** ${r.title}\n`);
- if (r.context) console.log(`**Context:** ${r.context}\n`);
- if (r.skipped) {
- console.log(`> ${r.skipReason}\n`);
- } else {
- console.log("```");
- console.log(r.body);
- console.log("```\n");
- }
- }
- } else if (format === "xml") {
- console.log('<?xml version="1.0" encoding="UTF-8"?>');
- console.log("<documents>");
- for (const r of results) {
- console.log(" <document>");
- console.log(` <file>${escapeXml(r.displayPath)}</file>`);
- console.log(` <title>${escapeXml(r.title)}</title>`);
- if (r.context) console.log(` <context>${escapeXml(r.context)}</context>`);
- if (r.skipped) {
- console.log(` <skipped>true</skipped>`);
- console.log(` <reason>${escapeXml(r.skipReason || "")}</reason>`);
- } else {
- console.log(` <body>${escapeXml(r.body)}</body>`);
- }
- console.log(" </document>");
- }
- console.log("</documents>");
- } else {
- // CLI format (default)
- for (const r of results) {
- console.log(`\n${'='.repeat(60)}`);
- console.log(`File: ${r.displayPath}`);
- console.log(`${'='.repeat(60)}\n`);
- if (r.skipped) {
- console.log(`[SKIPPED: ${r.skipReason}]`);
- continue;
- }
- if (r.context) {
- console.log(`Folder Context: ${r.context}\n---\n`);
- }
- console.log(r.body);
- }
- }
- }
- // List files in virtual file tree
- function listFiles(pathArg?: string): void {
- const db = getDb();
- if (!pathArg) {
- // No argument - list all collections
- const yamlCollections = yamlListCollections();
- if (yamlCollections.length === 0) {
- console.log("No collections found. Run 'qmd add .' to index files.");
- closeDb();
- return;
- }
- // Get file counts from database for each collection
- const collections = yamlCollections.map(coll => {
- const stats = db.prepare(`
- SELECT COUNT(*) as file_count
- FROM documents d
- WHERE d.collection = ? AND d.active = 1
- `).get(coll.name) as { file_count: number } | null;
- return {
- name: coll.name,
- file_count: stats?.file_count || 0
- };
- });
- console.log(`${c.bold}Collections:${c.reset}\n`);
- for (const coll of collections) {
- console.log(` ${c.dim}qmd://${c.reset}${c.cyan}${coll.name}/${c.reset} ${c.dim}(${coll.file_count} files)${c.reset}`);
- }
- closeDb();
- return;
- }
- // Parse the path argument
- let collectionName: string;
- let pathPrefix: string | null = null;
- if (pathArg.startsWith('qmd://')) {
- // Virtual path format: qmd://collection/path
- const parsed = parseVirtualPath(pathArg);
- if (!parsed) {
- console.error(`Invalid virtual path: ${pathArg}`);
- closeDb();
- process.exit(1);
- }
- collectionName = parsed.collectionName;
- pathPrefix = parsed.path;
- } else {
- // Just collection name or collection/path
- const parts = pathArg.split('/');
- collectionName = parts[0] || '';
- if (parts.length > 1) {
- pathPrefix = parts.slice(1).join('/');
- }
- }
- // Get the collection
- const coll = getCollectionFromYaml(collectionName);
- if (!coll) {
- console.error(`Collection not found: ${collectionName}`);
- console.error(`Run 'qmd ls' to see available collections.`);
- closeDb();
- process.exit(1);
- }
- // List files in the collection with size and modification time
- let query: string;
- let params: any[];
- if (pathPrefix) {
- // List files under a specific path
- query = `
- SELECT d.path, d.title, d.modified_at, LENGTH(ct.doc) as size
- FROM documents d
- JOIN content ct ON d.hash = ct.hash
- WHERE d.collection = ? AND d.path LIKE ? AND d.active = 1
- ORDER BY d.path
- `;
- params = [coll.name, `${pathPrefix}%`];
- } else {
- // List all files in the collection
- query = `
- SELECT d.path, d.title, d.modified_at, LENGTH(ct.doc) as size
- FROM documents d
- JOIN content ct ON d.hash = ct.hash
- WHERE d.collection = ? AND d.active = 1
- ORDER BY d.path
- `;
- params = [coll.name];
- }
- const files = db.prepare(query).all(...params) as { path: string; title: string; modified_at: string; size: number }[];
- if (files.length === 0) {
- if (pathPrefix) {
- console.log(`No files found under qmd://${collectionName}/${pathPrefix}`);
- } else {
- console.log(`No files found in collection: ${collectionName}`);
- }
- closeDb();
- return;
- }
- // Calculate max widths for alignment
- const maxSize = Math.max(...files.map(f => formatBytes(f.size).length));
- // Output in ls -l style
- for (const file of files) {
- const sizeStr = formatBytes(file.size).padStart(maxSize);
- const date = new Date(file.modified_at);
- const timeStr = formatLsTime(date);
- // Dim the qmd:// prefix, highlight the filename
- console.log(`${sizeStr} ${timeStr} ${c.dim}qmd://${collectionName}/${c.reset}${c.cyan}${file.path}${c.reset}`);
- }
- closeDb();
- }
- // Format date/time like ls -l
- function formatLsTime(date: Date): string {
- const now = new Date();
- const sixMonthsAgo = new Date(now.getTime() - 6 * 30 * 24 * 60 * 60 * 1000);
- const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
- const month = months[date.getMonth()];
- const day = date.getDate().toString().padStart(2, ' ');
- // If file is older than 6 months, show year instead of time
- if (date < sixMonthsAgo) {
- const year = date.getFullYear();
- return `${month} ${day} ${year}`;
- } else {
- const hours = date.getHours().toString().padStart(2, '0');
- const minutes = date.getMinutes().toString().padStart(2, '0');
- return `${month} ${day} ${hours}:${minutes}`;
- }
- }
- // Collection management commands
- function collectionList(): void {
- const db = getDb();
- const collections = listCollections(db);
- if (collections.length === 0) {
- console.log("No collections found. Run 'qmd add .' to create one.");
- closeDb();
- return;
- }
- console.log(`${c.bold}Collections (${collections.length}):${c.reset}\n`);
- for (const coll of collections) {
- const updatedAt = coll.last_modified ? new Date(coll.last_modified) : new Date();
- const timeAgo = formatTimeAgo(updatedAt);
- console.log(`${c.cyan}${coll.name}${c.reset} ${c.dim}(qmd://${coll.name}/)${c.reset}`);
- console.log(` ${c.dim}Pattern:${c.reset} ${coll.glob_pattern}`);
- console.log(` ${c.dim}Files:${c.reset} ${coll.active_count}`);
- console.log(` ${c.dim}Updated:${c.reset} ${timeAgo}`);
- console.log();
- }
- closeDb();
- }
- async function collectionAdd(pwd: string, globPattern: string, name?: string): Promise<void> {
- // If name not provided, generate from pwd basename
- let collName = name;
- if (!collName) {
- const parts = pwd.split('/').filter(Boolean);
- collName = parts[parts.length - 1] || 'root';
- }
- // Check if collection with this name already exists in YAML
- const existing = getCollectionFromYaml(collName);
- if (existing) {
- console.error(`${c.yellow}Collection '${collName}' already exists.${c.reset}`);
- console.error(`Use a different name with --name <name>`);
- process.exit(1);
- }
- // Check if a collection with this pwd+glob already exists in YAML
- const allCollections = yamlListCollections();
- const existingPwdGlob = allCollections.find(c => c.path === pwd && c.pattern === globPattern);
- if (existingPwdGlob) {
- console.error(`${c.yellow}A collection already exists for this path and pattern:${c.reset}`);
- console.error(` Name: ${existingPwdGlob.name} (qmd://${existingPwdGlob.name}/)`);
- console.error(` Pattern: ${globPattern}`);
- console.error(`\nUse 'qmd update' to re-index it, or remove it first with 'qmd collection remove ${existingPwdGlob.name}'`);
- process.exit(1);
- }
- // Add to YAML config
- const { addCollection } = await import("./collections.js");
- addCollection(collName, pwd, globPattern);
- // Create the collection and index files
- console.log(`Creating collection '${collName}'...`);
- await indexFiles(pwd, globPattern, collName);
- console.log(`${c.green}✓${c.reset} Collection '${collName}' created successfully`);
- }
- function collectionRemove(name: string): void {
- // Check if collection exists in YAML
- const coll = getCollectionFromYaml(name);
- if (!coll) {
- console.error(`${c.yellow}Collection not found: ${name}${c.reset}`);
- console.error(`Run 'qmd collection list' to see available collections.`);
- process.exit(1);
- }
- const db = getDb();
- const result = removeCollection(db, name);
- closeDb();
- console.log(`${c.green}✓${c.reset} Removed collection '${name}'`);
- console.log(` Deleted ${result.deletedDocs} documents`);
- if (result.cleanedHashes > 0) {
- console.log(` Cleaned up ${result.cleanedHashes} orphaned content hashes`);
- }
- }
- function collectionRename(oldName: string, newName: string): void {
- // Check if old collection exists in YAML
- const coll = getCollectionFromYaml(oldName);
- if (!coll) {
- console.error(`${c.yellow}Collection not found: ${oldName}${c.reset}`);
- console.error(`Run 'qmd collection list' to see available collections.`);
- process.exit(1);
- }
- // Check if new name already exists in YAML
- const existing = getCollectionFromYaml(newName);
- if (existing) {
- console.error(`${c.yellow}Collection name already exists: ${newName}${c.reset}`);
- console.error(`Choose a different name or remove the existing collection first.`);
- process.exit(1);
- }
- const db = getDb();
- renameCollection(db, oldName, newName);
- closeDb();
- console.log(`${c.green}✓${c.reset} Renamed collection '${oldName}' to '${newName}'`);
- console.log(` Virtual paths updated: ${c.cyan}qmd://${oldName}/${c.reset} → ${c.cyan}qmd://${newName}/${c.reset}`);
- }
- async function indexFiles(pwd?: string, globPattern: string = DEFAULT_GLOB, collectionName?: string, suppressEmbedNotice: boolean = false): Promise<void> {
- const db = getDb();
- const resolvedPwd = pwd || getPwd();
- const now = new Date().toISOString();
- const excludeDirs = ["node_modules", ".git", ".cache", "vendor", "dist", "build"];
- // Clear Ollama cache on index
- clearCache(db);
- // Collection name must be provided (from YAML)
- if (!collectionName) {
- throw new Error("Collection name is required. Collections must be defined in ~/.config/qmd/index.yml");
- }
- console.log(`Collection: ${resolvedPwd} (${globPattern})`);
- progress.indeterminate();
- const glob = new Glob(globPattern);
- const files: string[] = [];
- for await (const file of glob.scan({ cwd: resolvedPwd, onlyFiles: true, followSymlinks: false })) {
- // Skip node_modules, hidden folders (.*), and other common excludes
- const parts = file.split("/");
- const shouldSkip = parts.some(part =>
- part === "node_modules" ||
- part.startsWith(".") ||
- excludeDirs.includes(part)
- );
- if (!shouldSkip) {
- files.push(file);
- }
- }
- const total = files.length;
- if (total === 0) {
- progress.clear();
- console.log("No files found matching pattern.");
- closeDb();
- return;
- }
- let indexed = 0, updated = 0, unchanged = 0, processed = 0;
- const seenPaths = new Set<string>();
- const startTime = Date.now();
- for (const relativeFile of files) {
- const filepath = getRealPath(resolve(resolvedPwd, relativeFile));
- const path = handelize(relativeFile); // Normalize path for token-friendliness
- seenPaths.add(path);
- const content = readFileSync(filepath, "utf-8");
- // Skip empty files - nothing useful to index
- if (!content.trim()) {
- processed++;
- continue;
- }
- const hash = await hashContent(content);
- const title = extractTitle(content, relativeFile);
- // Check if document exists in this collection with this path
- const existing = findActiveDocument(db, collectionName, path);
- if (existing) {
- if (existing.hash === hash) {
- // Hash unchanged, but check if title needs updating
- if (existing.title !== title) {
- updateDocumentTitle(db, existing.id, title, now);
- updated++;
- } else {
- unchanged++;
- }
- } else {
- // Content changed - insert new content hash and update document
- insertContent(db, hash, content, now);
- const stat = statSync(filepath);
- updateDocument(db, existing.id, title, hash,
- stat ? new Date(stat.mtime).toISOString() : now);
- updated++;
- }
- } else {
- // New document - insert content and document
- indexed++;
- insertContent(db, hash, content, now);
- const stat = statSync(filepath);
- insertDocument(db, collectionName, path, title, hash,
- stat ? new Date(stat.birthtime).toISOString() : now,
- stat ? new Date(stat.mtime).toISOString() : now);
- }
- processed++;
- progress.set((processed / total) * 100);
- const elapsed = (Date.now() - startTime) / 1000;
- const rate = processed / elapsed;
- const remaining = (total - processed) / rate;
- const eta = processed > 2 ? ` ETA: ${formatETA(remaining)}` : "";
- process.stderr.write(`\rIndexing: ${processed}/${total}${eta} `);
- }
- // Deactivate documents in this collection that no longer exist
- const allActive = getActiveDocumentPaths(db, collectionName);
- let removed = 0;
- for (const path of allActive) {
- if (!seenPaths.has(path)) {
- deactivateDocument(db, collectionName, path);
- removed++;
- }
- }
- // Clean up orphaned content hashes (content not referenced by any document)
- const orphanedContent = cleanupOrphanedContent(db);
- // Check if vector index needs updating
- const needsEmbedding = getHashesNeedingEmbedding(db);
- progress.clear();
- console.log(`\nIndexed: ${indexed} new, ${updated} updated, ${unchanged} unchanged, ${removed} removed`);
- if (orphanedContent > 0) {
- console.log(`Cleaned up ${orphanedContent} orphaned content hash(es)`);
- }
- if (needsEmbedding > 0 && !suppressEmbedNotice) {
- console.log(`\nRun 'qmd embed' to update embeddings (${needsEmbedding} unique hashes need vectors)`);
- }
- closeDb();
- }
- function renderProgressBar(percent: number, width: number = 30): string {
- const filled = Math.round((percent / 100) * width);
- const empty = width - filled;
- const bar = "█".repeat(filled) + "░".repeat(empty);
- return bar;
- }
- async function vectorIndex(model: string = DEFAULT_EMBED_MODEL, force: boolean = false): Promise<void> {
- const db = getDb();
- const now = new Date().toISOString();
- // If force, clear all vectors
- if (force) {
- console.log(`${c.yellow}Force re-indexing: clearing all vectors...${c.reset}`);
- clearAllEmbeddings(db);
- }
- // Find unique hashes that need embedding (from active documents)
- const hashesToEmbed = getHashesForEmbedding(db);
- if (hashesToEmbed.length === 0) {
- console.log(`${c.green}✓ All content hashes already have embeddings.${c.reset}`);
- closeDb();
- return;
- }
- // Prepare documents with chunks
- type ChunkItem = { hash: string; title: string; text: string; seq: number; pos: number; tokens: number; bytes: number; displayName: string };
- const allChunks: ChunkItem[] = [];
- let multiChunkDocs = 0;
- // Chunk all documents using actual token counts
- process.stderr.write(`Chunking ${hashesToEmbed.length} documents by token count...\n`);
- for (const item of hashesToEmbed) {
- const encoder = new TextEncoder();
- const bodyBytes = encoder.encode(item.body).length;
- if (bodyBytes === 0) continue; // Skip empty
- const title = extractTitle(item.body, item.path);
- const displayName = item.path;
- const chunks = await chunkDocumentByTokens(item.body); // Uses actual tokenizer
- if (chunks.length > 1) multiChunkDocs++;
- for (let seq = 0; seq < chunks.length; seq++) {
- allChunks.push({
- hash: item.hash,
- title,
- text: chunks[seq]!.text, // Chunk is guaranteed to exist by seq loop
- seq,
- pos: chunks[seq]!.pos,
- tokens: chunks[seq]!.tokens,
- bytes: encoder.encode(chunks[seq]!.text).length,
- displayName,
- });
- }
- }
- if (allChunks.length === 0) {
- console.log(`${c.green}✓ No non-empty documents to embed.${c.reset}`);
- closeDb();
- return;
- }
- const totalBytes = allChunks.reduce((sum, chk) => sum + chk.bytes, 0);
- const totalChunks = allChunks.length;
- const totalDocs = hashesToEmbed.length;
- console.log(`${c.bold}Embedding ${totalDocs} documents${c.reset} ${c.dim}(${totalChunks} chunks, ${formatBytes(totalBytes)})${c.reset}`);
- if (multiChunkDocs > 0) {
- console.log(`${c.dim}${multiChunkDocs} documents split into multiple chunks${c.reset}`);
- }
- console.log(`${c.dim}Model: ${model}${c.reset}\n`);
- // Hide cursor during embedding
- cursor.hide();
- // Wrap all LLM embedding operations in a session for lifecycle management
- // Use 30 minute timeout for large collections
- await withLLMSession(async (session) => {
- // Get embedding dimensions from first chunk
- progress.indeterminate();
- const firstChunk = allChunks[0];
- if (!firstChunk) {
- throw new Error("No chunks available to embed");
- }
- const firstText = formatDocForEmbedding(firstChunk.text, firstChunk.title);
- const firstResult = await session.embed(firstText);
- if (!firstResult) {
- throw new Error("Failed to get embedding dimensions from first chunk");
- }
- ensureVecTable(db, firstResult.embedding.length);
- let chunksEmbedded = 0, errors = 0, bytesProcessed = 0;
- const startTime = Date.now();
- // Batch embedding for better throughput
- // Process in batches of 32 to balance memory usage and efficiency
- const BATCH_SIZE = 32;
- for (let batchStart = 0; batchStart < allChunks.length; batchStart += BATCH_SIZE) {
- const batchEnd = Math.min(batchStart + BATCH_SIZE, allChunks.length);
- const batch = allChunks.slice(batchStart, batchEnd);
- // Format texts for embedding
- const texts = batch.map(chunk => formatDocForEmbedding(chunk.text, chunk.title));
- try {
- // Batch embed all texts at once
- const embeddings = await session.embedBatch(texts);
- // Insert each embedding
- for (let i = 0; i < batch.length; i++) {
- const chunk = batch[i]!;
- const embedding = embeddings[i];
- if (embedding) {
- insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(embedding.embedding), model, now);
- chunksEmbedded++;
- } else {
- errors++;
- console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}${c.reset}`);
- }
- bytesProcessed += chunk.bytes;
- }
- } catch (err) {
- // If batch fails, try individual embeddings as fallback
- for (const chunk of batch) {
- try {
- const text = formatDocForEmbedding(chunk.text, chunk.title);
- const result = await session.embed(text);
- if (result) {
- insertEmbedding(db, chunk.hash, chunk.seq, chunk.pos, new Float32Array(result.embedding), model, now);
- chunksEmbedded++;
- } else {
- errors++;
- }
- } catch (innerErr) {
- errors++;
- console.error(`\n${c.yellow}⚠ Error embedding "${chunk.displayName}" chunk ${chunk.seq}: ${innerErr}${c.reset}`);
- }
- bytesProcessed += chunk.bytes;
- }
- }
- const percent = (bytesProcessed / totalBytes) * 100;
- progress.set(percent);
- const elapsed = (Date.now() - startTime) / 1000;
- const bytesPerSec = bytesProcessed / elapsed;
- const remainingBytes = totalBytes - bytesProcessed;
- const etaSec = remainingBytes / bytesPerSec;
- const bar = renderProgressBar(percent);
- const percentStr = percent.toFixed(0).padStart(3);
- const throughput = `${formatBytes(bytesPerSec)}/s`;
- const eta = elapsed > 2 ? formatETA(etaSec) : "...";
- const errStr = errors > 0 ? ` ${c.yellow}${errors} err${c.reset}` : "";
- process.stderr.write(`\r${c.cyan}${bar}${c.reset} ${c.bold}${percentStr}%${c.reset} ${c.dim}${chunksEmbedded}/${totalChunks}${c.reset}${errStr} ${c.dim}${throughput} ETA ${eta}${c.reset} `);
- }
- progress.clear();
- cursor.show();
- const totalTimeSec = (Date.now() - startTime) / 1000;
- const avgThroughput = formatBytes(totalBytes / totalTimeSec);
- console.log(`\r${c.green}${renderProgressBar(100)}${c.reset} ${c.bold}100%${c.reset} `);
- console.log(`\n${c.green}✓ Done!${c.reset} Embedded ${c.bold}${chunksEmbedded}${c.reset} chunks from ${c.bold}${totalDocs}${c.reset} documents in ${c.bold}${formatETA(totalTimeSec)}${c.reset} ${c.dim}(${avgThroughput}/s)${c.reset}`);
- if (errors > 0) {
- console.log(`${c.yellow}⚠ ${errors} chunks failed${c.reset}`);
- }
- }, { maxDuration: 30 * 60 * 1000, name: 'embed-command' });
- closeDb();
- }
- // Sanitize a term for FTS5: remove punctuation except apostrophes
- function sanitizeFTS5Term(term: string): string {
- // Remove all non-alphanumeric except apostrophes (for contractions like "don't")
- return term.replace(/[^\w']/g, '').trim();
- }
- // Build FTS5 query: phrase-aware with fallback to individual terms
- function buildFTS5Query(query: string): string {
- // Sanitize the full query for phrase matching
- const sanitizedQuery = query.replace(/[^\w\s']/g, '').trim();
- const terms = query
- .split(/\s+/)
- .map(sanitizeFTS5Term)
- .filter(term => term.length >= 2); // Skip single chars and empty
- if (terms.length === 0) return "";
- if (terms.length === 1) return `"${terms[0]!.replace(/"/g, '""')}"`;
- // Strategy: exact phrase OR proximity match OR individual terms
- // Exact phrase matches rank highest, then close proximity, then any term
- const phrase = `"${sanitizedQuery.replace(/"/g, '""')}"`;
- const quotedTerms = terms.map(t => `"${t.replace(/"/g, '""')}"`);
- // FTS5 NEAR syntax: NEAR(term1 term2, distance)
- const nearPhrase = `NEAR(${quotedTerms.join(' ')}, 10)`;
- const orTerms = quotedTerms.join(' OR ');
- // Exact phrase > proximity > any term
- return `(${phrase}) OR (${nearPhrase}) OR (${orTerms})`;
- }
- // Normalize BM25 score to 0-1 range using sigmoid
- function normalizeBM25(score: number): number {
- // BM25 scores are negative in SQLite (lower = better)
- // Typical range: -15 (excellent) to -2 (weak match)
- // Map to 0-1 where higher is better
- const absScore = Math.abs(score);
- // Sigmoid-ish normalization: maps ~2-15 range to ~0.1-0.95
- return 1 / (1 + Math.exp(-(absScore - 5) / 3));
- }
- type OutputOptions = {
- format: OutputFormat;
- full: boolean;
- limit: number;
- minScore: number;
- all?: boolean;
- collection?: string; // Filter by collection name (pwd suffix match)
- lineNumbers?: boolean; // Add line numbers to output
- context?: string; // Optional context for query expansion
- };
- // Highlight query terms in text (skip short words < 3 chars)
- function highlightTerms(text: string, query: string): string {
- if (!useColor) return text;
- const terms = query.toLowerCase().split(/\s+/).filter(t => t.length >= 3);
- let result = text;
- for (const term of terms) {
- const regex = new RegExp(`(${term.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')})`, 'gi');
- result = result.replace(regex, `${c.yellow}${c.bold}$1${c.reset}`);
- }
- return result;
- }
- // Format score with color based on value
- function formatScore(score: number): string {
- const pct = (score * 100).toFixed(0).padStart(3);
- if (!useColor) return `${pct}%`;
- if (score >= 0.7) return `${c.green}${pct}%${c.reset}`;
- if (score >= 0.4) return `${c.yellow}${pct}%${c.reset}`;
- return `${c.dim}${pct}%${c.reset}`;
- }
- // Shorten directory path for display - relative to $HOME (used for context paths, not documents)
- function shortPath(dirpath: string): string {
- const home = homedir();
- if (dirpath.startsWith(home)) {
- return '~' + dirpath.slice(home.length);
- }
- return dirpath;
- }
- function outputResults(results: { file: string; displayPath: string; title: string; body: string; score: number; context?: string | null; chunkPos?: number; hash?: string; docid?: string }[], query: string, opts: OutputOptions): void {
- const filtered = results.filter(r => r.score >= opts.minScore).slice(0, opts.limit);
- if (filtered.length === 0) {
- console.log("No results found above minimum score threshold.");
- return;
- }
- // Helper to create qmd:// URI from displayPath
- const toQmdPath = (displayPath: string) => `qmd://${displayPath}`;
- if (opts.format === "json") {
- // JSON output for LLM consumption
- const output = filtered.map(row => {
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : undefined);
- let body = opts.full ? row.body : undefined;
- let snippet = !opts.full ? extractSnippet(row.body, query, 300, row.chunkPos).snippet : undefined;
- if (opts.lineNumbers) {
- if (body) body = addLineNumbers(body);
- if (snippet) snippet = addLineNumbers(snippet);
- }
- return {
- ...(docid && { docid: `#${docid}` }),
- score: Math.round(row.score * 100) / 100,
- file: toQmdPath(row.displayPath),
- title: row.title,
- ...(row.context && { context: row.context }),
- ...(body && { body }),
- ...(snippet && { snippet }),
- };
- });
- console.log(JSON.stringify(output, null, 2));
- } else if (opts.format === "files") {
- // Simple docid,score,filepath,context output
- for (const row of filtered) {
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : "");
- const ctx = row.context ? `,"${row.context.replace(/"/g, '""')}"` : "";
- console.log(`#${docid},${row.score.toFixed(2)},${toQmdPath(row.displayPath)}${ctx}`);
- }
- } else if (opts.format === "cli") {
- for (let i = 0; i < filtered.length; i++) {
- const row = filtered[i];
- if (!row) continue;
- const { line, snippet } = extractSnippet(row.body, query, 500, row.chunkPos);
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : undefined);
- // Line 1: filepath with docid
- const path = toQmdPath(row.displayPath);
- // Only show :line if we actually found a term match in the snippet body (exclude header line).
- const snippetBody = snippet.split("\n").slice(1).join("\n").toLowerCase();
- const hasMatch = query.toLowerCase().split(/\s+/).some(t => t.length > 0 && snippetBody.includes(t));
- const lineInfo = hasMatch ? `:${line}` : "";
- const docidStr = docid ? ` ${c.dim}#${docid}${c.reset}` : "";
- console.log(`${c.cyan}${path}${c.dim}${lineInfo}${c.reset}${docidStr}`);
- // Line 2: Title (if available)
- if (row.title) {
- console.log(`${c.bold}Title: ${row.title}${c.reset}`);
- }
- // Line 3: Context (if available)
- if (row.context) {
- console.log(`${c.dim}Context: ${row.context}${c.reset}`);
- }
- // Line 4: Score
- const score = formatScore(row.score);
- console.log(`Score: ${c.bold}${score}${c.reset}`);
- console.log();
- // Snippet with highlighting (diff-style header included)
- let displaySnippet = opts.lineNumbers ? addLineNumbers(snippet, line) : snippet;
- const highlighted = highlightTerms(displaySnippet, query);
- console.log(highlighted);
- // Double empty line between results
- if (i < filtered.length - 1) console.log('\n');
- }
- } else if (opts.format === "md") {
- for (let i = 0; i < filtered.length; i++) {
- const row = filtered[i];
- if (!row) continue;
- const heading = row.title || row.displayPath;
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : undefined);
- let content = opts.full ? row.body : extractSnippet(row.body, query, 500, row.chunkPos).snippet;
- if (opts.lineNumbers) {
- content = addLineNumbers(content);
- }
- const docidLine = docid ? `**docid:** \`#${docid}\`\n` : "";
- const contextLine = row.context ? `**context:** ${row.context}\n` : "";
- console.log(`---\n# ${heading}\n${docidLine}${contextLine}\n${content}\n`);
- }
- } else if (opts.format === "xml") {
- for (const row of filtered) {
- const titleAttr = row.title ? ` title="${row.title.replace(/"/g, '"')}"` : "";
- const contextAttr = row.context ? ` context="${row.context.replace(/"/g, '"')}"` : "";
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : "");
- let content = opts.full ? row.body : extractSnippet(row.body, query, 500, row.chunkPos).snippet;
- if (opts.lineNumbers) {
- content = addLineNumbers(content);
- }
- console.log(`<file docid="#${docid}" name="${toQmdPath(row.displayPath)}"${titleAttr}${contextAttr}>\n${content}\n</file>\n`);
- }
- } else {
- // CSV format
- console.log("docid,score,file,title,context,line,snippet");
- for (const row of filtered) {
- const { line, snippet } = extractSnippet(row.body, query, 500, row.chunkPos);
- let content = opts.full ? row.body : snippet;
- if (opts.lineNumbers) {
- content = addLineNumbers(content, line);
- }
- const docid = row.docid || (row.hash ? row.hash.slice(0, 6) : "");
- const snippetText = content || "";
- console.log(`#${docid},${row.score.toFixed(4)},${escapeCSV(toQmdPath(row.displayPath))},${escapeCSV(row.title || "")},${escapeCSV(row.context || "")},${line},${escapeCSV(snippetText)}`);
- }
- }
- }
- function search(query: string, opts: OutputOptions): void {
- const db = getDb();
- // Validate collection filter if specified
- let collectionName: string | undefined;
- if (opts.collection) {
- const coll = getCollectionFromYaml(opts.collection);
- if (!coll) {
- console.error(`Collection not found: ${opts.collection}`);
- closeDb();
- process.exit(1);
- }
- collectionName = opts.collection;
- }
- // Use large limit for --all, otherwise fetch more than needed and let outputResults filter
- const fetchLimit = opts.all ? 100000 : Math.max(50, opts.limit * 2);
- // searchFTS accepts collection name as number parameter for legacy reasons (will be fixed in store.ts)
- const results = searchFTS(db, query, fetchLimit, collectionName as any);
- // Add context to results
- const resultsWithContext = results.map(r => ({
- file: r.filepath,
- displayPath: r.displayPath,
- title: r.title,
- body: r.body || "",
- score: r.score,
- context: getContextForFile(db, r.filepath),
- hash: r.hash,
- docid: r.docid,
- }));
- closeDb();
- if (resultsWithContext.length === 0) {
- console.log("No results found.");
- return;
- }
- outputResults(resultsWithContext, query, opts);
- }
- // Log query expansion as a tree to stderr (CLI progress feedback)
- function logExpansionTree(originalQuery: string, expanded: ExpandedQuery[]): void {
- const lines: string[] = [];
- lines.push(`${c.dim}├─ ${originalQuery}${c.reset}`);
- for (const q of expanded) {
- let preview = q.text.replace(/\n/g, ' ');
- if (preview.length > 72) preview = preview.substring(0, 69) + '...';
- lines.push(`${c.dim}├─ ${q.type}: ${preview}${c.reset}`);
- }
- if (lines.length > 0) {
- lines[lines.length - 1] = lines[lines.length - 1]!.replace('├─', '└─');
- }
- for (const line of lines) process.stderr.write(line + '\n');
- }
- async function vectorSearch(query: string, opts: OutputOptions, _model: string = DEFAULT_EMBED_MODEL): Promise<void> {
- const store = getStore();
- if (opts.collection) {
- const coll = getCollectionFromYaml(opts.collection);
- if (!coll) {
- console.error(`Collection not found: ${opts.collection}`);
- closeDb();
- process.exit(1);
- }
- }
- checkIndexHealth(store.db);
- await withLLMSession(async () => {
- const results = await vectorSearchQuery(store, query, {
- collection: opts.collection,
- limit: opts.all ? 500 : (opts.limit || 10),
- minScore: opts.minScore || 0.3,
- hooks: {
- onExpand: (original, expanded) => {
- logExpansionTree(original, expanded);
- process.stderr.write(`${c.dim}Searching ${expanded.length + 1} vector queries...${c.reset}\n`);
- },
- },
- });
- closeDb();
- if (results.length === 0) {
- console.log("No results found.");
- return;
- }
- outputResults(results.map(r => ({
- file: r.file,
- displayPath: r.displayPath,
- title: r.title,
- body: r.body,
- score: r.score,
- context: r.context,
- docid: r.docid,
- })), query, { ...opts, limit: results.length });
- }, { maxDuration: 10 * 60 * 1000, name: 'vectorSearch' });
- }
- async function querySearch(query: string, opts: OutputOptions, _embedModel: string = DEFAULT_EMBED_MODEL, _rerankModel: string = DEFAULT_RERANK_MODEL): Promise<void> {
- const store = getStore();
- if (opts.collection) {
- const coll = getCollectionFromYaml(opts.collection);
- if (!coll) {
- console.error(`Collection not found: ${opts.collection}`);
- closeDb();
- process.exit(1);
- }
- }
- checkIndexHealth(store.db);
- await withLLMSession(async () => {
- const results = await hybridQuery(store, query, {
- collection: opts.collection,
- limit: opts.all ? 500 : (opts.limit || 10),
- minScore: opts.minScore || 0,
- hooks: {
- onStrongSignal: (score) => {
- process.stderr.write(`${c.dim}Strong BM25 signal (${score.toFixed(2)}) — skipping expansion${c.reset}\n`);
- },
- onExpand: (original, expanded) => {
- logExpansionTree(original, expanded);
- process.stderr.write(`${c.dim}Searching ${expanded.length + 1} queries...${c.reset}\n`);
- },
- onRerankStart: (chunkCount) => {
- process.stderr.write(`${c.dim}Reranking ${chunkCount} chunks...${c.reset}\n`);
- progress.indeterminate();
- },
- onRerankDone: () => {
- progress.clear();
- },
- },
- });
- closeDb();
- if (results.length === 0) {
- console.log("No results found.");
- return;
- }
- // Map to CLI output format — use bestChunk for snippet display
- outputResults(results.map(r => ({
- file: r.file,
- displayPath: r.displayPath,
- title: r.title,
- body: r.bestChunk,
- chunkPos: r.bestChunkPos,
- score: r.score,
- context: r.context,
- docid: r.docid,
- })), query, { ...opts, limit: results.length });
- }, { maxDuration: 10 * 60 * 1000, name: 'querySearch' });
- }
- // Parse CLI arguments using util.parseArgs
- function parseCLI() {
- const { values, positionals } = parseArgs({
- args: Bun.argv.slice(2), // Skip bun and script path
- options: {
- // Global options
- index: {
- type: "string",
- },
- context: {
- type: "string",
- },
- "no-lex": {
- type: "boolean",
- },
- help: { type: "boolean", short: "h" },
- version: { type: "boolean", short: "v" },
- // Search options
- n: { type: "string" },
- "min-score": { type: "string" },
- all: { type: "boolean" },
- full: { type: "boolean" },
- csv: { type: "boolean" },
- md: { type: "boolean" },
- xml: { type: "boolean" },
- files: { type: "boolean" },
- json: { type: "boolean" },
- collection: { type: "string", short: "c" }, // Filter by collection
- // Collection options
- name: { type: "string" }, // collection name
- mask: { type: "string" }, // glob pattern
- // Embed options
- force: { type: "boolean", short: "f" },
- // Update options
- pull: { type: "boolean" }, // git pull before update
- refresh: { type: "boolean" },
- // Get options
- l: { type: "string" }, // max lines
- from: { type: "string" }, // start line
- "max-bytes": { type: "string" }, // max bytes for multi-get
- "line-numbers": { type: "boolean" }, // add line numbers to output
- // MCP HTTP transport options
- http: { type: "boolean" },
- daemon: { type: "boolean" },
- port: { type: "string" },
- },
- allowPositionals: true,
- strict: false, // Allow unknown options to pass through
- });
- // Select index name (default: "index")
- const indexName = values.index as string | undefined;
- if (indexName) {
- setIndexName(indexName);
- setConfigIndexName(indexName);
- }
- // Determine output format
- let format: OutputFormat = "cli";
- if (values.csv) format = "csv";
- else if (values.md) format = "md";
- else if (values.xml) format = "xml";
- else if (values.files) format = "files";
- else if (values.json) format = "json";
- // Default limit: 20 for --files/--json, 5 otherwise
- // --all means return all results (use very large limit)
- const defaultLimit = (format === "files" || format === "json") ? 20 : 5;
- const isAll = !!values.all;
- const opts: OutputOptions = {
- format,
- full: !!values.full,
- limit: isAll ? 100000 : (values.n ? parseInt(String(values.n), 10) || defaultLimit : defaultLimit),
- minScore: values["min-score"] ? parseFloat(String(values["min-score"])) || 0 : 0,
- all: isAll,
- collection: values.collection as string | undefined,
- lineNumbers: !!values["line-numbers"],
- };
- return {
- command: positionals[0] || "",
- args: positionals.slice(1),
- query: positionals.slice(1).join(" "),
- opts,
- values,
- };
- }
- function showHelp(): void {
- console.log("Usage:");
- console.log(" qmd collection add [path] --name <name> --mask <pattern> - Create/index collection");
- console.log(" qmd collection list - List all collections with details");
- console.log(" qmd collection remove <name> - Remove a collection by name");
- console.log(" qmd collection rename <old> <new> - Rename a collection");
- console.log(" qmd ls [collection[/path]] - List collections or files in a collection");
- console.log(" qmd context add [path] \"text\" - Add context for path (defaults to current dir)");
- console.log(" qmd context list - List all contexts");
- console.log(" qmd context rm <path> - Remove context");
- console.log(" qmd get <file>[:line] [-l N] [--from N] - Get document (optionally from line, max N lines)");
- console.log(" qmd multi-get <pattern> [-l N] [--max-bytes N] - Get multiple docs by glob or comma-separated list");
- console.log(" qmd status - Show index status and collections");
- console.log(" qmd update [--pull] - Re-index all collections (--pull: git pull first)");
- console.log(" qmd embed [-f] - Create vector embeddings (800 tokens/chunk, 15% overlap)");
- console.log(" qmd cleanup - Remove cache and orphaned data, vacuum DB");
- console.log(" qmd query <query> - Search with query expansion + reranking (recommended)");
- console.log(" qmd search <query> - Full-text keyword search (BM25, no LLM)");
- console.log(" qmd vsearch <query> - Vector similarity search (no reranking)");
- console.log(" qmd mcp - Start MCP server (stdio transport)");
- console.log(" qmd mcp --http [--port N] - Start MCP server (HTTP transport, default port 8181)");
- console.log(" qmd mcp --http --daemon - Start MCP server as background daemon");
- console.log(" qmd mcp stop - Stop background MCP daemon");
- console.log("");
- console.log("Global options:");
- console.log(" --index <name> - Use custom index name (default: index)");
- console.log("");
- console.log("Search options:");
- console.log(" -n <num> - Number of results (default: 5, or 20 for --files)");
- console.log(" --all - Return all matches (use with --min-score to filter)");
- console.log(" --min-score <num> - Minimum similarity score");
- console.log(" --full - Output full document instead of snippet");
- console.log(" --line-numbers - Add line numbers to output");
- console.log(" --files - Output docid,score,filepath,context (default: 20 results)");
- console.log(" --json - JSON output with snippets (default: 20 results)");
- console.log(" --csv - CSV output with snippets");
- console.log(" --md - Markdown output");
- console.log(" --xml - XML output");
- console.log(" -c, --collection <name> - Filter results to a specific collection");
- console.log("");
- console.log("Multi-get options:");
- console.log(" -l <num> - Maximum lines per file");
- console.log(" --max-bytes <num> - Skip files larger than N bytes (default: 10240)");
- console.log(" --json/--csv/--md/--xml/--files - Output format (same as search)");
- console.log("");
- console.log("Models (auto-downloaded from HuggingFace):");
- console.log(" Embedding: embeddinggemma-300M-Q8_0");
- console.log(" Reranking: qwen3-reranker-0.6b-q8_0");
- console.log(" Generation: Qwen3-0.6B-Q8_0");
- console.log("");
- console.log(`Index: ${getDbPath()}`);
- }
- async function showVersion(): Promise<void> {
- const scriptDir = import.meta.dir;
- const pkgPath = resolve(scriptDir, "..", "package.json");
- const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
- let commit = "";
- try {
- const result = await $`git -C ${scriptDir} rev-parse --short HEAD`.quiet();
- commit = result.text().trim();
- } catch {
- // Not a git repo or git not available
- }
- const versionStr = commit ? `${pkg.version} (${commit})` : pkg.version;
- console.log(`qmd ${versionStr}`);
- }
- // Main CLI - only run if this is the main module
- if (import.meta.main) {
- const cli = parseCLI();
- if (cli.values.version) {
- await showVersion();
- process.exit(0);
- }
- if (!cli.command || cli.values.help) {
- showHelp();
- process.exit(cli.values.help ? 0 : 1);
- }
- switch (cli.command) {
- case "context": {
- const subcommand = cli.args[0];
- if (!subcommand) {
- console.error("Usage: qmd context <add|list|check|rm>");
- console.error("");
- console.error("Commands:");
- console.error(" qmd context add [path] \"text\" - Add context (defaults to current dir)");
- console.error(" qmd context add / \"text\" - Add global context to all collections");
- console.error(" qmd context list - List all contexts");
- console.error(" qmd context check - Check for missing contexts");
- console.error(" qmd context rm <path> - Remove context");
- process.exit(1);
- }
- switch (subcommand) {
- case "add": {
- if (cli.args.length < 2) {
- console.error("Usage: qmd context add [path] \"text\"");
- console.error("");
- console.error("Examples:");
- console.error(" qmd context add \"Context for current directory\"");
- console.error(" qmd context add . \"Context for current directory\"");
- console.error(" qmd context add /subfolder \"Context for subfolder\"");
- console.error(" qmd context add / \"Global context for all collections\"");
- console.error("");
- console.error(" Using virtual paths:");
- console.error(" qmd context add qmd://journals/ \"Context for entire journals collection\"");
- console.error(" qmd context add qmd://journals/2024 \"Context for 2024 journals\"");
- process.exit(1);
- }
- let pathArg: string | undefined;
- let contextText: string;
- // Check if first arg looks like a path or if it's the context text
- const firstArg = cli.args[1] || '';
- const secondArg = cli.args[2];
- if (secondArg) {
- // Two args: path + context
- pathArg = firstArg;
- contextText = cli.args.slice(2).join(" ");
- } else {
- // One arg: context only (use current directory)
- pathArg = undefined;
- contextText = firstArg;
- }
- await contextAdd(pathArg, contextText);
- break;
- }
- case "list": {
- contextList();
- break;
- }
- case "check": {
- contextCheck();
- break;
- }
- case "rm":
- case "remove": {
- if (cli.args.length < 2 || !cli.args[1]) {
- console.error("Usage: qmd context rm <path>");
- console.error("Examples:");
- console.error(" qmd context rm /");
- console.error(" qmd context rm qmd://journals/2024");
- process.exit(1);
- }
- contextRemove(cli.args[1]);
- break;
- }
- default:
- console.error(`Unknown subcommand: ${subcommand}`);
- console.error("Available: add, list, check, rm");
- process.exit(1);
- }
- break;
- }
- case "get": {
- if (!cli.args[0]) {
- console.error("Usage: qmd get <filepath>[:line] [--from <line>] [-l <lines>] [--line-numbers]");
- process.exit(1);
- }
- const fromLine = cli.values.from ? parseInt(cli.values.from as string, 10) : undefined;
- const maxLines = cli.values.l ? parseInt(cli.values.l as string, 10) : undefined;
- getDocument(cli.args[0], fromLine, maxLines, cli.opts.lineNumbers);
- break;
- }
- case "multi-get": {
- if (!cli.args[0]) {
- console.error("Usage: qmd multi-get <pattern> [-l <lines>] [--max-bytes <bytes>] [--json|--csv|--md|--xml|--files]");
- console.error(" pattern: glob (e.g., 'journals/2025-05*.md') or comma-separated list");
- process.exit(1);
- }
- const maxLinesMulti = cli.values.l ? parseInt(cli.values.l as string, 10) : undefined;
- const maxBytes = cli.values["max-bytes"] ? parseInt(cli.values["max-bytes"] as string, 10) : DEFAULT_MULTI_GET_MAX_BYTES;
- multiGet(cli.args[0], maxLinesMulti, maxBytes, cli.opts.format);
- break;
- }
- case "ls": {
- listFiles(cli.args[0]);
- break;
- }
- case "collection": {
- const subcommand = cli.args[0];
- switch (subcommand) {
- case "list": {
- collectionList();
- break;
- }
- case "add": {
- const pwd = cli.args[1] || getPwd();
- const resolvedPwd = pwd === '.' ? getPwd() : getRealPath(resolve(pwd));
- const globPattern = cli.values.mask as string || DEFAULT_GLOB;
- const name = cli.values.name as string | undefined;
- await collectionAdd(resolvedPwd, globPattern, name);
- break;
- }
- case "remove":
- case "rm": {
- if (!cli.args[1]) {
- console.error("Usage: qmd collection remove <name>");
- console.error(" Use 'qmd collection list' to see available collections");
- process.exit(1);
- }
- collectionRemove(cli.args[1]);
- break;
- }
- case "rename":
- case "mv": {
- if (!cli.args[1] || !cli.args[2]) {
- console.error("Usage: qmd collection rename <old-name> <new-name>");
- console.error(" Use 'qmd collection list' to see available collections");
- process.exit(1);
- }
- collectionRename(cli.args[1], cli.args[2]);
- break;
- }
- default:
- console.error(`Unknown subcommand: ${subcommand}`);
- console.error("Available: list, add, remove, rename");
- process.exit(1);
- }
- break;
- }
- case "status":
- showStatus();
- break;
- case "update":
- await updateCollections();
- break;
- case "embed":
- await vectorIndex(DEFAULT_EMBED_MODEL, !!cli.values.force);
- break;
- case "pull": {
- const refresh = cli.values.refresh === undefined ? false : Boolean(cli.values.refresh);
- const models = [
- DEFAULT_EMBED_MODEL_URI,
- DEFAULT_GENERATE_MODEL_URI,
- DEFAULT_RERANK_MODEL_URI,
- ];
- console.log(`${c.bold}Pulling models${c.reset}`);
- const results = await pullModels(models, {
- refresh,
- cacheDir: DEFAULT_MODEL_CACHE_DIR,
- });
- for (const result of results) {
- const size = formatBytes(result.sizeBytes);
- const note = result.refreshed ? "refreshed" : "cached/checked";
- console.log(`- ${result.model} -> ${result.path} (${size}, ${note})`);
- }
- break;
- }
- case "search":
- if (!cli.query) {
- console.error("Usage: qmd search [options] <query>");
- process.exit(1);
- }
- search(cli.query, cli.opts);
- break;
- case "vsearch":
- case "vector-search": // undocumented alias
- if (!cli.query) {
- console.error("Usage: qmd vsearch [options] <query>");
- process.exit(1);
- }
- // Default min-score for vector search is 0.3
- if (!cli.values["min-score"]) {
- cli.opts.minScore = 0.3;
- }
- await vectorSearch(cli.query, cli.opts);
- break;
- case "query":
- case "deep-search": // undocumented alias
- if (!cli.query) {
- console.error("Usage: qmd query [options] <query>");
- process.exit(1);
- }
- await querySearch(cli.query, cli.opts);
- break;
- case "mcp": {
- const sub = cli.args[0]; // stop | status | undefined
- // Cache dir for PID/log files — same dir as the index
- const cacheDir = Bun.env.XDG_CACHE_HOME
- ? resolve(Bun.env.XDG_CACHE_HOME, "qmd")
- : resolve(homedir(), ".cache", "qmd");
- const pidPath = resolve(cacheDir, "mcp.pid");
- // Subcommands take priority over flags
- if (sub === "stop") {
- if (!existsSync(pidPath)) {
- console.log("Not running (no PID file).");
- process.exit(0);
- }
- const pid = parseInt(readFileSync(pidPath, "utf-8").trim());
- try {
- process.kill(pid, 0); // alive?
- process.kill(pid, "SIGTERM");
- unlinkSync(pidPath);
- console.log(`Stopped QMD MCP server (PID ${pid}).`);
- } catch {
- unlinkSync(pidPath);
- console.log("Cleaned up stale PID file (server was not running).");
- }
- process.exit(0);
- }
- if (cli.values.http) {
- const port = Number(cli.values.port) || 8181;
- if (cli.values.daemon) {
- // Guard: check if already running
- if (existsSync(pidPath)) {
- const existingPid = parseInt(readFileSync(pidPath, "utf-8").trim());
- try {
- process.kill(existingPid, 0); // alive?
- console.error(`Already running (PID ${existingPid}). Run 'qmd mcp stop' first.`);
- process.exit(1);
- } catch {
- // Stale PID file — continue
- }
- }
- mkdirSync(cacheDir, { recursive: true });
- const logPath = resolve(cacheDir, "mcp.log");
- const logFd = openSync(logPath, "w"); // truncate — fresh log per daemon run
- const child = Bun.spawn([process.execPath, import.meta.path, "mcp", "--http", "--port", String(port)], {
- stdout: logFd,
- stderr: logFd,
- stdin: "ignore",
- });
- child.unref();
- closeSync(logFd); // parent's copy; child inherited the fd
- writeFileSync(pidPath, String(child.pid));
- console.log(`Started on http://localhost:${port}/mcp (PID ${child.pid})`);
- console.log(`Logs: ${logPath}`);
- process.exit(0);
- }
- // Foreground HTTP mode — remove top-level cursor handlers so the
- // async cleanup handlers in startMcpHttpServer actually run.
- process.removeAllListeners("SIGTERM");
- process.removeAllListeners("SIGINT");
- const { startMcpHttpServer } = await import("./mcp.js");
- try {
- await startMcpHttpServer(port);
- } catch (e: any) {
- if (e?.code === "EADDRINUSE") {
- console.error(`Port ${port} already in use. Try a different port with --port.`);
- process.exit(1);
- }
- throw e;
- }
- } else {
- // Default: stdio transport
- const { startMcpServer } = await import("./mcp.js");
- await startMcpServer();
- }
- break;
- }
- case "cleanup": {
- const db = getDb();
- // 1. Clear llm_cache
- const cacheCount = deleteLLMCache(db);
- console.log(`${c.green}✓${c.reset} Cleared ${cacheCount} cached API responses`);
- // 2. Remove orphaned vectors
- const orphanedVecs = cleanupOrphanedVectors(db);
- if (orphanedVecs > 0) {
- console.log(`${c.green}✓${c.reset} Removed ${orphanedVecs} orphaned embedding chunks`);
- } else {
- console.log(`${c.dim}No orphaned embeddings to remove${c.reset}`);
- }
- // 3. Remove inactive documents
- const inactiveDocs = deleteInactiveDocuments(db);
- if (inactiveDocs > 0) {
- console.log(`${c.green}✓${c.reset} Removed ${inactiveDocs} inactive document records`);
- }
- // 4. Vacuum to reclaim space
- vacuumDatabase(db);
- console.log(`${c.green}✓${c.reset} Database vacuumed`);
- closeDb();
- break;
- }
- default:
- console.error(`Unknown command: ${cli.command}`);
- console.error("Run 'qmd --help' for usage.");
- process.exit(1);
- }
- if (cli.command !== "mcp") {
- await disposeDefaultLlamaCpp();
- process.exit(0);
- }
- } // end if (import.meta.main)
|