feat: rename project wiki directory (#66)

* feat: rename project wiki directory

* test: fix wiki skill ordering expectations

* Show configured context sources in setup
This commit is contained in:
Andrey Avtomonov 2026-05-13 16:05:58 +02:00 committed by GitHub
parent 97da9919e9
commit d7147f9ca1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
116 changed files with 839 additions and 484 deletions

View file

@ -441,7 +441,7 @@ async function defaultVerifyContextReady(projectDir: string): Promise<KtxSetupCo
ignoredDirectoryNames: new Set(['_schema']),
},
);
const wikiReady = await hasFileWithExtension(join(projectDir, 'knowledge'), new Set(['.md']));
const wikiReady = await hasFileWithExtension(join(projectDir, 'wiki'), new Set(['.md']));
const contextSourceReady =
targets.contextSourceConnectionIds.length === 0 || semanticLayerContextReady || wikiReady;
const ready = primarySourceScans.ready && contextSourceReady;