This commit captures uncommitted modifications that accumulated in the working tree across multiple in-progress workstreams. It is a snapshot to clear the deck before sf v3 work begins; individual workstreams should land separately on top of this. Notable additions: - trace-collector.ts, traces.ts, src/tests/trace-export.test.ts — trace export plumbing - biome.json — Biome linter configuration - .gitignore — exclude native/npm/**/*.node compiled binaries The bulk of the diff is across src/resources/extensions/sf/ (301 files) and src/resources/extensions/sf/tests/ (277 files), reflecting the ongoing sf extension work. Specific feature commits should follow this snapshot rather than being archaeology'd out of it. The 76MB native/npm/linux-x64-gnu/forge_engine.node compiled binary was left out of the commit — it's now gitignored and built locally. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
import type { AuthStorage } from "@singularity-forge/pi-coding-agent";
|
|
|
|
// ─── Env hydration ────────────────────────────────────────────────────────────
|
|
|
|
/**
|
|
* Hydrate process.env from stored auth.json credentials for optional tool keys.
|
|
* Runs on every launch so extensions see Brave/Context7/Jina keys stored via the
|
|
* wizard on prior launches.
|
|
*/
|
|
export function loadStoredEnvKeys(authStorage: AuthStorage): void {
|
|
const providers: Array<[string, string]> = [
|
|
["brave", "BRAVE_API_KEY"],
|
|
["brave_answers", "BRAVE_ANSWERS_KEY"],
|
|
["serper", "SERPER_API_KEY"],
|
|
["exa", "EXA_API_KEY"],
|
|
["context7", "CONTEXT7_API_KEY"],
|
|
["jina", "JINA_API_KEY"],
|
|
["tavily", "TAVILY_API_KEY"],
|
|
["slack_bot", "SLACK_BOT_TOKEN"],
|
|
["discord_bot", "DISCORD_BOT_TOKEN"],
|
|
["telegram_bot", "TELEGRAM_BOT_TOKEN"],
|
|
["groq", "GROQ_API_KEY"],
|
|
["ollama-cloud", "OLLAMA_API_KEY"],
|
|
["custom-openai", "CUSTOM_OPENAI_API_KEY"],
|
|
];
|
|
for (const [provider, envVar] of providers) {
|
|
if (!process.env[envVar]) {
|
|
// Use getCredentialsForProvider to skip empty-key entries at index 0
|
|
// (left by legacy removeProviderToken which used set() with empty key)
|
|
const creds = authStorage.getCredentialsForProvider(provider);
|
|
const cred = creds.find((c: any) => c.type === "api_key" && c.key);
|
|
if (cred?.type === "api_key" && (cred as any).key) {
|
|
process.env[envVar] = (cred as any).key as string;
|
|
}
|
|
}
|
|
}
|
|
}
|