/** * The starter verb set (epic #551, #554/#557/#558), wrapped as a * `CapabilityPlugin` (#559) — the built-in, always-loaded plugin that * carries every Phase 1 capability forward under the Phase 2 plugin * contract with **no behavior change**. * * Migration path from Phase 1 to Phase 2: Phase 1 (`createCapabilityRegistry`, * ./registry.ts) constructed a `CapabilityRegistry` by registering each * starter verb directly. Phase 2 introduces `CapabilityPlugin` as the * discoverable, typed package contract (./capability-plugin.ts) that * mirrors how lexicons are packaged (../lexicon.ts). Rather than rewrite the * starter verbs, this module packages the *exact same* verb list as one * `CapabilityPlugin` named "starter" — so: * * - `createCapabilityRegistry()` (./registry.ts) now builds its registry by * registering `starterCapabilityPlugin.capabilities()` instead of calling * `registry.register(...)` once per verb inline. Same kinds, same * instances, same order, same resulting registry — verified by * ./registry.test.ts, unchanged. * - `buildCapabilityRegistry()` (./capability-plugin-loader.ts), the new * Phase 2 entry point, always loads this plugin first, then layers any * additional third-party capability plugins on top by `kind`. * - The driver (./driver.ts) and every pilot (./pilots/*.pilot.ts) consume * only a `CapabilityRegistry` instance and never construct one directly * from verb modules, so neither needed to change for this migration — * the compatibility guarantee #559 asks for. */ import { type CapabilityPlugin } from "./capability-plugin.js"; /** * Every `kind` in the starter verb set, grouped by family, per epic #551 and * docs/components/capabilities.mdx. Source of truth (moved here from * ./registry.ts in #559 to avoid a module cycle: ./registry.ts's * `createCapabilityRegistry` depends on `starterCapabilityPlugin`, so this * plugin module cannot depend back on ./registry.ts). Re-exported from * ./registry.ts unchanged for existing importers. */ export declare const STARTER_VERB_FAMILIES: { readonly build: readonly ["docker-build", "zip-package", "jvm-build"]; readonly sbom: readonly ["generate-sbom"]; readonly supplyChainSecurity: readonly ["sign", "attest-provenance", "verify"]; readonly supplyChainPolicy: readonly ["scan-vulnerabilities", "vuln-gate"]; readonly waitVerify: readonly ["wait-cluster-healthy", "wait-endpoint", "health-gate"]; readonly escapeHatch: readonly ["shell"]; }; /** * The built-in capability plugin carrying the entire Phase 1 starter verb * set forward under the Phase 2 contract. Always loaded first by * `buildCapabilityRegistry` (./capability-plugin-loader.ts). */ export declare const starterCapabilityPlugin: CapabilityPlugin; //# sourceMappingURL=starter-plugin.d.ts.map