mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
cf8b57e7d0
* feat: scan past sessions for skill proposals * feat(ui): add progressive skill history scans * fix(ui): keep skill history scans synchronized * refactor: split skill history scan ownership * style: fix mock helper formatting * style: format skill history scan * build: refresh skill history schema baselines * build: refresh plugin SDK baseline after rebase * perf(ui): keep startup request budget bounded * fix(skills): satisfy history scan integration gates * fix(ui): bound control ui startup chunks * build: refresh plugin SDK API baseline * build(ui): refresh self-learning translation memory * refactor(ui): split skill workshop state * fix(ci): refresh skill workshop gates * fix(ci): satisfy skill history lint * build: refresh plugin SDK baseline after main rebase
49 lines
1.9 KiB
TypeScript
49 lines
1.9 KiB
TypeScript
/**
|
|
* Public schema barrel for the gateway protocol package.
|
|
*
|
|
* Runtime validators import canonical TypeBox schemas from their owning modules;
|
|
* this barrel gives package consumers one stable path for schema-level imports.
|
|
*/
|
|
export * from "./schema/primitives.js";
|
|
export * from "./schema/agent.js";
|
|
export * from "./schema/agents-models-skills.js";
|
|
export * from "./schema/agents-workspace.js";
|
|
export * from "./schema/artifacts.js";
|
|
export * from "./schema/approvals.js";
|
|
export * from "./schema/audit-activity.js";
|
|
export * from "./schema/audit.js";
|
|
export * from "./schema/channels.js";
|
|
export * from "./schema/talk-marks.js";
|
|
export * from "./schema/commands.js";
|
|
export * from "./schema/config.js";
|
|
export * from "./schema/crestodian.js";
|
|
export * from "./schema/cron.js";
|
|
export * from "./schema/error-codes.js";
|
|
export * from "./schema/environments.js";
|
|
export * from "./schema/exec-approvals.js";
|
|
export * from "./schema/devices.js";
|
|
export * from "./schema/frames.js";
|
|
export * from "./schema/fs.js";
|
|
export * from "./schema/gateway-suspend.js";
|
|
export * from "./schema/logs-chat.js";
|
|
export * from "./schema/migrations.js";
|
|
export * from "./schema/nodes.js";
|
|
export * from "./schema/protocol-schemas.js";
|
|
export * from "./schema/push.js";
|
|
export * from "./schema/secrets.js";
|
|
export * from "./schema/session-placement.js";
|
|
export * from "./schema/sessions.js";
|
|
export * from "./schema/sessions-catalog.js";
|
|
export * from "./schema/skill-history.js";
|
|
export * from "./schema/snapshot.js";
|
|
export * from "./schema/system-info.js";
|
|
export * from "./schema/task-suggestions.js";
|
|
export * from "./schema/tasks.js";
|
|
export * from "./schema/terminal.js";
|
|
export * from "./schema/plugin-approvals.js";
|
|
export * from "./schema/plugins.js";
|
|
export * from "./schema/wizard.js";
|
|
export * from "./schema/worker-admission.js";
|
|
export * from "./schema/worker-inference.js";
|
|
export * from "./schema/worktrees.js";
|