Adopt settled-reach's Q&D record convention. Confirmed decisions live under decisions/<domain>.md as D-NNN; open questions under questions-<domain>.md as Q-NNN; rejected alternatives in rejected.md as R-NNN. Markdown is source of truth; .pql/pql.db (added later) is a query index. Backlog captured from the Tier-0 Flutter planning sessions: bare WidgetsApp, theme pipeline, kernel admission rule, feature-first layout, a11y + i18n as Tier-0 contracts, test pyramid, kanban over Scrum, pql-owns-planning, Python stopgap sunset clause. ADR migration (D-001, D-003-D-006 confirmed, R-002 rejected) is staged for the next commit so the diff stays readable. Co-Authored-By: Claude <noreply@anthropic.com>
4.1 KiB
4.1 KiB
Rejected Alternatives
Alternatives considered and rejected, with rationale preserved for future reference.
R-003: MaterialApp root
- Rejected: 2026-04-21
- Reason: Dragged in Material theming, default icons, and platform chrome that fought the custom three-tier theme pipeline (D-009). Every bundled theme had to override Material defaults to look like clide; the overrides were visible in widget tests as "why is this
ElevatedButtoncolored this way." - Cross-reference: D-007
R-004: Flutter intl + ARB codegen for i18n
- Rejected: 2026-04-21
- Reason: ARB codegen is inflexible for plugin-contributed catalogs — every catalogue needs a codegen pass, every extension ships with pre-generated Dart, and runtime merging is fighting the tool. The fframe text-driven pattern reads JSON at runtime with no codegen, which fits extension-shipped catalogs cleanly.
- Cross-reference: D-021
R-005: Patrol test runner
- Rejected: 2026-04-21
- Reason: Adds a dependency (violates D-031) for a capability we get from Playwright + Flutter's own semantics tree. Patrol's value proposition (native-gesture emulation) is less relevant on Linux desktop than on mobile.
- Cross-reference: D-026
R-006: Nerd-font glyph icons
- Rejected: 2026-04-21
- Reason: TUI hangover from the Python-era clide under
legacy/. Not desktop-native; forces a font dependency; doesn't theme consistently. Clide uses custom icon primitives (Tier 6 revisits with proper icon-set design). - Cross-reference: Q-017
R-007: CupertinoApp root
- Rejected: 2026-04-21
- Reason: iOS-opinionated; wrong shell for a Linux-primary desktop IDE. Same theming-collision problem as R-003.
- Cross-reference: D-007
R-008: Riverpod / Provider / BLoC for state
- Rejected: 2026-04-21
- Reason: Violates D-031.
ChangeNotifier+ListenableBuildership in the SDK, fake trivially, and cover the state model we need. The ergonomic wins of Riverpod / Provider don't clear the "new dependency" bar at clide's scale. - Cross-reference: D-010
R-009: Port planning tooling into clide
- Rejected: 2026-04-21
- Reason: Earlier in the planning session the assumption was "clide owns Dart subcommands for decisions + tickets." That breaks the day a contributor works in a terminal or in VS Code / JetBrains — they have no
clidebinary to run. Reversing: pql owns planning long-term (see D-039); clide consumes via shell-out. - Cross-reference: D-039
R-010: Python-script stopgap under tooling/db/
- Rejected: 2026-04-21
- Reason: Location, not language. Settled-reach puts scripts at
tooling/db/— copying that path here creates a script-pollution problem: every project using the pattern commits its own copy. The accepted Python port (D-040) lives attools/scripts/plan, clearly signalled as dev-tooling and time-limited. - Cross-reference: D-040
R-011: Permanent stopgap
- Rejected: 2026-04-21
- Reason: If the Python port under
tools/scripts/planoutlasts pql's feature parity, delete it. The deletion commit should be one changeset: removetools/scripts/plan, remove its Makefile target (decisions-validaterewires topql decisions validate), add aCHANGELOG.mdentry under Removed, and verify.pql/pql.dbstill opens under the newpqlbinary. - Cross-reference: D-040