scai
Version:
> **A local-first AI CLI for understanding, querying, and iterating on large codebases.** > **100% local • No token costs • No cloud • No prompt injection • Private by design**
10 lines (9 loc) • 426 B
JavaScript
import { getDbForRepo } from '../client.js';
import { markFileAsSkippedTemplate } from '../sqlTemplates.js';
export async function extractFromXML(filePath, _content, fileId) {
console.warn(`⛔️ XML extraction not implemented: ${filePath}`);
// Mark the file as skipped with the relevant status update
const db = getDbForRepo();
db.prepare(markFileAsSkippedTemplate).run({ id: fileId });
return false;
}