-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask-list.json
More file actions
233 lines (233 loc) · 8.83 KB
/
task-list.json
File metadata and controls
233 lines (233 loc) · 8.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
{
"jsonedit": {
"window-title": "JSON Editor (jsonedit) Retrofit and Feature Backlog"
},
"spec-retrofit-and-feature-backlog": {
"purpose": "Formalize existing implementation guarantees and desirable behaviors into the specification, plus identify future navigational features.",
"default-status": "may-implement",
"date-started": "2025-12-15",
"development-conversations": {
"2025-12-15": [
"https://chatgpt.com/c/69404b21-311c-8327-9c95-bb88bef87887"
],
"2025-12-16": [
"https://chatgpt.com/c/6941b60b-c7a8-8331-a3fe-9adc57397ecd"
]
},
"coding-conventions": {
"priority": [
"priority-1 is highest priority, priority-2 is very much wanted, priority-3 is de-prioritized"
],
"work-item-prefixes": {
"R": {
"name": "Spec Retrofit",
"definition": "An R-item represents behavior that already exists in the implementation and is relied upon in practice, but is not yet fully or explicitly described in the specification.",
"intent": [
"Bring the specification into alignment with the current implementation",
"Formalize implicit guarantees already enforced by the code"
],
"non-goals": [
"Introducing new runtime behavior"
],
"completion-criteria": [
"The specification accurately and explicitly describes the existing behavior"
]
},
"F": {
"name": "Feature",
"definition": "An F-item represents new functionality that is not yet implemented in the codebase and requires design, implementation, and testing.",
"intent": [
"Extending the spec to describe new user-facing or internal capabilities",
"Implementing the new capabilities in the code."
],
"non-goals": [],
"completion-criteria": [
"The feature is implemented in code",
"The specification describes the new behavior",
"The feature integrates with existing invariants and policies"
]
},
"B": {
"name": "Bug",
"definition": "A B-item represents a bug fix request.",
"intent": [
"Resolve a bug."
],
"non-goals": [],
"completion-criteria": [
"The bug is fixed or made irrelevant"
]
}
}
},
"tasks": [
{
"id": "R1",
"title": "Formalize Path Display in Status Bar",
"description": "Specify that the status bar must always display the currently selected node’s full JSON path, updated immediately on selection change. This is a first-class navigational affordance, not debug output.",
"spec-areas": [
"ui.status_bar",
"tree-view.selection",
"operations.select-node"
],
"status": "may-implement"
},
{
"id": "R2",
"title": "Specify Dirty-Aware Delete Selection Policy",
"description": "Codify the behavior where deleting a node while the text pane has uncommitted edits changes tree selection but does not refresh the text pane, with explicit status messaging explaining why.",
"spec-areas": [
"operations.delete-structural-item",
"text-pane.stability-guarantees",
"ui.status_bar"
],
"status": "may-implement"
},
{
"id": "R3",
"title": "Global Expanded-State Preservation Invariant",
"description": "Declare that all tree refreshes (structural operations, apply-edit, reorder, insert, duplicate) must preserve expanded/collapsed state, not just updates triggered by text commits.",
"spec-areas": [
"tree-view.display",
"refresh-tree"
],
"status": "may-implement"
},
{
"id": "R4",
"title": "Idempotent Same-Node Selection Rule",
"description": "Specify that selecting the same logical node again must be a no-op for the text pane, preventing cursor jumps, selection loss, or text refresh.",
"spec-areas": [
"tree-view.selection",
"text-pane-selection-policy"
],
"status": "may-implement"
},
{
"id": "R5",
"title": "Wrap-Around Reordering Semantics for Objects and Arrays",
"description": "Explicitly document wrap-around behavior for raise/lower operations and require object key reordering to preserve identity via dictionary reconstruction.",
"spec-areas": [
"operations.raise-structural-item",
"operations.lower-structural-item",
"document-model.ordering"
],
"status": "may-implement"
},
{
"id": "R6",
"title": "Root Node Structural Invariants",
"description": "Promote root constraints into formal invariants: root must be an object or array; structural operations on root are no-ops; apply-edit must validate root type.",
"spec-areas": [
"document-model.root-type",
"operations",
"synchronization.validation"
],
"status": "may-implement"
},
{
"id": "R7",
"title": "Status Bar as Explanatory Surface",
"description": "Specify that the status bar must provide human-readable explanations for invalid commits, suppressed refreshes, dirty states, and selection-related effects.",
"spec-areas": [
"ui.status_bar",
"synchronization.validation"
],
"status": "complete"
},
{
"id": "R8",
"title": "Text-Editing String Leaf",
"description": "Specify that editing a leaf string node causes it to go into a string editing mode.",
"spec-areas": [
"UNKNOWN"
],
"status": "may-implement"
},
{
"id": "F1",
"title": "Find Key Functionality",
"description": "Add a command to search for object keys by name. Results should navigate the tree, select matching nodes, update the path display, and expand ancestors to reveal matches.",
"spec-areas": [
"operations.find-key",
"menu",
"keyboard-policy",
"tree-view.selection"
],
"status": "complete"
},
{
"id": "F2",
"title": "Slide Panes",
"description": "Make it so that you can slide the pane's width, between the Tree view and the Text editor.",
"spec-areas": [
"unexplored; likely ui"
],
"status": "complete"
},
{
"id": "F3",
"title": "JSON Parse Error Exhibition",
"description": "Whenever there's a JSON parse error, whether in loading, or trying to sync text back into the tree, if there's a JSON parse error, pop up a text area in a dialog with the text of the JSON and the location of the error highlighted, as well as a message that states what the error is.",
"spec-areas": [
"unexplored; likely ui, synchronization"
],
"status": "priority-3"
},
{
"id": "F4",
"title": "Dark Mode",
"description": "Style the widgets for dark mode.",
"spec-areas": [
"ui"
],
"status": "complete"
},
{
"id": "F5",
"title": "Special Node",
"description": "Make it so that if there's a special top-level node, 'jsonedit', it can include customizations in it, like window-title.",
"spec-areas": [
"ui, document model"
],
"status": "complete"
},
{
"id": "F6",
"title": "Rename from Child Dict Key",
"description": "Peculiar feature: When you have a value that is a dictionary with just one key, -- pull that key up so that it replaces your present key, and it's value becomes your value. This is useful when working with LLMs, because they often return single key dictionaries that you want to incorporate.",
"spec-areas": [
"UNKNOWN"
],
"status": "priority-2"
},
{
"id": "F7",
"title": "Array -> Dictionary",
"description": "Replace a list with a dictionary, keyed on a value present in all items.",
"spec-areas": [
"UNKNOWN"
],
"status": "priority-2"
},
{
"id": "B1",
"title": "explorer.exe cannot execute?",
"description": "There's an issue where it keeps saying that explroer.exe cannot execute something; need to identify the source",
"spec-areas": [
"UNKNOWN"
],
"status": "priority-2"
},
{
"id": "F8",
"title": "click on path",
"description": "Clicking on the path in the lower-right hand corner on the status display, should copy the path to the clipboard.",
"spec-areas": [
"UNKNOWN"
],
"status": "priority-3"
}
]
}
}