|
3 | 3 | ;; SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell |
4 | 4 |
|
5 | 5 | (define metadata |
6 | | - '((version . "0.1.0") (updated . "2025-12-15") (project . "preference-injector"))) |
| 6 | + '((version . "1.0.0") (updated . "2025-12-17") (project . "preference-injector"))) |
7 | 7 |
|
8 | 8 | (define current-position |
9 | | - '((phase . "v0.1 - Initial Setup") |
10 | | - (overall-completion . 25) |
11 | | - (components ((rsr-compliance ((status . "complete") (completion . 100))))))) |
| 9 | + '((phase . "v1.0 - Security Hardening Complete") |
| 10 | + (overall-completion . 35) |
| 11 | + (components |
| 12 | + ((rsr-compliance ((status . "complete") (completion . 100))) |
| 13 | + (scm-metadata ((status . "complete") (completion . 100))) |
| 14 | + (ci-security ((status . "complete") (completion . 100))) |
| 15 | + (security-policy ((status . "complete") (completion . 100))) |
| 16 | + (rescript-conversion ((status . "pending") (completion . 0))) |
| 17 | + (post-quantum-crypto ((status . "planned") (completion . 5))) |
| 18 | + (core-injector ((status . "in-progress") (completion . 60))) |
| 19 | + (providers ((status . "in-progress") (completion . 50))) |
| 20 | + (tests ((status . "pending") (completion . 20))))))) |
12 | 21 |
|
13 | | -(define blockers-and-issues '((critical ()) (high-priority ()))) |
| 22 | +(define blockers-and-issues |
| 23 | + '((critical ()) |
| 24 | + (high-priority |
| 25 | + (("TypeScript to ReScript conversion required" . "policy"))))) |
| 26 | + |
| 27 | +(define roadmap |
| 28 | + '((v1.0-current |
| 29 | + ((name . "Foundation & Security") |
| 30 | + (status . "complete") |
| 31 | + (items |
| 32 | + (("RSR compliance" . "complete") |
| 33 | + ("SCM metadata files" . "complete") |
| 34 | + ("CI/CD security hardening" . "complete") |
| 35 | + ("GitHub Actions updated to v4" . "complete") |
| 36 | + ("security.txt expiry fixed" . "complete") |
| 37 | + ("License consistency across SCM files" . "complete") |
| 38 | + ("Version consistency across files" . "complete"))))) |
| 39 | + |
| 40 | + (v1.1-next |
| 41 | + ((name . "ReScript Migration & Testing") |
| 42 | + (status . "planned") |
| 43 | + (items |
| 44 | + (("Convert src/core to ReScript" . "pending") |
| 45 | + ("Convert src/providers to ReScript" . "pending") |
| 46 | + ("Convert src/utils to ReScript" . "pending") |
| 47 | + ("Add ReScript-based test suite" . "pending") |
| 48 | + ("Achieve 80% test coverage" . "pending") |
| 49 | + ("Remove TypeScript dependencies" . "pending"))))) |
| 50 | + |
| 51 | + (v1.2-future |
| 52 | + ((name . "Post-Quantum Cryptography") |
| 53 | + (status . "planned") |
| 54 | + (items |
| 55 | + (("Implement Ed448 signatures" . "pending") |
| 56 | + ("Implement Kyber1024 key exchange" . "pending") |
| 57 | + ("Implement BLAKE3 hashing" . "pending") |
| 58 | + ("HSM integration support" . "pending"))))) |
| 59 | + |
| 60 | + (v1.3-future |
| 61 | + ((name . "Advanced Features") |
| 62 | + (status . "planned") |
| 63 | + (items |
| 64 | + (("CRDT-based sync finalization" . "pending") |
| 65 | + ("Offline-first architecture" . "pending") |
| 66 | + ("WASM sandboxing" . "pending") |
| 67 | + ("Formal verification with SPARK Ada" . "pending") |
| 68 | + ("GraphQL API" . "pending"))))))) |
14 | 69 |
|
15 | 70 | (define critical-next-actions |
16 | | - '((immediate (("Verify CI/CD" . high))) (this-week (("Expand tests" . medium))))) |
| 71 | + '((immediate |
| 72 | + (("Begin ReScript conversion of core modules" . "high") |
| 73 | + ("Set up ReScript build pipeline" . "high"))) |
| 74 | + (this-week |
| 75 | + (("Convert src/types to ReScript" . "medium") |
| 76 | + ("Add rescript.json configuration" . "medium") |
| 77 | + ("Update bsconfig.json" . "medium"))) |
| 78 | + (this-month |
| 79 | + (("Complete provider conversions" . "medium") |
| 80 | + ("Expand test coverage to 80%" . "medium"))))) |
17 | 81 |
|
18 | 82 | (define session-history |
19 | | - '((snapshots ((date . "2025-12-15") (session . "initial") (notes . "SCM files added"))))) |
| 83 | + '((snapshots |
| 84 | + ((date . "2025-12-15") (session . "initial") (notes . "SCM files added")) |
| 85 | + ((date . "2025-12-17") (session . "security-review") |
| 86 | + (notes . "Security hardening: updated GitHub Actions to v4, fixed security.txt expiry, aligned versions and licenses across SCM files, updated SECURITY.md dates"))))) |
20 | 87 |
|
21 | 88 | (define state-summary |
22 | | - '((project . "preference-injector") (completion . 25) (blockers . 0) (updated . "2025-12-15"))) |
| 89 | + '((project . "preference-injector") |
| 90 | + (completion . 35) |
| 91 | + (blockers . 0) |
| 92 | + (high-priority-items . 1) |
| 93 | + (updated . "2025-12-17") |
| 94 | + (next-milestone . "v1.1 - ReScript Migration"))) |
0 commit comments