cf45efa07b
- Bump workspace.package.version 0.8.33 -> 0.8.34 across all 14 crates - Bump npm wrapper version + deepseekBinaryVersion pin - Update docs/TOOL_SURFACE.md "Current surface" + docs/ARCHITECTURE.md current-surface references; historical "removed_in"/"v0.8.33 began moving" wording stays as fact - Update web/lib/facts.generated.ts version pin - Draft [0.8.34] CHANGELOG section covering the 135 commits since 0.8.33 (prefix-cache stability, bundled skills, Kitty/Ghostty notifications, theme picker, chunked tool dispatch, MCP session-id persistence, cost-calc reasoning tokens, and the in-flight internal cleanup) - Remove stale repo-root development artifacts: * TAKEOVER_PROMPT.md (v0.8.6 handoff, 3 minors stale) * PROMPT_ANALYSIS.md (v0.8.13-era prompt audit doc) * DEPENDENCY_GRAPH.md (claimed monolith layout, predates 14-crate split) docs/ARCHITECTURE.md already contains the live crate map. - Update CONTRIBUTING.md to reference docs/ARCHITECTURE.md for build ordering instead of the removed DEPENDENCY_GRAPH.md Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
97 lines
2.0 KiB
TypeScript
97 lines
2.0 KiB
TypeScript
// AUTO-GENERATED by web/scripts/derive-facts.mjs at prebuild.
|
|
// DO NOT EDIT — re-run `npm run prebuild` (or just `npm run build`) after changing the parent repo.
|
|
// To override at runtime, write the same shape to KV under key "facts:current".
|
|
|
|
export interface ProviderFact { id: string; label: string; env: string }
|
|
|
|
export interface RepoFacts {
|
|
generatedAt: string;
|
|
version: string | null;
|
|
crates: string[];
|
|
sandboxBackends: string[];
|
|
providers: ProviderFact[];
|
|
defaultModel: string | null;
|
|
nodeEngines: string | null;
|
|
toolCount: number | null;
|
|
license: string | null;
|
|
latestRelease: string | null;
|
|
}
|
|
|
|
export const FACTS: RepoFacts = {
|
|
"generatedAt": "2026-05-12T22:56:03.599Z",
|
|
"version": "0.8.34",
|
|
"crates": [
|
|
"agent",
|
|
"app-server",
|
|
"cli",
|
|
"config",
|
|
"core",
|
|
"execpolicy",
|
|
"hooks",
|
|
"mcp",
|
|
"protocol",
|
|
"secrets",
|
|
"state",
|
|
"tools",
|
|
"tui",
|
|
"tui-core"
|
|
],
|
|
"sandboxBackends": [
|
|
"landlock (Linux)",
|
|
"seatbelt (macOS)",
|
|
"AppContainer / restricted tokens (Windows)"
|
|
],
|
|
"providers": [
|
|
{
|
|
"id": "deepseek",
|
|
"label": "DeepSeek",
|
|
"env": "DEEPSEEK_API_KEY"
|
|
},
|
|
{
|
|
"id": "nvidia-nim",
|
|
"label": "NVIDIA NIM",
|
|
"env": "NVIDIA_API_KEY"
|
|
},
|
|
{
|
|
"id": "openai",
|
|
"label": "OpenAI",
|
|
"env": "OPENAI_API_KEY"
|
|
},
|
|
{
|
|
"id": "openrouter",
|
|
"label": "OpenRouter",
|
|
"env": "OPENROUTER_API_KEY"
|
|
},
|
|
{
|
|
"id": "novita",
|
|
"label": "Novita",
|
|
"env": "NOVITA_API_KEY"
|
|
},
|
|
{
|
|
"id": "fireworks",
|
|
"label": "Fireworks",
|
|
"env": "FIREWORKS_API_KEY"
|
|
},
|
|
{
|
|
"id": "sglang",
|
|
"label": "sglang",
|
|
"env": "SGLANG_API_KEY"
|
|
},
|
|
{
|
|
"id": "vllm",
|
|
"label": "vLLM",
|
|
"env": "VLLM_API_KEY"
|
|
},
|
|
{
|
|
"id": "ollama",
|
|
"label": "Ollama",
|
|
"env": "OLLAMA_API_KEY"
|
|
}
|
|
],
|
|
"defaultModel": "deepseek-v4-pro",
|
|
"nodeEngines": ">=18",
|
|
"toolCount": 68,
|
|
"license": "MIT",
|
|
"latestRelease": null
|
|
};
|