|
| 1 | +;; SPDX-License-Identifier: AGPL-3.0-or-later |
| 2 | +;; STATE.scm - Tree Navigator project state |
| 3 | +;; Updated: 2025-12-31 |
| 4 | + |
| 5 | +(define state |
| 6 | + `((metadata |
| 7 | + (version . "2.1.0") |
| 8 | + (schema-version . "1.0") |
| 9 | + (created . "2024-11-06") |
| 10 | + (updated . "2025-12-31") |
| 11 | + (project . "tree-navigator") |
| 12 | + (repo . "https://github.com/hyperpolymath/tree-navigator")) |
| 13 | + |
| 14 | + (project-context |
| 15 | + (name . "Tree Navigator") |
| 16 | + (tagline . "Directory tree visualization and export tool") |
| 17 | + (tech-stack . (ada-2022 gnat gprbuild))) |
| 18 | + |
| 19 | + (current-position |
| 20 | + (phase . "mvp-completion") |
| 21 | + (overall-completion . 75) |
| 22 | + (components |
| 23 | + ((interactive-mode |
| 24 | + (status . complete) |
| 25 | + (completion . 100)) |
| 26 | + (export-mode |
| 27 | + (status . just-implemented) |
| 28 | + (completion . 90)) |
| 29 | + (filtering |
| 30 | + (status . implemented) |
| 31 | + (completion . 85)) |
| 32 | + (tui-interface |
| 33 | + (status . planned) |
| 34 | + (completion . 0)) |
| 35 | + (printer-support |
| 36 | + (status . planned) |
| 37 | + (completion . 0)))) |
| 38 | + (working-features |
| 39 | + interactive-navigation |
| 40 | + bookmarks |
| 41 | + file-type-detection |
| 42 | + directory-exclusion |
| 43 | + file-exclusion |
| 44 | + tree-export |
| 45 | + statistics)) |
| 46 | + |
| 47 | + (route-to-mvp |
| 48 | + ((milestone . "v2.1.0-export") |
| 49 | + (status . in-progress) |
| 50 | + (items |
| 51 | + ((item . "Create tree_printer module") |
| 52 | + (status . done)) |
| 53 | + ((item . "Add --export flag to main.adb") |
| 54 | + (status . done)) |
| 55 | + ((item . "Add treenav alias") |
| 56 | + (status . done)) |
| 57 | + ((item . "Test build and export") |
| 58 | + (status . pending)) |
| 59 | + ((item . "Update CHANGELOG") |
| 60 | + (status . pending)))) |
| 61 | + ((milestone . "v2.2.0-tui") |
| 62 | + (status . planned) |
| 63 | + (items |
| 64 | + ((item . "Ada/SPARK TUI framework") |
| 65 | + (status . planned)) |
| 66 | + ((item . "ncurses or custom terminal UI") |
| 67 | + (status . planned)) |
| 68 | + ((item . "Real-time tree navigation display") |
| 69 | + (status . planned))))) |
| 70 | + |
| 71 | + (blockers-and-issues |
| 72 | + (critical . ()) |
| 73 | + (high |
| 74 | + ((issue . "Build not yet tested with new tree_printer module") |
| 75 | + (impact . "Cannot verify export functionality works"))) |
| 76 | + (medium |
| 77 | + ((issue . "README documents features not yet implemented") |
| 78 | + (impact . "User expectations mismatch"))) |
| 79 | + (low . ())) |
| 80 | + |
| 81 | + (critical-next-actions |
| 82 | + (immediate |
| 83 | + ("Test gprbuild with new tree_printer module" |
| 84 | + "Verify export functionality works" |
| 85 | + "Update version to 2.1.0")) |
| 86 | + (this-week |
| 87 | + ("Add SPDX headers to all Ada source files" |
| 88 | + "Update CHANGELOG.md for v2.1.0" |
| 89 | + "Create v2.1.0 release")) |
| 90 | + (this-month |
| 91 | + ("Research Ada/SPARK TUI options" |
| 92 | + "Plan printer integration" |
| 93 | + "Consider winget submission like bunsenite"))) |
| 94 | + |
| 95 | + (session-history |
| 96 | + ((date . "2025-12-31") |
| 97 | + (accomplishments |
| 98 | + "Created tree_printer.ads/adb export engine" |
| 99 | + "Updated main.adb with --export flag handling" |
| 100 | + "Added treenav alias to justfile" |
| 101 | + "Created STATE.scm"))))) |
0 commit comments