export declare const DEVELOPER_SKILL_SCHEMA_VERSION: "nexusclaw.developer-skill/v1"; export interface DeveloperSkillLifecycle { readonly describe: string; readonly scaffold: string; readonly validate: string; readonly test: string; readonly publish: string; readonly rollback: string; } export interface DeveloperSkillDescriptor { readonly schemaVersion: typeof DEVELOPER_SKILL_SCHEMA_VERSION; readonly skillId: string; readonly title: string; readonly assetKind: 'code-action' | 'flow'; readonly contractVersions: readonly string[]; readonly lifecycle: DeveloperSkillLifecycle; readonly effects: readonly ('local-read' | 'local-write' | 'remote-read' | 'remote-write')[]; readonly governance: { readonly discoveryContract: 'nexus ai help --all --json'; readonly publicationOwner: 'package' | 'employee-bundle'; readonly releaseGateRequired: true; }; } export declare function listDeveloperSkills(): readonly DeveloperSkillDescriptor[]; export declare function findDeveloperSkill(skillId: string): DeveloperSkillDescriptor | undefined;