/** * Makefile / justfile / Taskfile interrogation — the real project commands. * * `detectCommands` in scanner.ts only reads root package.json scripts + language * defaults. Many repos (esp. polyglot ones) drive test/build/lint through a * Makefile — `make test`, `make check-all`. Read the target names and map the * obvious ones. Facts from files, not README prose. */ import type { ExtractedContext } from './types.js'; export declare function interrogateBuildFiles(dir: string): ExtractedContext;