/** * Pack manifest schema definition. * * @experimental This API is unstable and may change without notice. */ import * as Schema from "effect/Schema"; export declare const PACK_MANIFEST_FILENAME = "pack.json"; export declare const PACK_MANIFEST_SCHEMA_URL = "https://axm.sh/schemas/pack.schema.json"; /** * Schema for pack manifest files (pack.json). * * Packs bundle multiple extensions (skills, MCP servers, subagents, rules, * hooks, and knowledge bundles) for convenient distribution and installation. Each extension entry * maps a fully qualified name to a semver version range. * * @experimental This API is unstable and may change without notice. */ export declare const PackManifestSchema: Schema.Struct<{ readonly type: Schema.Literal<"pack">; readonly name: Schema.brand; readonly dependencies: Schema.$Record>; readonly publish: Schema.optional>; readonly ignore: Schema.optional>; }>>; readonly metadata: Schema.optional>>; readonly owner: Schema.brand; readonly version: Schema.brand; readonly description: Schema.optional; readonly keywords: Schema.optional>; readonly repository: Schema.optional; readonly url: Schema.NonEmptyString; readonly directory: Schema.optional; }>]>>; readonly homepage: Schema.optional; readonly license: Schema.optional; readonly bugs: Schema.optional; readonly email: Schema.optional; }>]>>; readonly authors: Schema.optional; readonly url: Schema.optional; }>>>; readonly packages: Schema.optional; readonly versionRange: Schema.optional", ">="]>; readonly version: Schema.NonEmptyString; }>>; }>>, Schema.NonEmptyString, never, never>, "VersRange">>; }>>>; readonly $schema: Schema.optional; }>; /** * Inferred type for PackManifest schema. * * @experimental This API is unstable and may change without notice. */ export type PackManifest = Schema.Schema.Type; //# sourceMappingURL=manifest-schema.d.ts.map