mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-01 04:46:43 +08:00
f74d54c431
* feat(core): implement codebase indexing * feat(core): gate indexing behind experimental flag * fix: improvements to slow provider startups and indexing init blocking the world * test(cli): stabilize indexing startup tests * test(cli): avoid indexing startup hang * test(cli): avoid CI startup leaks * test(cli): annotate provider test change * fix(indexing): tighten dependency surface * refactor(cli): move indexing logic into kilocode paths * test(cli): skip flaky shell cancel prompt cases * fix(cli): tolerate slow Windows worktree cleanup * fix(vscode): authenticate indexing status fetch --------- Co-authored-by: Marius <marius@kilocode.ai>
14 lines
579 B
TypeScript
14 lines
579 B
TypeScript
export { KiloIndexingPlugin, default } from "./plugin.js"
|
|
export { IndexingConfig, toIndexingConfigInput } from "./config.js"
|
|
export { hasIndexingPlugin, isIndexingPlugin, normalizePluginName, INDEXING_PLUGIN_NAMES } from "./detect.js"
|
|
export {
|
|
INDEXING_STATUS_STATES,
|
|
IndexingStatus,
|
|
IndexingStatusState,
|
|
disabledIndexingStatus,
|
|
normalizeIndexingStatus,
|
|
} from "./status.js"
|
|
|
|
export type { IndexingConfig as IndexingConfigInfo } from "./config.js"
|
|
export type { IndexingStatus as IndexingStatusInfo, IndexingStatusState as IndexingStatusStateInfo } from "./status.js"
|