/** * The command shell `axm packs add` and `axm packs remove` share. * * The feature settles which members change and resolves the manifest edit; * this module supplies the execution intent, the recovery command a * confirmation reprints, and the outcome rendering. */ import * as Effect from "effect/Effect"; import { type PackMembershipRequest } from "@agentxm/workspace/authoring"; export interface PackMembershipCommandArgs { readonly request: PackMembershipRequest; readonly preview: boolean; } /** Run one `packs add` or `packs remove` route end to end. */ export declare const runPackMembershipCommand: (args: PackMembershipCommandArgs) => Effect.Effect; //# sourceMappingURL=membership-command.d.ts.map