export declare const OPENCLAW_SKILL_PACK_SCHEMA_VERSION: "openclaw-skill-pack.v1"; export declare const ORGX_AGENT_DOMAINS: readonly ["engineering", "product", "design", "marketing", "sales", "operations", "orchestration"]; export type OrgxAgentDomainName = (typeof ORGX_AGENT_DOMAINS)[number]; export type ManifestConfigType = "openclaw_skills" | "openclawSkills" | "openclaw.skills" | "none"; export declare const OPENCLAW_SKILLS_MAP_JSON_SCHEMA: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly engineering: { readonly type: "string"; readonly minLength: 1; }; readonly product: { readonly type: "string"; readonly minLength: 1; }; readonly design: { readonly type: "string"; readonly minLength: 1; }; readonly marketing: { readonly type: "string"; readonly minLength: 1; }; readonly sales: { readonly type: "string"; readonly minLength: 1; }; readonly operations: { readonly type: "string"; readonly minLength: 1; }; readonly orchestration: { readonly type: "string"; readonly minLength: 1; }; }; }; export declare const OPENCLAW_SKILL_PACK_MANIFEST_JSON_SCHEMA: { readonly $schema: "https://json-schema.org/draft/2020-12/schema"; readonly $id: "https://schemas.useorgx.com/openclaw-skill-pack/v1.json"; readonly title: "OrgX OpenClaw Skill Pack Manifest"; readonly description: "Behavior config manifest for OpenClaw skill overrides by domain."; readonly type: "object"; readonly additionalProperties: true; readonly oneOf: readonly [{ readonly type: "object"; readonly additionalProperties: true; readonly properties: { readonly schema_version: { readonly type: "string"; readonly const: "openclaw-skill-pack.v1"; }; readonly openclaw_skills: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly engineering: { readonly type: "string"; readonly minLength: 1; }; readonly product: { readonly type: "string"; readonly minLength: 1; }; readonly design: { readonly type: "string"; readonly minLength: 1; }; readonly marketing: { readonly type: "string"; readonly minLength: 1; }; readonly sales: { readonly type: "string"; readonly minLength: 1; }; readonly operations: { readonly type: "string"; readonly minLength: 1; }; readonly orchestration: { readonly type: "string"; readonly minLength: 1; }; }; }; }; readonly required: readonly ["openclaw_skills"]; }, { readonly type: "object"; readonly additionalProperties: true; readonly properties: { readonly schema_version: { readonly type: "string"; readonly const: "openclaw-skill-pack.v1"; }; readonly openclawSkills: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly engineering: { readonly type: "string"; readonly minLength: 1; }; readonly product: { readonly type: "string"; readonly minLength: 1; }; readonly design: { readonly type: "string"; readonly minLength: 1; }; readonly marketing: { readonly type: "string"; readonly minLength: 1; }; readonly sales: { readonly type: "string"; readonly minLength: 1; }; readonly operations: { readonly type: "string"; readonly minLength: 1; }; readonly orchestration: { readonly type: "string"; readonly minLength: 1; }; }; }; }; readonly required: readonly ["openclawSkills"]; }, { readonly type: "object"; readonly additionalProperties: true; readonly properties: { readonly schema_version: { readonly type: "string"; readonly const: "openclaw-skill-pack.v1"; }; readonly openclaw: { readonly type: "object"; readonly additionalProperties: true; readonly properties: { readonly skills: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly engineering: { readonly type: "string"; readonly minLength: 1; }; readonly product: { readonly type: "string"; readonly minLength: 1; }; readonly design: { readonly type: "string"; readonly minLength: 1; }; readonly marketing: { readonly type: "string"; readonly minLength: 1; }; readonly sales: { readonly type: "string"; readonly minLength: 1; }; readonly operations: { readonly type: "string"; readonly minLength: 1; }; readonly orchestration: { readonly type: "string"; readonly minLength: 1; }; }; }; }; readonly required: readonly ["skills"]; }; }; readonly required: readonly ["openclaw"]; }]; }; export declare function validateOpenClawSkillPackManifest(manifest: unknown): { ok: boolean; configType: ManifestConfigType; openclaw_skills: Partial>; errors: string[]; };