|
| 1 | +;; SPDX-License-Identifier: PMPL-1.0-or-later |
| 2 | +;; STATE.scm - Project state for formatrix-docs |
| 3 | +;; Media-Type: application/vnd.state+scm |
| 4 | + |
| 5 | +(state |
| 6 | + (metadata |
| 7 | + (version "0.1.0") |
| 8 | + (schema-version "1.0") |
| 9 | + (created "2025-01-02") |
| 10 | + (updated "2026-03-14") |
| 11 | + (project "formatrix-docs") |
| 12 | + (repo "github.com/hyperpolymath/formatrix-docs")) |
| 13 | + |
| 14 | + (project-context |
| 15 | + (name "formatrix-docs") |
| 16 | + (tagline "Cross-platform document editor with format tabs") |
| 17 | + (tech-stack |
| 18 | + ("Rust" "core library" "Unified AST, format parsers, renderers") |
| 19 | + ("Tauri 2.0" "GUI" "Desktop application framework") |
| 20 | + ("ReScript" "frontend" "Type-safe UI components") |
| 21 | + ("Ada" "TUI" "Terminal interface with AdaCurses") |
| 22 | + ("Nickel" "pipelines" "Import/export transformations"))) |
| 23 | + |
| 24 | + (current-position |
| 25 | + (phase "initial-implementation") |
| 26 | + (overall-completion 15) |
| 27 | + (components |
| 28 | + (core 20 "AST, parsers scaffolded") |
| 29 | + (gui 10 "Tauri commands stubbed") |
| 30 | + (tui 5 "Ada structure created") |
| 31 | + (pipelines 5 "Nickel definitions started")) |
| 32 | + (working-features |
| 33 | + "Project structure" |
| 34 | + "Workspace Cargo.toml" |
| 35 | + "Core crate scaffolded")) |
| 36 | + |
| 37 | + (route-to-mvp |
| 38 | + (milestones |
| 39 | + ("M1" "Core format parsers" |
| 40 | + ("Plaintext parser" in-progress) |
| 41 | + ("Markdown parser" pending) |
| 42 | + ("AsciiDoc parser" pending)) |
| 43 | + ("M2" "GUI shell" |
| 44 | + ("Tauri window" pending) |
| 45 | + ("Tab switching" pending)) |
| 46 | + ("M3" "Format conversion" |
| 47 | + ("AST round-trip" pending)))) |
| 48 | + |
| 49 | + (blockers-and-issues |
| 50 | + (critical) |
| 51 | + (high) |
| 52 | + (medium) |
| 53 | + (low)) |
| 54 | + |
| 55 | + (critical-next-actions |
| 56 | + (immediate |
| 57 | + "Implement core AST types" |
| 58 | + "Complete plaintext parser") |
| 59 | + (this-week) |
| 60 | + (this-month)) |
| 61 | + |
| 62 | + (session-history |
| 63 | + ("2025-01-02" "Project created") |
| 64 | + ("2026-03-14" "RSR compliance audit"))) |
0 commit comments