/** * V3 CLI `ruflo swarm join ` — ADR-380 §2. * * Joins a SLIM group-membership channel scoped to a Cognitum tenant/project * namespace (e.g. `cognitum/research/security`). This is an AGNTCY/SLIM * concept layered on top of — never a replacement for — this repo's own * `swarm_init`/`hive-mind_*` MCP-tool coordination, which remains the * default for single-host swarms per ADR-380 §2. * * NOT WIRED INTO THE MAIN CLI ROUTER YET. This file is exported for a * later integration pass to attach as a new subcommand of the existing * `swarm` command (`v3/@claude-flow/cli/src/commands/swarm.ts`). */ import type { Command } from '../../types.js'; /** * SLIM group-membership namespaces are slash-delimited (e.g. * `cognitum/research/security`), matching the ADR-380 §2 example. Validate * the shape locally — deterministic, no SDK required — before ever * attempting a network join. */ export declare function validateNamespace(namespace: string): { valid: boolean; error?: string; }; declare const joinCommand: Command; export { joinCommand as swarmJoinCommand }; export default joinCommand; //# sourceMappingURL=swarm-join.d.ts.map