|
1 | 1 | ;; SPDX-License-Identifier: AGPL-3.0-or-later |
2 | 2 | ;; SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell |
3 | 3 |
|
4 | | -;;; STATE.scm — Project Checkpoint and Session History |
| 4 | +;;; STATE.scm — Project Checkpoint (state.scm format) |
5 | 5 | ;;; nextgen-languages |
6 | | -;;; Reference: https://github.com/hyperpolymath/nextgen-languages |
| 6 | +;;; Reference: https://github.com/hyperpolymath/state.scm |
7 | 7 |
|
8 | 8 | (define-module (nextgen-languages state) |
9 | | - #:export (project-checkpoint |
10 | | - session-history |
11 | | - migration-state |
12 | | - blockers)) |
| 9 | + #:export (state)) |
13 | 10 |
|
14 | 11 | ;;;============================================================================ |
15 | | -;;; PROJECT CHECKPOINT |
16 | | -;;; Current state of the project as of last update |
| 12 | +;;; STATE — Checkpoint for AI conversation context persistence |
| 13 | +;;; Format: https://github.com/hyperpolymath/state.scm |
17 | 14 | ;;;============================================================================ |
18 | 15 |
|
19 | | -(define project-checkpoint |
20 | | - '((last-updated . "2025-12-28") |
21 | | - (updated-by . "claude/add-language-manifest-rDBhd") |
22 | | - |
23 | | - (languages-status |
| 16 | +(define state |
| 17 | + '((metadata |
| 18 | + ((format-version . "0.1.0") |
| 19 | + (schema-version . "2025-12-28") |
| 20 | + (created-at . "2025-10-01T00:00:00Z") |
| 21 | + (last-updated . "2025-12-28T00:00:00Z") |
| 22 | + (generator . "claude-code"))) |
| 23 | + |
| 24 | + (user |
| 25 | + ((name . "Jonathan D.A. Jewell") |
| 26 | + (roles . (maintainer architect)) |
| 27 | + (preferences |
| 28 | + ((language-policy . "hyperpolymath-standard") |
| 29 | + (primary-languages . (Rust ReScript Gleam Guile)) |
| 30 | + (banned . (TypeScript Node npm Go)))))) |
| 31 | + |
| 32 | + (session |
| 33 | + ((conversation-id . "claude/add-language-manifest-rDBhd") |
| 34 | + (started-at . "2025-12-28T00:00:00Z") |
| 35 | + (focus . "ecosystem-expansion"))) |
| 36 | + |
| 37 | + (focus |
| 38 | + ((current-project . "nextgen-languages") |
| 39 | + (current-phase . "consolidation") |
| 40 | + (blocking-projects . (eclexia-sync gitlab-migration)))) |
| 41 | + |
| 42 | + (projects |
| 43 | + ;; Core 8 Languages |
24 | 44 | ((my-lang |
25 | | - ((status . to-verify) |
| 45 | + ((name . "My-Lang Family") |
| 46 | + (status . to-verify) |
| 47 | + (completion . 20) |
| 48 | + (category . educational) |
| 49 | + (phase . design) |
26 | 50 | (dialects . (me solo duet ensemble)) |
27 | 51 | (implementation . Rust) |
28 | | - (submodule . "my-lang/"))) |
| 52 | + (next . ("Set up dialect subfolders" "Define progression curriculum")))) |
| 53 | + |
29 | 54 | (phronesis |
30 | | - ((status . diverged) |
31 | | - (gitlab . "Original design") |
32 | | - (github . "Elixir implementation") |
33 | | - (action-needed . "Evaluate and merge"))) |
| 55 | + ((name . "Phronesis") |
| 56 | + (status . diverged) |
| 57 | + (completion . 30) |
| 58 | + (category . ai-safety) |
| 59 | + (blockers . ("GitLab has original design" "GitHub has Elixir impl")) |
| 60 | + (next . ("Evaluate both implementations" "Decide merge strategy")))) |
| 61 | + |
34 | 62 | (eclexia |
35 | | - ((status . not-synced) |
36 | | - (priority . 1) |
37 | | - (gitlab . "70-page white paper + Rust compiler") |
38 | | - (github . "Template only") |
39 | | - (action-needed . "Sync from GitLab immediately"))) |
| 63 | + ((name . "Eclexia") |
| 64 | + (status . not-synced) |
| 65 | + (completion . 40) |
| 66 | + (category . sustainable-computing) |
| 67 | + (blockers . ("70-page white paper only on GitLab" "Rust compiler only on GitLab")) |
| 68 | + (next . ("PRIORITY: Sync from GitLab")))) |
| 69 | + |
40 | 70 | (oblibeny |
41 | | - ((status . diverged) |
42 | | - (gitlab-commits . 40) |
43 | | - (github-commits . 30) |
44 | | - (action-needed . "Manual merge"))) |
| 71 | + ((name . "Oblíbený") |
| 72 | + (status . diverged) |
| 73 | + (completion . 35) |
| 74 | + (category . security-critical) |
| 75 | + (blockers . ("40 commits on GitLab" "30 commits on GitHub" "Manual merge needed")))) |
| 76 | + |
45 | 77 | (anvomidav |
46 | | - ((status . active) |
47 | | - (url . "https://github.com/hyperpolymath/anvomidav") |
48 | | - (note . "Recently added as satellite"))) |
| 78 | + ((name . "Anvomidav") |
| 79 | + (status . active) |
| 80 | + (completion . 15) |
| 81 | + (category . real-time-systems) |
| 82 | + (next . ("Define type system" "Implement scheduler")))) |
| 83 | + |
49 | 84 | (wokelang |
50 | | - ((status . diverged) |
51 | | - (gitlab . "Original design") |
52 | | - (github . "Rust bytecode VM") |
53 | | - (action-needed . "Evaluate and merge"))) |
| 85 | + ((name . "WokeLang") |
| 86 | + (status . diverged) |
| 87 | + (completion . 25) |
| 88 | + (category . human-centric) |
| 89 | + (blockers . ("GitLab has original" "GitHub has Rust VM")))) |
| 90 | + |
54 | 91 | (betlang |
55 | | - ((status . to-verify) |
| 92 | + ((name . "betlang") |
| 93 | + (status . to-verify) |
| 94 | + (completion . 50) |
| 95 | + (category . probabilistic) |
56 | 96 | (implementation . Racket))) |
| 97 | + |
57 | 98 | (julia-the-viper |
58 | | - ((status . to-verify) |
| 99 | + ((name . "julia-the-viper") |
| 100 | + (status . to-verify) |
| 101 | + (completion . 20) |
| 102 | + (category . systems) |
59 | 103 | (implementation . Rust))) |
| 104 | + |
60 | 105 | (affinescript |
61 | | - ((status . to-verify) |
| 106 | + ((name . "AffineScript") |
| 107 | + (status . to-verify) |
| 108 | + (completion . 15) |
| 109 | + (category . type-systems) |
62 | 110 | (implementation . OCaml))) |
63 | | - (ephapax |
64 | | - ((status . to-verify) |
65 | | - (implementation . "TBD"))))) |
66 | | - |
67 | | - (infrastructure-status |
68 | | - ((hub-repo . active) |
69 | | - (wiki . "12 pages, 70+ stubs needed") |
70 | | - (ci-cd . configured) |
71 | | - (mirrors . pending))))) |
72 | | - |
73 | | -;;;============================================================================ |
74 | | -;;; SESSION HISTORY |
75 | | -;;; Record of significant development sessions |
76 | | -;;;============================================================================ |
77 | | - |
78 | | -(define session-history |
79 | | - '((sessions |
80 | | - ((session-2025-12-28-manifest |
81 | | - ((branch . "claude/add-language-manifest-rDBhd") |
82 | | - (changes |
83 | | - ("Created MANIFEST.md with language index" |
84 | | - "Created languages/ directory with per-language READMEs" |
85 | | - "Added core invariants for each language" |
86 | | - "Created META.scm, STATE.scm, ECOSYSTEM.scm" |
87 | | - "Added anvomidav and language-playgrounds as satellites" |
88 | | - "Updated README.adoc with actual repo links")) |
89 | | - (commits . TBD))) |
90 | | - |
91 | | - (session-2025-12-16-migration |
92 | | - ((focus . "Migration planning") |
93 | | - (changes |
94 | | - ("Created MIGRATION-STATUS.md" |
95 | | - "Created MIGRATION-STRATEGY.md" |
96 | | - "Identified diverged repos")) |
97 | | - (outcome . "Strategy documented, execution pending"))) |
98 | | - |
99 | | - (session-2025-10-original |
100 | | - ((focus . "Initial language design") |
101 | | - (changes |
102 | | - ("Created LANGUAGES.scm" |
103 | | - "Defined 8 core languages" |
104 | | - "Established design philosophy")) |
105 | | - (platform . "GitLab"))))))) |
106 | | - |
107 | | -;;;============================================================================ |
108 | | -;;; MIGRATION STATE |
109 | | -;;; Status of GitLab → GitHub migration |
110 | | -;;;============================================================================ |
111 | | - |
112 | | -(define migration-state |
113 | | - '((source-of-truth . GitHub) |
114 | | - (target-mirrors . (GitLab Codeberg Bitbucket)) |
115 | | - |
116 | | - (phase . 1) |
117 | | - (phase-description . "Language repos sync") |
118 | 111 |
|
119 | | - (repos |
120 | | - ((synced . ()) |
121 | | - (to-verify . (betlang julia-the-viper my-lang affinescript ephapax)) |
122 | | - (diverged . (phronesis wokelang oblibeny)) |
123 | | - (not-synced . (eclexia)) |
124 | | - (naming-issue . (anvomidav)))) |
125 | | - |
126 | | - (priority-queue |
127 | | - ((1 . eclexia) |
128 | | - (2 . phronesis) |
129 | | - (3 . wokelang) |
130 | | - (4 . oblibeny))))) |
131 | | - |
132 | | -;;;============================================================================ |
133 | | -;;; BLOCKERS |
134 | | -;;; Current issues blocking progress |
135 | | -;;;============================================================================ |
136 | | - |
137 | | -(define blockers |
138 | | - '((active |
139 | | - ((blocker-001 |
140 | | - ((title . "Eclexia not synced from GitLab") |
| 112 | + (ephapax |
| 113 | + ((name . "Ephapax") |
| 114 | + (status . to-verify) |
| 115 | + (completion . 10) |
| 116 | + (category . linear-semantics) |
| 117 | + (implementation . TBD))))) |
| 118 | + |
| 119 | + (critical-next |
| 120 | + ((1 . "Sync eclexia from GitLab (70-page white paper + Rust compiler)") |
| 121 | + (2 . "Resolve phronesis divergence (GitLab original vs GitHub Elixir)") |
| 122 | + (3 . "Resolve wokelang divergence (GitLab original vs GitHub Rust)") |
| 123 | + (4 . "Merge oblibeny branches (40 GitLab + 30 GitHub commits)") |
| 124 | + (5 . "Set up my-lang dialect subfolders (me/solo/duet/ensemble)"))) |
| 125 | + |
| 126 | + (issues |
| 127 | + ((migration |
| 128 | + ((id . "issue-001") |
| 129 | + (title . "GitLab → GitHub migration incomplete") |
141 | 130 | (severity . critical) |
142 | | - (description . "70-page white paper and Rust compiler only on GitLab") |
143 | | - (resolution . "Manual sync required with GitLab access") |
144 | | - (owner . "maintainer"))) |
145 | | - |
146 | | - (blocker-002 |
147 | | - ((title . "Diverged implementations need decisions") |
148 | | - (severity . high) |
149 | | - (description . "phronesis, wokelang, oblibeny have different work on GitLab vs GitHub") |
150 | | - (resolution . "Review both implementations, decide which to keep/merge") |
151 | | - (owner . "maintainer"))))) |
152 | | - |
153 | | - (resolved . ()))) |
| 131 | + (description . "Original work from Aug-Oct 2025 on GitLab not synced") |
| 132 | + (affected . (eclexia phronesis wokelang oblibeny)))) |
| 133 | + |
| 134 | + (structure |
| 135 | + ((id . "issue-002") |
| 136 | + (title . "my-lang needs dialect subfolders") |
| 137 | + (severity . medium) |
| 138 | + (description . "me/solo/duet/ensemble should be subfolders of my-lang"))))) |
| 139 | + |
| 140 | + (history |
| 141 | + ((velocity |
| 142 | + ((2025-12-28 . ((tasks-completed . 15) (files-created . 28))) |
| 143 | + (2025-12-16 . ((tasks-completed . 5) (focus . "migration-planning"))) |
| 144 | + (2025-10-01 . ((tasks-completed . 10) (focus . "initial-design"))))))))) |
154 | 145 |
|
155 | 146 | ;;; End of STATE.scm |
0 commit comments