import type { Migration } from "../types.js"; /** * v0.2.4 โ†’ v0.3.0 โ€” PM mode (v0.3 narrative, packaged as a single * minor-feature patch bump to keep the npm semver chain monotonic). * * Combines all of: * - v0.3 Phase A (PM session, --resume, agents-builder, session-store) * - v0.3 Phase B (reconciler, cc-jsonl-reader, snapshot/rollback, * pm/workflow CLIs, slash commands, pm-compaction) * - v0.3 Phase B refinements (stage_id marker, focus marker, _recent.md) * * Per docs/plan/v0.3-pm-mode-orchestration.md ยง7 + PoC #1/#2 findings. * * Per-org changes (non-destructive): * - Create `/.solosquad/sessions/` (empty; populated by pm-runner as * users send their first messages) * - Sync `/.claude/agents/.md` from `assets/agents/{team}/{agent}/SKILL.md` * for all 25 specialists (Claude Code's filesystem subagent discovery) * * Workspace changes: * - Add `pm` section to workspace.yaml with defaults (max_budget_usd, etc.) * - Bump version 0.2.4 โ†’ 0.3.0 * * No JSONL memory or existing workflow data is touched. Existing * `claude-runner.ts` single-shot path remains for scheduler routines. */ export declare const migration: Migration;