mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-28 11:05:31 +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>
47 lines
1.4 KiB
TOML
47 lines
1.4 KiB
TOML
root_dir = "."
|
|
fallback_extensions = ["md"]
|
|
remap = ["kilo-docs/docs kilo-docs/pages"]
|
|
|
|
format = "detailed"
|
|
max_redirects = 2
|
|
max_retries = 3
|
|
retry_wait_time = 5
|
|
exclude_path = ["node_modules"]
|
|
|
|
accept = [
|
|
"200",
|
|
"403",
|
|
"429",
|
|
"301",
|
|
"307",
|
|
]
|
|
|
|
exclude = [
|
|
'\.png$',
|
|
'https://synthetic.new/user-settings/api',
|
|
'https://platform.slack-edge.com/img/add_to_slack.png',
|
|
'https://console.groq.com/pages/models',
|
|
'^https?://([A-Za-z0-9-]+\.)?glama\.ai(/|$)',
|
|
'^https?://(api|console)\.mistral\.ai',
|
|
'^https?://(app|console)\.requesty\.ai',
|
|
'^https?://(cloud|console)\.google\.ai',
|
|
# API endpoint prefixes are valid but return 4xx to plain GET link checks.
|
|
'^https?://ai-gateway\.vercel\.sh/v1/?$',
|
|
'^https?://api\.voyageai\.com/v1/embeddings/?$',
|
|
'^https?://generativelanguage\.googleapis\.com/v1beta/openai/?$',
|
|
'https://opencode.ai/pages/config',
|
|
'^localhost:3000/',
|
|
'https://tbench.ai/',
|
|
# GitHub URLs cause persistent HTTP/2 protocol errors when checked from GitHub Actions runners
|
|
'^https?://github\.com/',
|
|
# Redirects to login page, blocked by bots
|
|
'^https?://vercel\.link/',
|
|
# API base URL, returns 404 when fetched directly
|
|
'^https?://api\.apertis\.ai/v1/?$',
|
|
# Redirects to authenticated Google Cloud console
|
|
'^https?://console\.cloud\.google\.com',
|
|
# Consistently times out in CI
|
|
'^https?://opncd\.ai',
|
|
'^https?://zod\.dev/v4/changelog',
|
|
]
|