mirror of
http://192.168.0.88:13333/lywsvip/openclaw-zero-token.git
synced 2026-06-05 19:24:26 +08:00
Major upgrade from e26988a38 to upstream v2026.3.28 (f9b107928).
Key changes:
- Upstream src/, ui/, extensions/ (89 bundled extensions)
- Zero-token web providers preserved in src/zero-token/
- AskOnce plugin restored and registered as CLI command
- Added missing packages: @anthropic-ai/vertex-sdk, @modelcontextprotocol/sdk
- Fixed tsconfig rootDir, skipLibCheck for plugin-sdk DTS build
- Added askonce to bundled plugin metadata and package.json exports
- Fixed AskOnce CLI command registration (missing commands metadata)
- Restored AskOnce adapter imports (correct 5-level relative paths)
- Removed stale migration artifacts from root directory
43 lines
1.9 KiB
TypeScript
43 lines
1.9 KiB
TypeScript
// Private helper surface for the bundled tlon plugin.
|
|
// Keep this list additive and scoped to symbols used under extensions/tlon.
|
|
|
|
import { createOptionalChannelSetupSurface } from "./channel-setup.js";
|
|
|
|
export type { ReplyPayload } from "../auto-reply/types.js";
|
|
export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js";
|
|
export {
|
|
applyAccountNameToChannelSection,
|
|
patchScopedAccountConfig,
|
|
} from "../channels/plugins/setup-helpers.js";
|
|
export type {
|
|
ChannelAccountSnapshot,
|
|
ChannelOutboundAdapter,
|
|
ChannelSetupInput,
|
|
} from "../channels/plugins/types.js";
|
|
export type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
|
|
export { createChannelReplyPipeline } from "./channel-reply-pipeline.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
export { createDedupeCache } from "../infra/dedupe.js";
|
|
export { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";
|
|
export type { LookupFn, SsrFPolicy } from "../infra/net/ssrf.js";
|
|
export { isBlockedHostnameOrIp, SsrFBlockedError } from "../infra/net/ssrf.js";
|
|
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export type { PluginRuntime } from "../plugins/runtime/types.js";
|
|
export type { OpenClawPluginApi } from "../plugins/types.js";
|
|
export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.js";
|
|
export type { RuntimeEnv } from "../runtime.js";
|
|
export { buildComputedAccountStatusSnapshot } from "./status-helpers.js";
|
|
export { formatDocsLink } from "../terminal/links.js";
|
|
export type { WizardPrompter } from "../wizard/prompts.js";
|
|
export { createLoggerBackedRuntime } from "./runtime.js";
|
|
|
|
const tlonSetup = createOptionalChannelSetupSurface({
|
|
channel: "tlon",
|
|
label: "Tlon",
|
|
npmSpec: "@openclaw/tlon",
|
|
docsPath: "/channels/tlon",
|
|
});
|
|
|
|
export const tlonSetupAdapter = tlonSetup.setupAdapter;
|
|
export const tlonSetupWizard = tlonSetup.setupWizard;
|