refactor: trim private extension exports

This commit is contained in:
Peter Steinberger
2026-05-01 14:12:12 +01:00
parent 6c86972fbe
commit 25446d3c0e
3 changed files with 1 additions and 14 deletions

View File

@@ -1,12 +0,0 @@
export {
KILOCODE_BASE_URL,
KILOCODE_DEFAULT_CONTEXT_WINDOW,
KILOCODE_DEFAULT_COST,
KILOCODE_DEFAULT_MAX_TOKENS,
KILOCODE_DEFAULT_MODEL_ID,
KILOCODE_DEFAULT_MODEL_NAME,
KILOCODE_DEFAULT_MODEL_REF,
KILOCODE_MODEL_CATALOG,
} from "./provider-models.js";
export type { KilocodeModelCatalogEntry } from "./provider-models.js";

View File

@@ -141,6 +141,6 @@ export default definePluginEntry({
export { createProposalFromMessages } from "./src/signals.js";
export { SkillWorkshopStore } from "./src/store.js";
export { applyProposalToWorkspace, normalizeSkillName } from "./src/skills.js";
export { applyProposalToWorkspace } from "./src/skills.js";
export { countToolCalls, reviewTranscriptForProposal } from "./src/reviewer.js";
export { scanSkillContent } from "./src/scanner.js";

View File

@@ -2,6 +2,5 @@ export type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
export { definePluginEntry, type OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-entry";
export {
fetchWithSsrFGuard,
ssrfPolicyFromAllowPrivateNetwork,
ssrfPolicyFromDangerouslyAllowPrivateNetwork,
} from "openclaw/plugin-sdk/ssrf-runtime";