Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
448 lines
14 KiB
TypeScript
448 lines
14 KiB
TypeScript
/**
|
|
* Amazon Bedrock Mantle discovery and bearer-token handling. It resolves
|
|
* explicit tokens, IAM-generated tokens, model catalogs, and implicit provider config.
|
|
*/
|
|
import { createSubsystemLogger } from "openclaw/plugin-sdk/core";
|
|
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
|
|
import {
|
|
isFutureDateTimestampMs,
|
|
resolveExpiresAtMsFromDurationMs,
|
|
} from "openclaw/plugin-sdk/number-runtime";
|
|
import type {
|
|
ModelDefinitionConfig,
|
|
ModelProviderConfig,
|
|
} from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
|
|
const log = createSubsystemLogger("bedrock-mantle-discovery");
|
|
|
|
const DEFAULT_COST = {
|
|
input: 0,
|
|
output: 0,
|
|
cacheRead: 0,
|
|
cacheWrite: 0,
|
|
};
|
|
|
|
const DEFAULT_CONTEXT_WINDOW = 32000;
|
|
const DEFAULT_MAX_TOKENS = 4096;
|
|
const DEFAULT_REFRESH_INTERVAL_SECONDS = 3600; // 1 hour
|
|
/** Config auth marker meaning Mantle should mint runtime bearer tokens from IAM. */
|
|
export const MANTLE_IAM_TOKEN_MARKER = "__amazon_bedrock_mantle_iam__";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Mantle region & endpoint helpers
|
|
// ---------------------------------------------------------------------------
|
|
|
|
const MANTLE_SUPPORTED_REGIONS = [
|
|
"us-east-1",
|
|
"us-east-2",
|
|
"us-west-2",
|
|
"ap-northeast-1",
|
|
"ap-south-1",
|
|
"ap-southeast-3",
|
|
"eu-central-1",
|
|
"eu-west-1",
|
|
"eu-west-2",
|
|
"eu-south-1",
|
|
"eu-north-1",
|
|
"sa-east-1",
|
|
] as const;
|
|
|
|
function mantleEndpoint(region: string): string {
|
|
return `https://bedrock-mantle.${region}.api.aws`;
|
|
}
|
|
|
|
function isSupportedRegion(region: string): boolean {
|
|
return (MANTLE_SUPPORTED_REGIONS as readonly string[]).includes(region);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Bearer token resolution
|
|
// ---------------------------------------------------------------------------
|
|
|
|
type MantleBearerTokenProvider = () => Promise<string>;
|
|
type MantleBearerTokenProviderFactory = (opts?: {
|
|
region?: string;
|
|
expiresInSeconds?: number;
|
|
}) => MantleBearerTokenProvider;
|
|
|
|
async function loadMantleBearerTokenProviderFactory(): Promise<MantleBearerTokenProviderFactory> {
|
|
const { getTokenProvider } = (await import("@aws/bedrock-token-generator")) as {
|
|
getTokenProvider: MantleBearerTokenProviderFactory;
|
|
};
|
|
return getTokenProvider;
|
|
}
|
|
|
|
/**
|
|
* Resolve a bearer token for Mantle authentication.
|
|
*
|
|
* Returns the value of AWS_BEARER_TOKEN_BEDROCK if set, undefined otherwise.
|
|
* When no explicit token is set, `resolveImplicitMantleProvider` will attempt
|
|
* to generate one from IAM credentials via `@aws/bedrock-token-generator`.
|
|
*/
|
|
export function resolveMantleBearerToken(env: NodeJS.ProcessEnv = process.env): string | undefined {
|
|
const explicitToken = env.AWS_BEARER_TOKEN_BEDROCK?.trim();
|
|
if (explicitToken) {
|
|
return explicitToken;
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
/** Token cache for IAM-derived bearer tokens, keyed by region. */
|
|
const iamTokenCache = new Map<string, { token: string; expiresAt: number }>();
|
|
const IAM_TOKEN_TTL_MS = 7200_000; // Matches the 2h token lifetime we request below.
|
|
|
|
function resolveMantleRegion(env: NodeJS.ProcessEnv): string {
|
|
return env.AWS_REGION ?? env.AWS_DEFAULT_REGION ?? "us-east-1";
|
|
}
|
|
|
|
function getCachedIamTokenEntry(
|
|
region: string,
|
|
now: number = Date.now(),
|
|
): { token: string; expiresAt: number } | undefined {
|
|
const cached = iamTokenCache.get(region);
|
|
if (cached && isFutureDateTimestampMs(cached.expiresAt, { nowMs: now })) {
|
|
return cached;
|
|
}
|
|
iamTokenCache.delete(region);
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Generate a bearer token from IAM credentials using `@aws/bedrock-token-generator`.
|
|
*
|
|
* Uses the AWS default credential chain (instance roles, SSO, access keys, EKS IRSA).
|
|
* Returns undefined if the package is not installed or credentials are unavailable.
|
|
*/
|
|
export async function generateBearerTokenFromIam(params: {
|
|
region: string;
|
|
now?: () => number;
|
|
tokenProviderFactory?: MantleBearerTokenProviderFactory;
|
|
}): Promise<string | undefined> {
|
|
const now = params.now?.() ?? Date.now();
|
|
const cached = getCachedIamTokenEntry(params.region, now);
|
|
|
|
if (cached) {
|
|
return cached.token;
|
|
}
|
|
|
|
try {
|
|
const getTokenProvider =
|
|
params.tokenProviderFactory ?? (await loadMantleBearerTokenProviderFactory());
|
|
const token = await getTokenProvider({
|
|
region: params.region,
|
|
expiresInSeconds: 7200, // 2 hours
|
|
})();
|
|
const expiresAt = resolveExpiresAtMsFromDurationMs(IAM_TOKEN_TTL_MS, { nowMs: now });
|
|
if (expiresAt !== undefined) {
|
|
iamTokenCache.set(params.region, { token, expiresAt });
|
|
}
|
|
return token;
|
|
} catch (error) {
|
|
log.debug?.("Mantle IAM token generation unavailable", {
|
|
region: params.region,
|
|
error: formatErrorMessage(error),
|
|
});
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read a cached IAM bearer token for the given region (sync, no generation).
|
|
*
|
|
* Returns the token if it exists and has not expired, undefined otherwise.
|
|
* Used by Mantle runtime auth and tests to inspect the current cache.
|
|
*/
|
|
export function getCachedIamToken(region: string): string | undefined {
|
|
return getCachedIamTokenEntry(region)?.token;
|
|
}
|
|
|
|
/** Resolve the actual runtime bearer token for Mantle, generating IAM tokens when needed. */
|
|
export async function resolveMantleRuntimeBearerToken(params: {
|
|
apiKey: string;
|
|
env?: NodeJS.ProcessEnv;
|
|
now?: () => number;
|
|
tokenProviderFactory?: MantleBearerTokenProviderFactory;
|
|
}): Promise<{ apiKey: string; expiresAt?: number } | undefined> {
|
|
if (params.apiKey !== MANTLE_IAM_TOKEN_MARKER) {
|
|
return { apiKey: params.apiKey };
|
|
}
|
|
const now = params.now?.() ?? Date.now();
|
|
const region = resolveMantleRegion(params.env ?? process.env);
|
|
const cached = getCachedIamTokenEntry(region, now);
|
|
if (cached) {
|
|
return {
|
|
apiKey: cached.token,
|
|
expiresAt: cached.expiresAt,
|
|
};
|
|
}
|
|
const token = await generateBearerTokenFromIam({
|
|
region,
|
|
now: params.now,
|
|
tokenProviderFactory: params.tokenProviderFactory,
|
|
});
|
|
if (!token) {
|
|
return undefined;
|
|
}
|
|
const refreshed = getCachedIamTokenEntry(region, now);
|
|
const expiresAt =
|
|
refreshed?.expiresAt ?? resolveExpiresAtMsFromDurationMs(IAM_TOKEN_TTL_MS, { nowMs: now });
|
|
return {
|
|
apiKey: refreshed?.token ?? token,
|
|
...(expiresAt === undefined ? {} : { expiresAt }),
|
|
};
|
|
}
|
|
/** Clear the IAM token cache for tests. */
|
|
export function resetIamTokenCacheForTest(): void {
|
|
iamTokenCache.clear();
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// OpenAI-format model list response
|
|
// ---------------------------------------------------------------------------
|
|
|
|
interface OpenAIModelEntry {
|
|
id: string;
|
|
object?: string;
|
|
owned_by?: string;
|
|
created?: number;
|
|
}
|
|
|
|
interface OpenAIModelsResponse {
|
|
data?: OpenAIModelEntry[];
|
|
object?: string;
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Reasoning heuristic
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/** Model ID substrings that indicate reasoning/thinking support. */
|
|
const REASONING_PATTERNS = [
|
|
"thinking",
|
|
"reasoner",
|
|
"reasoning",
|
|
"deepseek.r",
|
|
"gpt-oss-120b", // GPT-OSS 120B supports reasoning
|
|
"gpt-oss-safeguard-120b",
|
|
];
|
|
|
|
function inferReasoningSupport(modelId: string): boolean {
|
|
const lower = normalizeLowercaseStringOrEmpty(modelId);
|
|
return REASONING_PATTERNS.some((p) => lower.includes(p));
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Discovery cache
|
|
// ---------------------------------------------------------------------------
|
|
|
|
interface MantleCacheEntry {
|
|
models: ModelDefinitionConfig[];
|
|
fetchedAt: number;
|
|
}
|
|
|
|
type MantleDiscoveryConfig = {
|
|
enabled?: boolean;
|
|
};
|
|
|
|
const discoveryCache = new Map<string, MantleCacheEntry>();
|
|
|
|
/** Clear the Mantle discovery cache for tests. */
|
|
export function resetMantleDiscoveryCacheForTest(): void {
|
|
discoveryCache.clear();
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Model discovery
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Discover available models from the Mantle `/v1/models` endpoint.
|
|
*
|
|
* The response is in standard OpenAI format:
|
|
* ```json
|
|
* { "data": [{ "id": "anthropic.claude-sonnet-4-6", "object": "model", "owned_by": "anthropic" }] }
|
|
* ```
|
|
*
|
|
* Results are cached per region for `DEFAULT_REFRESH_INTERVAL_SECONDS`.
|
|
* Returns an empty array if the request fails (no permission, network error, etc.).
|
|
*/
|
|
/** Discover Mantle models for one region/config. */
|
|
export async function discoverMantleModels(params: {
|
|
region: string;
|
|
bearerToken: string;
|
|
fetchFn?: typeof fetch;
|
|
now?: () => number;
|
|
}): Promise<ModelDefinitionConfig[]> {
|
|
const { region, bearerToken, fetchFn = fetch, now = Date.now } = params;
|
|
|
|
// Check cache
|
|
const cacheKey = region;
|
|
const cached = discoveryCache.get(cacheKey);
|
|
if (cached && now() - cached.fetchedAt < DEFAULT_REFRESH_INTERVAL_SECONDS * 1000) {
|
|
return cached.models;
|
|
}
|
|
|
|
const endpoint = `${mantleEndpoint(region)}/v1/models`;
|
|
|
|
try {
|
|
const response = await fetchFn(endpoint, {
|
|
method: "GET",
|
|
headers: {
|
|
Authorization: `Bearer ${bearerToken}`,
|
|
Accept: "application/json",
|
|
},
|
|
});
|
|
|
|
if (!response.ok) {
|
|
log.debug?.("Mantle model discovery failed", {
|
|
status: response.status,
|
|
statusText: response.statusText,
|
|
});
|
|
return cached?.models ?? [];
|
|
}
|
|
|
|
const body = (await response.json()) as OpenAIModelsResponse;
|
|
const rawModels = body.data ?? [];
|
|
|
|
const models = rawModels
|
|
.filter((m) => m.id?.trim())
|
|
.map((m) => ({
|
|
id: m.id,
|
|
name: m.id, // Mantle doesn't return display names
|
|
reasoning: inferReasoningSupport(m.id),
|
|
input: ["text" as const],
|
|
cost: DEFAULT_COST,
|
|
contextWindow: DEFAULT_CONTEXT_WINDOW,
|
|
maxTokens: DEFAULT_MAX_TOKENS,
|
|
}))
|
|
.toSorted((a, b) => a.id.localeCompare(b.id));
|
|
|
|
discoveryCache.set(cacheKey, { models, fetchedAt: now() });
|
|
return models;
|
|
} catch (error) {
|
|
log.debug?.("Mantle model discovery error", {
|
|
error: formatErrorMessage(error),
|
|
});
|
|
return cached?.models ?? [];
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Implicit provider resolution
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Resolve an implicit Bedrock Mantle provider if authentication is available.
|
|
*
|
|
* Detection priority:
|
|
* 1. AWS_BEARER_TOKEN_BEDROCK env var → use directly
|
|
* 2. IAM credentials → generate bearer token via `@aws/bedrock-token-generator`
|
|
* - Region from AWS_REGION / AWS_DEFAULT_REGION / default us-east-1
|
|
* - Models discovered from `/v1/models`
|
|
*/
|
|
/** Resolve implicit Mantle provider config from env, IAM token support, and discovery. */
|
|
export async function resolveImplicitMantleProvider(params: {
|
|
env?: NodeJS.ProcessEnv;
|
|
pluginConfig?: { discovery?: MantleDiscoveryConfig };
|
|
fetchFn?: typeof fetch;
|
|
tokenProviderFactory?: MantleBearerTokenProviderFactory;
|
|
}): Promise<ModelProviderConfig | null> {
|
|
const env = params.env ?? process.env;
|
|
if (params.pluginConfig?.discovery?.enabled === false) {
|
|
return null;
|
|
}
|
|
const region = resolveMantleRegion(env);
|
|
const explicitBearerToken = resolveMantleBearerToken(env);
|
|
|
|
if (!isSupportedRegion(region)) {
|
|
log.debug?.("Mantle not available in region", { region });
|
|
return null;
|
|
}
|
|
|
|
// Try explicit token first, then generate from IAM credentials
|
|
const bearerToken =
|
|
explicitBearerToken ??
|
|
(await generateBearerTokenFromIam({
|
|
region,
|
|
tokenProviderFactory: params.tokenProviderFactory,
|
|
}));
|
|
|
|
if (!bearerToken) {
|
|
return null;
|
|
}
|
|
|
|
const models = await discoverMantleModels({
|
|
region,
|
|
bearerToken,
|
|
fetchFn: params.fetchFn,
|
|
});
|
|
|
|
if (models.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
log.debug?.("Mantle provider resolved", { region, modelCount: models.length });
|
|
|
|
// Append Claude models available on Mantle's Anthropic Messages endpoint.
|
|
// Opus 4.7 currently needs the provider-owned bearer-auth path here, but we
|
|
// keep reasoning off until the underlying Anthropic transport learns Opus 4.7
|
|
// adaptive thinking semantics.
|
|
const claudeModels: ModelDefinitionConfig[] = [
|
|
{
|
|
id: "anthropic.claude-opus-4-7",
|
|
name: "Claude Opus 4.7",
|
|
api: "anthropic-messages" as const,
|
|
reasoning: false,
|
|
input: ["text", "image"],
|
|
cost: {
|
|
input: 5,
|
|
output: 25,
|
|
cacheRead: 0.5,
|
|
cacheWrite: 6.25,
|
|
},
|
|
contextWindow: 1_000_000,
|
|
maxTokens: 128_000,
|
|
},
|
|
{
|
|
id: "anthropic.claude-mythos-preview",
|
|
name: "Claude Mythos Preview",
|
|
api: "anthropic-messages" as const,
|
|
reasoning: true,
|
|
params: { canonicalModelId: "claude-mythos-preview" },
|
|
input: ["text", "image"],
|
|
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
contextWindow: 1_000_000,
|
|
maxTokens: 128_000,
|
|
},
|
|
];
|
|
const allModels = [...models, ...claudeModels];
|
|
|
|
return {
|
|
baseUrl: `${mantleEndpoint(region)}/v1`,
|
|
api: "openai-completions",
|
|
auth: "api-key",
|
|
apiKey: explicitBearerToken ? "env:AWS_BEARER_TOKEN_BEDROCK" : MANTLE_IAM_TOKEN_MARKER,
|
|
models: allModels,
|
|
};
|
|
}
|
|
|
|
/** Merge an implicit Mantle provider catalog with explicit user config. */
|
|
export function mergeImplicitMantleProvider(params: {
|
|
existing: ModelProviderConfig | undefined;
|
|
implicit: ModelProviderConfig;
|
|
}): ModelProviderConfig {
|
|
const { existing, implicit } = params;
|
|
if (!existing) {
|
|
return implicit;
|
|
}
|
|
return {
|
|
...implicit,
|
|
...existing,
|
|
models:
|
|
Array.isArray(existing.models) && existing.models.length > 0
|
|
? existing.models
|
|
: implicit.models,
|
|
};
|
|
}
|