import {
listAgentIds,
resolveAgentWorkspaceDir,
resolveDefaultAgentId,
} from "../../agents/agent-scope.js" ;
import { canExecRequestNode } from "../../agents/exec-defaults.js" ;
import {
installSkillFromClawHub,
searchSkillsFromClawHub,
updateSkillsFromClawHub,
} from "../../agents/skills-clawhub.js" ;
import { installSkill } from "../../agents/skills-install.js" ;
import { buildWorkspaceSkillStatus } from "../../agents/skills-status.js" ;
import { loadWorkspaceSkillEntries, type SkillEntry } from "../../agents/skills.js" ;
import { listAgentWorkspaceDirs } from "../../agents/workspace-dirs.js" ;
import { loadConfig, writeConfigFile } from "../../config/config.js" ;
import type { OpenClawConfig } from "../../config/types.openclaw.js" ;
import { fetchClawHubSkillDetail } from "../../infra/clawhub.js" ;
import { formatErrorMessage } from "../../infra/errors.js" ;
import { getRemoteSkillEligibility } from "../../infra/skills-remote.js" ;
import { normalizeAgentId } from "../../routing/session-key.js" ;
import { normalizeOptionalString } from "../../shared/string-coerce.js" ;
import { normalizeSecretInput } from "../../utils/normalize-secret-input.js" ;
import {
ErrorCodes,
errorShape,
formatValidationErrors,
validateSkillsBinsParams,
validateSkillsDetailParams,
validateSkillsInstallParams,
validateSkillsSearchParams,
validateSkillsStatusParams,
validateSkillsUpdateParams,
} from "../protocol/index.js" ;
import type { GatewayRequestHandlers } from "./types.js" ;
function collectSkillBins(entries: SkillEntry[]): string[] {
const bins = new Set<string>();
for (const entry of entries) {
const required = entry.metadata?.requires?.bins ?? [];
const anyBins = entry.metadata?.requires?.anyBins ?? [];
const install = entry.metadata?.install ?? [];
for (const bin of required) {
const trimmed = bin.trim();
if (trimmed) {
bins.add(trimmed);
}
}
for (const bin of anyBins) {
const trimmed = bin.trim();
if (trimmed) {
bins.add(trimmed);
}
}
for (const spec of install) {
const specBins = spec?.bins ?? [];
for (const bin of specBins) {
const trimmed = normalizeOptionalString(bin) ?? "" ;
if (trimmed) {
bins.add(trimmed);
}
}
}
}
return [...bins].toSorted();
}
export const skillsHandlers: GatewayRequestHandlers = {
"skills.status" : ({ params, respond }) => {
if (!validateSkillsStatusParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.status params: ${formatValidationErrors(validateSkillsStatusParams.errors)}`,
),
);
return ;
}
const cfg = loadConfig();
const agentIdRaw = normalizeOptionalString(params?.agentId) ?? "" ;
const agentId = agentIdRaw ? normalizeAgentId(agentIdRaw) : resolveDefaultAgentId(cfg);
if (agentIdRaw) {
const knownAgents = listAgentIds(cfg);
if (!knownAgents.includes(agentId)) {
respond(
false ,
undefined,
errorShape(ErrorCodes.INVALID_REQUEST, `unknown agent id "${agentIdRaw}" `),
);
return ;
}
}
const workspaceDir = resolveAgentWorkspaceDir(cfg, agentId);
const report = buildWorkspaceSkillStatus(workspaceDir, {
config: cfg,
eligibility: {
remote: getRemoteSkillEligibility({
advertiseExecNode: canExecRequestNode({
cfg,
agentId,
}),
}),
},
});
respond(true , report, undefined);
},
"skills.bins" : ({ params, respond }) => {
if (!validateSkillsBinsParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.bins params: ${formatValidationErrors(validateSkillsBinsParams.errors)}`,
),
);
return ;
}
const cfg = loadConfig();
const workspaceDirs = listAgentWorkspaceDirs(cfg);
const bins = new Set<string>();
for (const workspaceDir of workspaceDirs) {
const entries = loadWorkspaceSkillEntries(workspaceDir, { config: cfg });
for (const bin of collectSkillBins(entries)) {
bins.add(bin);
}
}
respond(true , { bins: [...bins].toSorted() }, undefined);
},
"skills.search" : async ({ params, respond }) => {
if (!validateSkillsSearchParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.search params: ${formatValidationErrors(validateSkillsSearchParams.errors)}`,
),
);
return ;
}
try {
const results = await searchSkillsFromClawHub({
query: (params as { query?: string }).query,
limit: (params as { limit?: number }).limit,
});
respond(true , { results }, undefined);
} catch (err) {
respond(false , undefined, errorShape(ErrorCodes.UNAVAILABLE, formatErrorMessage(err)));
}
},
"skills.detail" : async ({ params, respond }) => {
if (!validateSkillsDetailParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.detail params: ${formatValidationErrors(validateSkillsDetailParams.errors)}`,
),
);
return ;
}
try {
const detail = await fetchClawHubSkillDetail({
slug: (params as { slug: string }).slug,
});
respond(true , detail, undefined);
} catch (err) {
respond(false , undefined, errorShape(ErrorCodes.UNAVAILABLE, formatErrorMessage(err)));
}
},
"skills.install" : async ({ params, respond }) => {
if (!validateSkillsInstallParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.install params: ${formatValidationErrors(validateSkillsInstallParams.errors)}`,
),
);
return ;
}
const cfg = loadConfig();
const workspaceDirRaw = resolveAgentWorkspaceDir(cfg, resolveDefaultAgentId(cfg));
if (params && typeof params === "object" && "source" in params && params.source === "clawhub" ) {
const p = params as {
source: "clawhub" ;
slug: string;
version?: string;
force?: boolean ;
};
const result = await installSkillFromClawHub({
workspaceDir: workspaceDirRaw,
slug: p.slug,
version: p.version,
force: Boolean (p.force),
});
respond(
result.ok,
result.ok
? {
ok: true ,
message: `Installed ${result.slug}@${result.version}`,
stdout: "" ,
stderr: "" ,
code: 0 ,
slug: result.slug,
version: result.version,
targetDir: result.targetDir,
}
: result,
result.ok ? undefined : errorShape(ErrorCodes.UNAVAILABLE, result.error),
);
return ;
}
const p = params as {
name: string;
installId: string;
dangerouslyForceUnsafeInstall?: boolean ;
timeoutMs?: number;
};
const result = await installSkill({
workspaceDir: workspaceDirRaw,
skillName: p.name,
installId: p.installId,
dangerouslyForceUnsafeInstall: p.dangerouslyForceUnsafeInstall,
timeoutMs: p.timeoutMs,
config: cfg,
});
respond(
result.ok,
result,
result.ok ? undefined : errorShape(ErrorCodes.UNAVAILABLE, result.message),
);
},
"skills.update" : async ({ params, respond }) => {
if (!validateSkillsUpdateParams(params)) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
`invalid skills.update params: ${formatValidationErrors(validateSkillsUpdateParams.errors)}`,
),
);
return ;
}
if (params && typeof params === "object" && "source" in params && params.source === "clawhub" ) {
const p = params as {
source: "clawhub" ;
slug?: string;
all?: boolean ;
};
if (!p.slug && !p.all) {
respond(
false ,
undefined,
errorShape(ErrorCodes.INVALID_REQUEST, 'clawhub skills.update requires "slug" or "all"' ),
);
return ;
}
if (p.slug && p.all) {
respond(
false ,
undefined,
errorShape(
ErrorCodes.INVALID_REQUEST,
'clawhub skills.update accepts either "slug" or "all", not both' ,
),
);
return ;
}
const cfg = loadConfig();
const workspaceDir = resolveAgentWorkspaceDir(cfg, resolveDefaultAgentId(cfg));
const results = await updateSkillsFromClawHub({
workspaceDir,
slug: p.slug,
});
const errors = results.filter((result) => !result.ok);
respond(
errors.length === 0 ,
{
ok: errors.length === 0 ,
skillKey: p.slug ?? "*" ,
config: {
source: "clawhub" ,
results,
},
},
errors.length === 0
? undefined
: errorShape(ErrorCodes.UNAVAILABLE, errors.map((result) => result.error).join("; " )),
);
return ;
}
const p = params as {
skillKey: string;
enabled?: boolean ;
apiKey?: string;
env?: Record<string, string>;
};
const cfg = loadConfig();
const skills = cfg.skills ? { ...cfg.skills } : {};
const entries = skills.entries ? { ...skills.entries } : {};
const current = entries[p.skillKey] ? { ...entries[p.skillKey] } : {};
if (typeof p.enabled === "boolean" ) {
current.enabled = p.enabled;
}
if (typeof p.apiKey === "string" ) {
const trimmed = normalizeSecretInput(p.apiKey);
if (trimmed) {
current.apiKey = trimmed;
} else {
delete current.apiKey;
}
}
if (p.env && typeof p.env === "object" ) {
const nextEnv = current.env ? { ...current.env } : {};
for (const [key, value] of Object.entries(p.env)) {
const trimmedKey = key.trim();
if (!trimmedKey) {
continue ;
}
const trimmedVal = value.trim();
if (!trimmedVal) {
delete nextEnv[trimmedKey];
} else {
nextEnv[trimmedKey] = trimmedVal;
}
}
current.env = nextEnv;
}
entries[p.skillKey] = current;
skills.entries = entries;
const nextConfig: OpenClawConfig = {
...cfg,
skills,
};
await writeConfigFile(nextConfig);
respond(true , { ok: true , skillKey: p.skillKey, config: current }, undefined);
},
};
Messung V0.5 in Prozent C=98 H=97 G=97
¤ Dauer der Verarbeitung: 0.4 Sekunden
¤
*© Formatika GbR, Deutschland