mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 11:41:08 +00:00
14 lines
457 B
TypeScript
14 lines
457 B
TypeScript
import { readClaudeCliCredentialsCached } from "openclaw/plugin-sdk/provider-auth";
|
|
|
|
export function readClaudeCliCredentialsForSetup() {
|
|
return readClaudeCliCredentialsCached();
|
|
}
|
|
|
|
export function readClaudeCliCredentialsForSetupNonInteractive() {
|
|
return readClaudeCliCredentialsCached({ allowKeychainPrompt: false });
|
|
}
|
|
|
|
export function readClaudeCliCredentialsForRuntime() {
|
|
return readClaudeCliCredentialsCached({ allowKeychainPrompt: false });
|
|
}
|