/** * method-catalog-workspaces.ts * * Contract descriptors for the shared registered-workspace registry verbs * (workspaces.registrations.list / .add / .remove and workspaces.resolve). The * registry is the platform-wide successor to the agent fork's local * registered-workspaces file: it records which project roots an operator has * opted into, remembers subtree-scoped declines, and resolves any path to the * nearest covering root, following the git worktree→main-repo link, not path * ancestry, so an orchestration sibling worktree inherits its main repo's * registration. * * Descriptors live here (static) so `buildOperatorContract` / api.md / the * generated artifacts see them whether or not a handler is attached yet; * routes/workspaces.ts attaches the handlers at gateway composition time. All * four carry an `http` binding backed by GATEWAY_REST_ROUTES (REST parity). */ import type { GatewayMethodDescriptor } from './method-catalog-shared.js'; export declare const builtinGatewayWorkspacesMethodDescriptors: readonly GatewayMethodDescriptor[]; //# sourceMappingURL=method-catalog-workspaces.d.ts.map