Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 2.61 KB

File metadata and controls

56 lines (42 loc) · 2.61 KB

Summon Roadmap

This document outlines the feature roadmap for Summon, evolving from a multi-platform foundation to a feature-complete web frontend framework.

Design Principles:

  • All APIs are Compose-like and Kotlin-idiomatic.
  • Features implemented in commonMain with expect/actual for platform specifics.
  • Native platforms use direct platform UI bindings via Kotlin/Native's C interop (NOT Skiko/Skia).
  • Desktop-only or web-only features are no-ops on unsupported platforms.

Production Readiness Standards: To ensure high quality and stability, every feature in this roadmap must meet the following "Definition of Done" criteria:

  1. Comprehensive E2E Testing:

    • All user interactions must be verified with Playwright tests running against both WASM and JS targets.
    • Tests must cover critical paths on Chrome, Firefox, and Safari.
    • Visual regression tests must be included where applicable.
  2. Code Coverage & Quality:

    • We utilize Kover to enforce code coverage.
    • Features must maintain a minimum of 80% branch coverage.
    • No new linting errors or warnings (Detekt/Ktlint).
  3. Documentation:

    • Public APIs must be fully documented using KDoc.
    • We utilize Dokka to generate the API reference.
    • Each feature should be demonstrable via CLI-generated projects.
  4. Accessibility:

    • Components must pass automated accessibility checks (axe-core).
    • Manual verification of keyboard navigation and screen reader announcements is required.
  5. Cross-Platform Verification:

    • Features must be verified to degrade gracefully or no-op correctly on unsupported platforms.

Release Plan

Focus: Essential UI/UX primitives needed for mobile/desktop support. Goal: Establish the core interaction and layout models that abstract away platform differences.

Focus: Multi-window capabilities and desktop-specific features. Goal: Enable complex desktop-class applications and advanced web workflows.

Focus: Tooling to make Summon a joy to use. Goal: Provide a world-class development environment comparable to React/Vue ecosystems.

Focus: Robust patterns for data, forms, and state. Goal: Standardize how applications handle data flow and side effects.

Focus: Stability, accessibility, and optimization. Goal: Ensure the framework is ready for mission-critical, high-scale production use.