scriveno 2.0.8 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -7
- package/bin/install.js +137 -3
- package/commands/scr/health.md +6 -0
- package/commands/scr/new-work.md +1 -1
- package/commands/scr/next.md +6 -0
- package/commands/scr/progress.md +6 -0
- package/commands/scr/save.md +6 -0
- package/commands/scr/scan.md +6 -0
- package/commands/scr/session-report.md +6 -0
- package/commands/scr/sync.md +4 -2
- package/data/CONSTRAINTS.json +3082 -701
- package/docs/architecture.md +23 -5
- package/docs/auto-invoke-policy.md +30 -0
- package/docs/configuration.md +1 -1
- package/docs/getting-started.md +5 -1
- package/docs/release-notes.md +67 -0
- package/docs/route-graph.md +51 -0
- package/docs/runtime-support.md +23 -1
- package/docs/shipped-assets.md +1 -0
- package/docs/testing.md +10 -0
- package/lib/auto-invoke-engine.js +889 -2
- package/package.json +1 -1
- package/templates/config.json +1 -10
package/data/CONSTRAINTS.json
CHANGED
|
@@ -1,308 +1,836 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./constraints.schema.json",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.10",
|
|
4
4
|
"description": "Scriveno constraint system: work types, command availability, exports, and dependencies. Every command checks this file at runtime.",
|
|
5
5
|
"_notes": {
|
|
6
6
|
"sacred_keys": "Sacred subcommands live at commands/scr/sacred/<name>.md and run as /scr:sacred:<name>. Their CONSTRAINTS keys use the sacred:<name> form so /scr:help can render the runnable slash-command path directly. The sacred-numbering-format entry is a separate flat command (commands/scr/sacred-numbering-format.md) that surfaces the active tradition's numbering format. It used to be named sacred-verse-numbering, which collided with sacred:verse-numbering at install time -- both flattened to scr-sacred-verse-numbering. Renamed in v1.6.x; the installer now refuses to install when two sources share a flat skill name."
|
|
7
7
|
},
|
|
8
8
|
"command_intents": {
|
|
9
|
-
"start": [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
9
|
+
"start": [
|
|
10
|
+
"new-work",
|
|
11
|
+
"demo",
|
|
12
|
+
"import",
|
|
13
|
+
"profile-writer",
|
|
14
|
+
"manager"
|
|
15
|
+
],
|
|
16
|
+
"draft": [
|
|
17
|
+
"next",
|
|
18
|
+
"discuss",
|
|
19
|
+
"plan",
|
|
20
|
+
"draft",
|
|
21
|
+
"quick-write",
|
|
22
|
+
"voice-test"
|
|
23
|
+
],
|
|
24
|
+
"revise": [
|
|
25
|
+
"editor-review",
|
|
26
|
+
"voice-check",
|
|
27
|
+
"continuity-check",
|
|
28
|
+
"line-edit",
|
|
29
|
+
"copy-edit",
|
|
30
|
+
"polish",
|
|
31
|
+
"beta-reader"
|
|
32
|
+
],
|
|
33
|
+
"navigate": [
|
|
34
|
+
"next",
|
|
35
|
+
"progress",
|
|
36
|
+
"manuscript-stats",
|
|
37
|
+
"map-manuscript",
|
|
38
|
+
"pause-work",
|
|
39
|
+
"resume-work"
|
|
40
|
+
],
|
|
41
|
+
"publish": [
|
|
42
|
+
"complete-draft",
|
|
43
|
+
"front-matter",
|
|
44
|
+
"back-matter",
|
|
45
|
+
"blurb",
|
|
46
|
+
"publish",
|
|
47
|
+
"export",
|
|
48
|
+
"build-ebook",
|
|
49
|
+
"build-print"
|
|
50
|
+
],
|
|
51
|
+
"translate": [
|
|
52
|
+
"translate",
|
|
53
|
+
"translation-glossary",
|
|
54
|
+
"translation-memory",
|
|
55
|
+
"back-translate",
|
|
56
|
+
"cultural-adaptation",
|
|
57
|
+
"multi-publish"
|
|
58
|
+
],
|
|
59
|
+
"collaborate": [
|
|
60
|
+
"track",
|
|
61
|
+
"editor-review",
|
|
62
|
+
"compare",
|
|
63
|
+
"history",
|
|
64
|
+
"versions",
|
|
65
|
+
"save"
|
|
66
|
+
],
|
|
67
|
+
"repair": [
|
|
68
|
+
"scan",
|
|
69
|
+
"health",
|
|
70
|
+
"sync",
|
|
71
|
+
"validate",
|
|
72
|
+
"cleanup",
|
|
73
|
+
"troubleshoot",
|
|
74
|
+
"undo"
|
|
75
|
+
]
|
|
17
76
|
},
|
|
18
|
-
|
|
19
77
|
"work_type_groups": {
|
|
20
78
|
"prose": {
|
|
21
79
|
"label": "Prose",
|
|
22
|
-
"members": [
|
|
80
|
+
"members": [
|
|
81
|
+
"novel",
|
|
82
|
+
"novella",
|
|
83
|
+
"short_story",
|
|
84
|
+
"flash_fiction",
|
|
85
|
+
"memoir",
|
|
86
|
+
"creative_nonfiction",
|
|
87
|
+
"biography",
|
|
88
|
+
"essay",
|
|
89
|
+
"essay_collection"
|
|
90
|
+
]
|
|
23
91
|
},
|
|
24
92
|
"script": {
|
|
25
93
|
"label": "Script",
|
|
26
|
-
"members": [
|
|
94
|
+
"members": [
|
|
95
|
+
"screenplay",
|
|
96
|
+
"stage_play",
|
|
97
|
+
"tv_pilot",
|
|
98
|
+
"tv_series_bible",
|
|
99
|
+
"audio_drama",
|
|
100
|
+
"libretto"
|
|
101
|
+
]
|
|
27
102
|
},
|
|
28
103
|
"academic": {
|
|
29
104
|
"label": "Academic",
|
|
30
|
-
"members": [
|
|
105
|
+
"members": [
|
|
106
|
+
"research_paper",
|
|
107
|
+
"thesis",
|
|
108
|
+
"journal_article",
|
|
109
|
+
"white_paper",
|
|
110
|
+
"literature_review",
|
|
111
|
+
"monograph"
|
|
112
|
+
]
|
|
31
113
|
},
|
|
32
114
|
"technical": {
|
|
33
115
|
"label": "Technical Writing",
|
|
34
|
-
"members": [
|
|
116
|
+
"members": [
|
|
117
|
+
"technical_guide",
|
|
118
|
+
"runbook",
|
|
119
|
+
"api_reference",
|
|
120
|
+
"design_spec"
|
|
121
|
+
]
|
|
35
122
|
},
|
|
36
123
|
"visual": {
|
|
37
124
|
"label": "Visual",
|
|
38
|
-
"members": [
|
|
125
|
+
"members": [
|
|
126
|
+
"comic",
|
|
127
|
+
"graphic_novel",
|
|
128
|
+
"childrens_book",
|
|
129
|
+
"picture_book"
|
|
130
|
+
]
|
|
39
131
|
},
|
|
40
132
|
"poetry": {
|
|
41
133
|
"label": "Poetry",
|
|
42
|
-
"members": [
|
|
134
|
+
"members": [
|
|
135
|
+
"poetry_collection",
|
|
136
|
+
"single_poem",
|
|
137
|
+
"song_lyric"
|
|
138
|
+
]
|
|
43
139
|
},
|
|
44
140
|
"interactive": {
|
|
45
141
|
"label": "Interactive",
|
|
46
|
-
"members": [
|
|
142
|
+
"members": [
|
|
143
|
+
"interactive_fiction",
|
|
144
|
+
"game_narrative"
|
|
145
|
+
]
|
|
47
146
|
},
|
|
48
147
|
"speech_song": {
|
|
49
148
|
"label": "Speech & Song",
|
|
50
|
-
"members": [
|
|
149
|
+
"members": [
|
|
150
|
+
"speech"
|
|
151
|
+
]
|
|
51
152
|
},
|
|
52
153
|
"sacred": {
|
|
53
154
|
"label": "Sacred & Historical",
|
|
54
155
|
"members": [
|
|
55
|
-
"scripture_biblical",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
156
|
+
"scripture_biblical",
|
|
157
|
+
"scripture_quranic",
|
|
158
|
+
"scripture_torah",
|
|
159
|
+
"scripture_vedic",
|
|
160
|
+
"scripture_buddhist",
|
|
161
|
+
"scripture_generic",
|
|
162
|
+
"commentary",
|
|
163
|
+
"devotional",
|
|
164
|
+
"liturgical",
|
|
165
|
+
"historical_chronicle",
|
|
166
|
+
"historical_account",
|
|
167
|
+
"mythological_collection",
|
|
168
|
+
"religious_epic",
|
|
169
|
+
"sermon",
|
|
170
|
+
"homiletic_collection"
|
|
60
171
|
]
|
|
61
172
|
}
|
|
62
173
|
},
|
|
63
|
-
|
|
64
174
|
"work_types": {
|
|
65
175
|
"novel": {
|
|
66
176
|
"label": "Novel",
|
|
67
177
|
"group": "prose",
|
|
68
|
-
"hierarchy": {
|
|
178
|
+
"hierarchy": {
|
|
179
|
+
"top": "part",
|
|
180
|
+
"mid": "chapter",
|
|
181
|
+
"atomic": "scene"
|
|
182
|
+
},
|
|
69
183
|
"command_unit": "chapter",
|
|
70
|
-
"word_count_range": [
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
184
|
+
"word_count_range": [
|
|
185
|
+
70000,
|
|
186
|
+
100000
|
|
187
|
+
],
|
|
188
|
+
"page_range": [
|
|
189
|
+
280,
|
|
190
|
+
400
|
|
191
|
+
],
|
|
192
|
+
"unit_count_range": [
|
|
193
|
+
20,
|
|
194
|
+
35
|
|
195
|
+
],
|
|
196
|
+
"unit_word_range": [
|
|
197
|
+
2500,
|
|
198
|
+
5000
|
|
199
|
+
],
|
|
200
|
+
"unit_page_range": [
|
|
201
|
+
10,
|
|
202
|
+
20
|
|
203
|
+
]
|
|
75
204
|
},
|
|
76
205
|
"novella": {
|
|
77
206
|
"label": "Novella",
|
|
78
207
|
"group": "prose",
|
|
79
|
-
"hierarchy": {
|
|
208
|
+
"hierarchy": {
|
|
209
|
+
"top": null,
|
|
210
|
+
"mid": "chapter",
|
|
211
|
+
"atomic": "scene"
|
|
212
|
+
},
|
|
80
213
|
"command_unit": "chapter",
|
|
81
|
-
"word_count_range": [
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"
|
|
214
|
+
"word_count_range": [
|
|
215
|
+
17500,
|
|
216
|
+
40000
|
|
217
|
+
],
|
|
218
|
+
"page_range": [
|
|
219
|
+
70,
|
|
220
|
+
160
|
|
221
|
+
],
|
|
222
|
+
"unit_count_range": [
|
|
223
|
+
5,
|
|
224
|
+
15
|
|
225
|
+
],
|
|
226
|
+
"unit_word_range": [
|
|
227
|
+
2000,
|
|
228
|
+
4000
|
|
229
|
+
],
|
|
230
|
+
"unit_page_range": [
|
|
231
|
+
8,
|
|
232
|
+
16
|
|
233
|
+
]
|
|
86
234
|
},
|
|
87
235
|
"short_story": {
|
|
88
236
|
"label": "Short Story",
|
|
89
237
|
"group": "prose",
|
|
90
|
-
"hierarchy": {
|
|
238
|
+
"hierarchy": {
|
|
239
|
+
"top": null,
|
|
240
|
+
"mid": "section",
|
|
241
|
+
"atomic": "beat"
|
|
242
|
+
},
|
|
91
243
|
"command_unit": "section",
|
|
92
|
-
"word_count_range": [
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
"
|
|
244
|
+
"word_count_range": [
|
|
245
|
+
1000,
|
|
246
|
+
7500
|
|
247
|
+
],
|
|
248
|
+
"page_range": [
|
|
249
|
+
4,
|
|
250
|
+
30
|
|
251
|
+
],
|
|
252
|
+
"unit_count_range": [
|
|
253
|
+
1,
|
|
254
|
+
5
|
|
255
|
+
],
|
|
256
|
+
"unit_word_range": [
|
|
257
|
+
500,
|
|
258
|
+
2500
|
|
259
|
+
],
|
|
260
|
+
"unit_page_range": [
|
|
261
|
+
2,
|
|
262
|
+
10
|
|
263
|
+
]
|
|
97
264
|
},
|
|
98
265
|
"flash_fiction": {
|
|
99
266
|
"label": "Flash Fiction",
|
|
100
267
|
"group": "prose",
|
|
101
|
-
"hierarchy": {
|
|
268
|
+
"hierarchy": {
|
|
269
|
+
"top": null,
|
|
270
|
+
"mid": null,
|
|
271
|
+
"atomic": "beat"
|
|
272
|
+
},
|
|
102
273
|
"command_unit": "beat",
|
|
103
|
-
"word_count_range": [
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"
|
|
274
|
+
"word_count_range": [
|
|
275
|
+
100,
|
|
276
|
+
1000
|
|
277
|
+
],
|
|
278
|
+
"page_range": [
|
|
279
|
+
1,
|
|
280
|
+
4
|
|
281
|
+
],
|
|
282
|
+
"unit_count_range": [
|
|
283
|
+
1,
|
|
284
|
+
3
|
|
285
|
+
],
|
|
286
|
+
"unit_word_range": [
|
|
287
|
+
100,
|
|
288
|
+
500
|
|
289
|
+
],
|
|
290
|
+
"unit_page_range": [
|
|
291
|
+
1,
|
|
292
|
+
2
|
|
293
|
+
]
|
|
108
294
|
},
|
|
109
295
|
"memoir": {
|
|
110
296
|
"label": "Memoir",
|
|
111
297
|
"group": "prose",
|
|
112
|
-
"hierarchy": {
|
|
298
|
+
"hierarchy": {
|
|
299
|
+
"top": "part",
|
|
300
|
+
"mid": "chapter",
|
|
301
|
+
"atomic": "vignette"
|
|
302
|
+
},
|
|
113
303
|
"command_unit": "chapter",
|
|
114
|
-
"word_count_range": [
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"
|
|
304
|
+
"word_count_range": [
|
|
305
|
+
60000,
|
|
306
|
+
90000
|
|
307
|
+
],
|
|
308
|
+
"page_range": [
|
|
309
|
+
240,
|
|
310
|
+
360
|
|
311
|
+
],
|
|
312
|
+
"unit_count_range": [
|
|
313
|
+
15,
|
|
314
|
+
30
|
|
315
|
+
],
|
|
316
|
+
"unit_word_range": [
|
|
317
|
+
2500,
|
|
318
|
+
5000
|
|
319
|
+
],
|
|
320
|
+
"unit_page_range": [
|
|
321
|
+
10,
|
|
322
|
+
20
|
|
323
|
+
]
|
|
119
324
|
},
|
|
120
325
|
"creative_nonfiction": {
|
|
121
326
|
"label": "Creative Nonfiction",
|
|
122
327
|
"group": "prose",
|
|
123
|
-
"hierarchy": {
|
|
328
|
+
"hierarchy": {
|
|
329
|
+
"top": "part",
|
|
330
|
+
"mid": "chapter",
|
|
331
|
+
"atomic": "scene"
|
|
332
|
+
},
|
|
124
333
|
"command_unit": "chapter",
|
|
125
|
-
"word_count_range": [
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"
|
|
334
|
+
"word_count_range": [
|
|
335
|
+
50000,
|
|
336
|
+
90000
|
|
337
|
+
],
|
|
338
|
+
"page_range": [
|
|
339
|
+
200,
|
|
340
|
+
360
|
|
341
|
+
],
|
|
342
|
+
"unit_count_range": [
|
|
343
|
+
12,
|
|
344
|
+
25
|
|
345
|
+
],
|
|
346
|
+
"unit_word_range": [
|
|
347
|
+
2500,
|
|
348
|
+
5000
|
|
349
|
+
],
|
|
350
|
+
"unit_page_range": [
|
|
351
|
+
10,
|
|
352
|
+
20
|
|
353
|
+
]
|
|
130
354
|
},
|
|
131
355
|
"biography": {
|
|
132
356
|
"label": "Biography",
|
|
133
357
|
"group": "prose",
|
|
134
|
-
"hierarchy": {
|
|
358
|
+
"hierarchy": {
|
|
359
|
+
"top": "part",
|
|
360
|
+
"mid": "chapter",
|
|
361
|
+
"atomic": "scene"
|
|
362
|
+
},
|
|
135
363
|
"command_unit": "chapter",
|
|
136
|
-
"word_count_range": [
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
"
|
|
364
|
+
"word_count_range": [
|
|
365
|
+
70000,
|
|
366
|
+
120000
|
|
367
|
+
],
|
|
368
|
+
"page_range": [
|
|
369
|
+
280,
|
|
370
|
+
480
|
|
371
|
+
],
|
|
372
|
+
"unit_count_range": [
|
|
373
|
+
15,
|
|
374
|
+
35
|
|
375
|
+
],
|
|
376
|
+
"unit_word_range": [
|
|
377
|
+
3000,
|
|
378
|
+
5000
|
|
379
|
+
],
|
|
380
|
+
"unit_page_range": [
|
|
381
|
+
12,
|
|
382
|
+
20
|
|
383
|
+
]
|
|
141
384
|
},
|
|
142
385
|
"essay": {
|
|
143
386
|
"label": "Essay",
|
|
144
387
|
"group": "prose",
|
|
145
|
-
"hierarchy": {
|
|
388
|
+
"hierarchy": {
|
|
389
|
+
"top": null,
|
|
390
|
+
"mid": "section",
|
|
391
|
+
"atomic": "paragraph_block"
|
|
392
|
+
},
|
|
146
393
|
"command_unit": "section",
|
|
147
|
-
"word_count_range": [
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
"
|
|
394
|
+
"word_count_range": [
|
|
395
|
+
1500,
|
|
396
|
+
10000
|
|
397
|
+
],
|
|
398
|
+
"page_range": [
|
|
399
|
+
6,
|
|
400
|
+
40
|
|
401
|
+
],
|
|
402
|
+
"unit_count_range": [
|
|
403
|
+
3,
|
|
404
|
+
8
|
|
405
|
+
],
|
|
406
|
+
"unit_word_range": [
|
|
407
|
+
500,
|
|
408
|
+
2000
|
|
409
|
+
],
|
|
410
|
+
"unit_page_range": [
|
|
411
|
+
2,
|
|
412
|
+
8
|
|
413
|
+
]
|
|
152
414
|
},
|
|
153
415
|
"essay_collection": {
|
|
154
416
|
"label": "Essay Collection",
|
|
155
417
|
"group": "prose",
|
|
156
|
-
"hierarchy": {
|
|
418
|
+
"hierarchy": {
|
|
419
|
+
"top": "part",
|
|
420
|
+
"mid": null,
|
|
421
|
+
"atomic": "essay"
|
|
422
|
+
},
|
|
157
423
|
"command_unit": "essay",
|
|
158
|
-
"word_count_range": [
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"
|
|
424
|
+
"word_count_range": [
|
|
425
|
+
40000,
|
|
426
|
+
80000
|
|
427
|
+
],
|
|
428
|
+
"page_range": [
|
|
429
|
+
160,
|
|
430
|
+
320
|
|
431
|
+
],
|
|
432
|
+
"unit_count_range": [
|
|
433
|
+
10,
|
|
434
|
+
25
|
|
435
|
+
],
|
|
436
|
+
"unit_word_range": [
|
|
437
|
+
2000,
|
|
438
|
+
6000
|
|
439
|
+
],
|
|
440
|
+
"unit_page_range": [
|
|
441
|
+
8,
|
|
442
|
+
24
|
|
443
|
+
]
|
|
163
444
|
},
|
|
164
445
|
"screenplay": {
|
|
165
446
|
"label": "Screenplay",
|
|
166
447
|
"group": "script",
|
|
167
|
-
"hierarchy": {
|
|
448
|
+
"hierarchy": {
|
|
449
|
+
"top": "act",
|
|
450
|
+
"mid": "sequence",
|
|
451
|
+
"atomic": "scene"
|
|
452
|
+
},
|
|
168
453
|
"command_unit": "act",
|
|
169
|
-
"word_count_range": [
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"
|
|
454
|
+
"word_count_range": [
|
|
455
|
+
7500,
|
|
456
|
+
12500
|
|
457
|
+
],
|
|
458
|
+
"page_range": [
|
|
459
|
+
90,
|
|
460
|
+
120
|
|
461
|
+
],
|
|
462
|
+
"unit_count_range": [
|
|
463
|
+
3,
|
|
464
|
+
5
|
|
465
|
+
],
|
|
466
|
+
"unit_word_range": [
|
|
467
|
+
2000,
|
|
468
|
+
4000
|
|
469
|
+
],
|
|
470
|
+
"unit_page_range": [
|
|
471
|
+
25,
|
|
472
|
+
35
|
|
473
|
+
]
|
|
174
474
|
},
|
|
175
475
|
"stage_play": {
|
|
176
476
|
"label": "Stage Play",
|
|
177
477
|
"group": "script",
|
|
178
|
-
"hierarchy": {
|
|
478
|
+
"hierarchy": {
|
|
479
|
+
"top": "act",
|
|
480
|
+
"mid": "scene",
|
|
481
|
+
"atomic": "beat"
|
|
482
|
+
},
|
|
179
483
|
"command_unit": "act",
|
|
180
|
-
"word_count_range": [
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
484
|
+
"word_count_range": [
|
|
485
|
+
10000,
|
|
486
|
+
15000
|
|
487
|
+
],
|
|
488
|
+
"page_range": [
|
|
489
|
+
60,
|
|
490
|
+
120
|
|
491
|
+
],
|
|
492
|
+
"unit_count_range": [
|
|
493
|
+
1,
|
|
494
|
+
5
|
|
495
|
+
],
|
|
496
|
+
"unit_word_range": [
|
|
497
|
+
3000,
|
|
498
|
+
7000
|
|
499
|
+
],
|
|
500
|
+
"unit_page_range": [
|
|
501
|
+
15,
|
|
502
|
+
40
|
|
503
|
+
]
|
|
185
504
|
},
|
|
186
505
|
"tv_pilot": {
|
|
187
506
|
"label": "TV Pilot",
|
|
188
507
|
"group": "script",
|
|
189
|
-
"hierarchy": {
|
|
508
|
+
"hierarchy": {
|
|
509
|
+
"top": "act",
|
|
510
|
+
"mid": "scene",
|
|
511
|
+
"atomic": "beat"
|
|
512
|
+
},
|
|
190
513
|
"command_unit": "act",
|
|
191
|
-
"word_count_range": [
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
"
|
|
514
|
+
"word_count_range": [
|
|
515
|
+
5000,
|
|
516
|
+
10000
|
|
517
|
+
],
|
|
518
|
+
"page_range": [
|
|
519
|
+
30,
|
|
520
|
+
60
|
|
521
|
+
],
|
|
522
|
+
"unit_count_range": [
|
|
523
|
+
4,
|
|
524
|
+
6
|
|
525
|
+
],
|
|
526
|
+
"unit_word_range": [
|
|
527
|
+
1000,
|
|
528
|
+
2500
|
|
529
|
+
],
|
|
530
|
+
"unit_page_range": [
|
|
531
|
+
6,
|
|
532
|
+
12
|
|
533
|
+
]
|
|
196
534
|
},
|
|
197
535
|
"tv_series_bible": {
|
|
198
536
|
"label": "TV Series Bible",
|
|
199
537
|
"group": "script",
|
|
200
|
-
"hierarchy": {
|
|
538
|
+
"hierarchy": {
|
|
539
|
+
"top": "season",
|
|
540
|
+
"mid": "episode",
|
|
541
|
+
"atomic": "scene"
|
|
542
|
+
},
|
|
201
543
|
"command_unit": "episode",
|
|
202
|
-
"word_count_range": [
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
"
|
|
544
|
+
"word_count_range": [
|
|
545
|
+
15000,
|
|
546
|
+
40000
|
|
547
|
+
],
|
|
548
|
+
"page_range": [
|
|
549
|
+
60,
|
|
550
|
+
160
|
|
551
|
+
],
|
|
552
|
+
"unit_count_range": [
|
|
553
|
+
6,
|
|
554
|
+
13
|
|
555
|
+
],
|
|
556
|
+
"unit_word_range": [
|
|
557
|
+
1500,
|
|
558
|
+
3000
|
|
559
|
+
],
|
|
560
|
+
"unit_page_range": [
|
|
561
|
+
6,
|
|
562
|
+
12
|
|
563
|
+
]
|
|
207
564
|
},
|
|
208
565
|
"audio_drama": {
|
|
209
566
|
"label": "Audio Drama / Podcast Script",
|
|
210
567
|
"group": "script",
|
|
211
|
-
"hierarchy": {
|
|
568
|
+
"hierarchy": {
|
|
569
|
+
"top": "season",
|
|
570
|
+
"mid": "episode",
|
|
571
|
+
"atomic": "scene"
|
|
572
|
+
},
|
|
212
573
|
"command_unit": "episode",
|
|
213
|
-
"word_count_range": [
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
"
|
|
574
|
+
"word_count_range": [
|
|
575
|
+
3000,
|
|
576
|
+
8000
|
|
577
|
+
],
|
|
578
|
+
"page_range": [
|
|
579
|
+
12,
|
|
580
|
+
32
|
|
581
|
+
],
|
|
582
|
+
"unit_count_range": [
|
|
583
|
+
1,
|
|
584
|
+
10
|
|
585
|
+
],
|
|
586
|
+
"unit_word_range": [
|
|
587
|
+
2000,
|
|
588
|
+
5000
|
|
589
|
+
],
|
|
590
|
+
"unit_page_range": [
|
|
591
|
+
8,
|
|
592
|
+
20
|
|
593
|
+
]
|
|
218
594
|
},
|
|
219
595
|
"libretto": {
|
|
220
596
|
"label": "Libretto / Musical",
|
|
221
597
|
"group": "script",
|
|
222
|
-
"hierarchy": {
|
|
598
|
+
"hierarchy": {
|
|
599
|
+
"top": "act",
|
|
600
|
+
"mid": "scene",
|
|
601
|
+
"atomic": "number"
|
|
602
|
+
},
|
|
223
603
|
"command_unit": "act",
|
|
224
|
-
"word_count_range": [
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
"
|
|
604
|
+
"word_count_range": [
|
|
605
|
+
5000,
|
|
606
|
+
12000
|
|
607
|
+
],
|
|
608
|
+
"page_range": [
|
|
609
|
+
20,
|
|
610
|
+
48
|
|
611
|
+
],
|
|
612
|
+
"unit_count_range": [
|
|
613
|
+
2,
|
|
614
|
+
3
|
|
615
|
+
],
|
|
616
|
+
"unit_word_range": [
|
|
617
|
+
2000,
|
|
618
|
+
5000
|
|
619
|
+
],
|
|
620
|
+
"unit_page_range": [
|
|
621
|
+
8,
|
|
622
|
+
20
|
|
623
|
+
]
|
|
229
624
|
},
|
|
230
625
|
"research_paper": {
|
|
231
626
|
"label": "Research Paper",
|
|
232
627
|
"group": "academic",
|
|
233
|
-
"hierarchy": {
|
|
628
|
+
"hierarchy": {
|
|
629
|
+
"top": null,
|
|
630
|
+
"mid": "section",
|
|
631
|
+
"atomic": "subsection"
|
|
632
|
+
},
|
|
234
633
|
"command_unit": "section",
|
|
235
|
-
"word_count_range": [
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
"
|
|
634
|
+
"word_count_range": [
|
|
635
|
+
5000,
|
|
636
|
+
15000
|
|
637
|
+
],
|
|
638
|
+
"page_range": [
|
|
639
|
+
20,
|
|
640
|
+
60
|
|
641
|
+
],
|
|
642
|
+
"unit_count_range": [
|
|
643
|
+
4,
|
|
644
|
+
8
|
|
645
|
+
],
|
|
646
|
+
"unit_word_range": [
|
|
647
|
+
1000,
|
|
648
|
+
3000
|
|
649
|
+
],
|
|
650
|
+
"unit_page_range": [
|
|
651
|
+
4,
|
|
652
|
+
12
|
|
653
|
+
]
|
|
240
654
|
},
|
|
241
655
|
"thesis": {
|
|
242
656
|
"label": "Thesis / Dissertation",
|
|
243
657
|
"group": "academic",
|
|
244
|
-
"hierarchy": {
|
|
658
|
+
"hierarchy": {
|
|
659
|
+
"top": "part",
|
|
660
|
+
"mid": "chapter",
|
|
661
|
+
"atomic": "section"
|
|
662
|
+
},
|
|
245
663
|
"command_unit": "chapter",
|
|
246
|
-
"word_count_range": [
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
"
|
|
664
|
+
"word_count_range": [
|
|
665
|
+
40000,
|
|
666
|
+
100000
|
|
667
|
+
],
|
|
668
|
+
"page_range": [
|
|
669
|
+
160,
|
|
670
|
+
400
|
|
671
|
+
],
|
|
672
|
+
"unit_count_range": [
|
|
673
|
+
5,
|
|
674
|
+
10
|
|
675
|
+
],
|
|
676
|
+
"unit_word_range": [
|
|
677
|
+
5000,
|
|
678
|
+
15000
|
|
679
|
+
],
|
|
680
|
+
"unit_page_range": [
|
|
681
|
+
20,
|
|
682
|
+
60
|
|
683
|
+
]
|
|
251
684
|
},
|
|
252
685
|
"journal_article": {
|
|
253
686
|
"label": "Journal Article",
|
|
254
687
|
"group": "academic",
|
|
255
|
-
"hierarchy": {
|
|
688
|
+
"hierarchy": {
|
|
689
|
+
"top": null,
|
|
690
|
+
"mid": "section",
|
|
691
|
+
"atomic": "subsection"
|
|
692
|
+
},
|
|
256
693
|
"command_unit": "section",
|
|
257
|
-
"word_count_range": [
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
"
|
|
694
|
+
"word_count_range": [
|
|
695
|
+
3000,
|
|
696
|
+
8000
|
|
697
|
+
],
|
|
698
|
+
"page_range": [
|
|
699
|
+
12,
|
|
700
|
+
32
|
|
701
|
+
],
|
|
702
|
+
"unit_count_range": [
|
|
703
|
+
4,
|
|
704
|
+
7
|
|
705
|
+
],
|
|
706
|
+
"unit_word_range": [
|
|
707
|
+
500,
|
|
708
|
+
2000
|
|
709
|
+
],
|
|
710
|
+
"unit_page_range": [
|
|
711
|
+
2,
|
|
712
|
+
8
|
|
713
|
+
]
|
|
262
714
|
},
|
|
263
715
|
"white_paper": {
|
|
264
716
|
"label": "White Paper",
|
|
265
717
|
"group": "academic",
|
|
266
|
-
"hierarchy": {
|
|
718
|
+
"hierarchy": {
|
|
719
|
+
"top": null,
|
|
720
|
+
"mid": "section",
|
|
721
|
+
"atomic": "subsection"
|
|
722
|
+
},
|
|
267
723
|
"command_unit": "section",
|
|
268
|
-
"word_count_range": [
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
"
|
|
724
|
+
"word_count_range": [
|
|
725
|
+
3000,
|
|
726
|
+
10000
|
|
727
|
+
],
|
|
728
|
+
"page_range": [
|
|
729
|
+
12,
|
|
730
|
+
40
|
|
731
|
+
],
|
|
732
|
+
"unit_count_range": [
|
|
733
|
+
4,
|
|
734
|
+
8
|
|
735
|
+
],
|
|
736
|
+
"unit_word_range": [
|
|
737
|
+
500,
|
|
738
|
+
2000
|
|
739
|
+
],
|
|
740
|
+
"unit_page_range": [
|
|
741
|
+
2,
|
|
742
|
+
8
|
|
743
|
+
]
|
|
273
744
|
},
|
|
274
745
|
"literature_review": {
|
|
275
746
|
"label": "Literature Review",
|
|
276
747
|
"group": "academic",
|
|
277
|
-
"hierarchy": {
|
|
748
|
+
"hierarchy": {
|
|
749
|
+
"top": null,
|
|
750
|
+
"mid": "section",
|
|
751
|
+
"atomic": "subsection"
|
|
752
|
+
},
|
|
278
753
|
"command_unit": "section",
|
|
279
|
-
"word_count_range": [
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
"
|
|
754
|
+
"word_count_range": [
|
|
755
|
+
5000,
|
|
756
|
+
15000
|
|
757
|
+
],
|
|
758
|
+
"page_range": [
|
|
759
|
+
20,
|
|
760
|
+
60
|
|
761
|
+
],
|
|
762
|
+
"unit_count_range": [
|
|
763
|
+
4,
|
|
764
|
+
8
|
|
765
|
+
],
|
|
766
|
+
"unit_word_range": [
|
|
767
|
+
1000,
|
|
768
|
+
3000
|
|
769
|
+
],
|
|
770
|
+
"unit_page_range": [
|
|
771
|
+
4,
|
|
772
|
+
12
|
|
773
|
+
]
|
|
284
774
|
},
|
|
285
775
|
"monograph": {
|
|
286
776
|
"label": "Monograph",
|
|
287
777
|
"group": "academic",
|
|
288
|
-
"hierarchy": {
|
|
778
|
+
"hierarchy": {
|
|
779
|
+
"top": "part",
|
|
780
|
+
"mid": "chapter",
|
|
781
|
+
"atomic": "section"
|
|
782
|
+
},
|
|
289
783
|
"command_unit": "chapter",
|
|
290
|
-
"word_count_range": [
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
"
|
|
784
|
+
"word_count_range": [
|
|
785
|
+
50000,
|
|
786
|
+
100000
|
|
787
|
+
],
|
|
788
|
+
"page_range": [
|
|
789
|
+
200,
|
|
790
|
+
400
|
|
791
|
+
],
|
|
792
|
+
"unit_count_range": [
|
|
793
|
+
8,
|
|
794
|
+
15
|
|
795
|
+
],
|
|
796
|
+
"unit_word_range": [
|
|
797
|
+
4000,
|
|
798
|
+
8000
|
|
799
|
+
],
|
|
800
|
+
"unit_page_range": [
|
|
801
|
+
16,
|
|
802
|
+
32
|
|
803
|
+
]
|
|
295
804
|
},
|
|
296
805
|
"technical_guide": {
|
|
297
806
|
"label": "Technical Guide / User Guide",
|
|
298
807
|
"group": "technical",
|
|
299
|
-
"hierarchy": {
|
|
808
|
+
"hierarchy": {
|
|
809
|
+
"top": null,
|
|
810
|
+
"mid": "section",
|
|
811
|
+
"atomic": "procedure"
|
|
812
|
+
},
|
|
300
813
|
"command_unit": "section",
|
|
301
|
-
"word_count_range": [
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
"
|
|
814
|
+
"word_count_range": [
|
|
815
|
+
3000,
|
|
816
|
+
25000
|
|
817
|
+
],
|
|
818
|
+
"page_range": [
|
|
819
|
+
12,
|
|
820
|
+
100
|
|
821
|
+
],
|
|
822
|
+
"unit_count_range": [
|
|
823
|
+
4,
|
|
824
|
+
12
|
|
825
|
+
],
|
|
826
|
+
"unit_word_range": [
|
|
827
|
+
500,
|
|
828
|
+
2500
|
|
829
|
+
],
|
|
830
|
+
"unit_page_range": [
|
|
831
|
+
2,
|
|
832
|
+
10
|
|
833
|
+
],
|
|
306
834
|
"config_defaults": {
|
|
307
835
|
"audience_level": "mixed",
|
|
308
836
|
"review_mode": "accuracy_first"
|
|
@@ -311,13 +839,32 @@
|
|
|
311
839
|
"runbook": {
|
|
312
840
|
"label": "Runbook / SOP",
|
|
313
841
|
"group": "technical",
|
|
314
|
-
"hierarchy": {
|
|
842
|
+
"hierarchy": {
|
|
843
|
+
"top": null,
|
|
844
|
+
"mid": "procedure",
|
|
845
|
+
"atomic": "step"
|
|
846
|
+
},
|
|
315
847
|
"command_unit": "procedure",
|
|
316
|
-
"word_count_range": [
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
"
|
|
848
|
+
"word_count_range": [
|
|
849
|
+
1500,
|
|
850
|
+
12000
|
|
851
|
+
],
|
|
852
|
+
"page_range": [
|
|
853
|
+
6,
|
|
854
|
+
48
|
|
855
|
+
],
|
|
856
|
+
"unit_count_range": [
|
|
857
|
+
3,
|
|
858
|
+
10
|
|
859
|
+
],
|
|
860
|
+
"unit_word_range": [
|
|
861
|
+
300,
|
|
862
|
+
1500
|
|
863
|
+
],
|
|
864
|
+
"unit_page_range": [
|
|
865
|
+
1,
|
|
866
|
+
6
|
|
867
|
+
],
|
|
321
868
|
"config_defaults": {
|
|
322
869
|
"audience_level": "operator",
|
|
323
870
|
"review_mode": "accuracy_first"
|
|
@@ -326,13 +873,32 @@
|
|
|
326
873
|
"api_reference": {
|
|
327
874
|
"label": "API or CLI Reference",
|
|
328
875
|
"group": "technical",
|
|
329
|
-
"hierarchy": {
|
|
876
|
+
"hierarchy": {
|
|
877
|
+
"top": null,
|
|
878
|
+
"mid": "resource",
|
|
879
|
+
"atomic": "endpoint"
|
|
880
|
+
},
|
|
330
881
|
"command_unit": "resource",
|
|
331
|
-
"word_count_range": [
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
"
|
|
882
|
+
"word_count_range": [
|
|
883
|
+
2000,
|
|
884
|
+
30000
|
|
885
|
+
],
|
|
886
|
+
"page_range": [
|
|
887
|
+
8,
|
|
888
|
+
120
|
|
889
|
+
],
|
|
890
|
+
"unit_count_range": [
|
|
891
|
+
5,
|
|
892
|
+
40
|
|
893
|
+
],
|
|
894
|
+
"unit_word_range": [
|
|
895
|
+
150,
|
|
896
|
+
1000
|
|
897
|
+
],
|
|
898
|
+
"unit_page_range": [
|
|
899
|
+
1,
|
|
900
|
+
4
|
|
901
|
+
],
|
|
336
902
|
"config_defaults": {
|
|
337
903
|
"audience_level": "developer",
|
|
338
904
|
"review_mode": "accuracy_first"
|
|
@@ -341,13 +907,32 @@
|
|
|
341
907
|
"design_spec": {
|
|
342
908
|
"label": "Design Spec / Architecture Doc",
|
|
343
909
|
"group": "technical",
|
|
344
|
-
"hierarchy": {
|
|
910
|
+
"hierarchy": {
|
|
911
|
+
"top": "system",
|
|
912
|
+
"mid": "section",
|
|
913
|
+
"atomic": "decision"
|
|
914
|
+
},
|
|
345
915
|
"command_unit": "section",
|
|
346
|
-
"word_count_range": [
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
"
|
|
916
|
+
"word_count_range": [
|
|
917
|
+
2000,
|
|
918
|
+
15000
|
|
919
|
+
],
|
|
920
|
+
"page_range": [
|
|
921
|
+
8,
|
|
922
|
+
60
|
|
923
|
+
],
|
|
924
|
+
"unit_count_range": [
|
|
925
|
+
4,
|
|
926
|
+
12
|
|
927
|
+
],
|
|
928
|
+
"unit_word_range": [
|
|
929
|
+
500,
|
|
930
|
+
2000
|
|
931
|
+
],
|
|
932
|
+
"unit_page_range": [
|
|
933
|
+
2,
|
|
934
|
+
8
|
|
935
|
+
],
|
|
351
936
|
"config_defaults": {
|
|
352
937
|
"audience_level": "mixed",
|
|
353
938
|
"review_mode": "accuracy_first"
|
|
@@ -356,1077 +941,2795 @@
|
|
|
356
941
|
"poetry_collection": {
|
|
357
942
|
"label": "Poetry Collection",
|
|
358
943
|
"group": "poetry",
|
|
359
|
-
"hierarchy": {
|
|
944
|
+
"hierarchy": {
|
|
945
|
+
"top": "section",
|
|
946
|
+
"mid": null,
|
|
947
|
+
"atomic": "poem"
|
|
948
|
+
},
|
|
360
949
|
"command_unit": "section",
|
|
361
|
-
"word_count_range": [
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
"
|
|
950
|
+
"word_count_range": [
|
|
951
|
+
5000,
|
|
952
|
+
15000
|
|
953
|
+
],
|
|
954
|
+
"page_range": [
|
|
955
|
+
48,
|
|
956
|
+
120
|
|
957
|
+
],
|
|
958
|
+
"unit_count_range": [
|
|
959
|
+
3,
|
|
960
|
+
8
|
|
961
|
+
],
|
|
962
|
+
"unit_word_range": [
|
|
963
|
+
1000,
|
|
964
|
+
3000
|
|
965
|
+
],
|
|
966
|
+
"unit_page_range": [
|
|
967
|
+
8,
|
|
968
|
+
20
|
|
969
|
+
]
|
|
366
970
|
},
|
|
367
971
|
"single_poem": {
|
|
368
972
|
"label": "Single Poem",
|
|
369
973
|
"group": "poetry",
|
|
370
|
-
"hierarchy": {
|
|
974
|
+
"hierarchy": {
|
|
975
|
+
"top": null,
|
|
976
|
+
"mid": "stanza",
|
|
977
|
+
"atomic": "line"
|
|
978
|
+
},
|
|
371
979
|
"command_unit": "stanza",
|
|
372
|
-
"word_count_range": [
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
"
|
|
980
|
+
"word_count_range": [
|
|
981
|
+
20,
|
|
982
|
+
2000
|
|
983
|
+
],
|
|
984
|
+
"page_range": [
|
|
985
|
+
1,
|
|
986
|
+
8
|
|
987
|
+
],
|
|
988
|
+
"unit_count_range": [
|
|
989
|
+
1,
|
|
990
|
+
20
|
|
991
|
+
],
|
|
992
|
+
"unit_word_range": [
|
|
993
|
+
10,
|
|
994
|
+
200
|
|
995
|
+
],
|
|
996
|
+
"unit_page_range": [
|
|
997
|
+
1,
|
|
998
|
+
1
|
|
999
|
+
]
|
|
377
1000
|
},
|
|
378
1001
|
"song_lyric": {
|
|
379
1002
|
"label": "Lyric / Song",
|
|
380
1003
|
"group": "poetry",
|
|
381
|
-
"hierarchy": {
|
|
1004
|
+
"hierarchy": {
|
|
1005
|
+
"top": null,
|
|
1006
|
+
"mid": "section",
|
|
1007
|
+
"atomic": "line"
|
|
1008
|
+
},
|
|
382
1009
|
"command_unit": "section",
|
|
383
|
-
"word_count_range": [
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
"
|
|
1010
|
+
"word_count_range": [
|
|
1011
|
+
100,
|
|
1012
|
+
600
|
|
1013
|
+
],
|
|
1014
|
+
"page_range": [
|
|
1015
|
+
1,
|
|
1016
|
+
3
|
|
1017
|
+
],
|
|
1018
|
+
"unit_count_range": [
|
|
1019
|
+
3,
|
|
1020
|
+
6
|
|
1021
|
+
],
|
|
1022
|
+
"unit_word_range": [
|
|
1023
|
+
20,
|
|
1024
|
+
150
|
|
1025
|
+
],
|
|
1026
|
+
"unit_page_range": [
|
|
1027
|
+
1,
|
|
1028
|
+
1
|
|
1029
|
+
]
|
|
388
1030
|
},
|
|
389
1031
|
"comic": {
|
|
390
1032
|
"label": "Comic / Graphic Novel",
|
|
391
1033
|
"group": "visual",
|
|
392
|
-
"hierarchy": {
|
|
1034
|
+
"hierarchy": {
|
|
1035
|
+
"top": "volume",
|
|
1036
|
+
"mid": "issue",
|
|
1037
|
+
"atomic": "panel"
|
|
1038
|
+
},
|
|
393
1039
|
"command_unit": "issue",
|
|
394
|
-
"word_count_range": [
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
"
|
|
1040
|
+
"word_count_range": [
|
|
1041
|
+
2000,
|
|
1042
|
+
5000
|
|
1043
|
+
],
|
|
1044
|
+
"page_range": [
|
|
1045
|
+
22,
|
|
1046
|
+
32
|
|
1047
|
+
],
|
|
1048
|
+
"unit_count_range": [
|
|
1049
|
+
1,
|
|
1050
|
+
6
|
|
1051
|
+
],
|
|
1052
|
+
"unit_word_range": [
|
|
1053
|
+
500,
|
|
1054
|
+
1500
|
|
1055
|
+
],
|
|
1056
|
+
"unit_page_range": [
|
|
1057
|
+
22,
|
|
1058
|
+
32
|
|
1059
|
+
]
|
|
399
1060
|
},
|
|
400
1061
|
"graphic_novel": {
|
|
401
1062
|
"label": "Graphic Novel",
|
|
402
1063
|
"group": "visual",
|
|
403
|
-
"hierarchy": {
|
|
1064
|
+
"hierarchy": {
|
|
1065
|
+
"top": "volume",
|
|
1066
|
+
"mid": "chapter",
|
|
1067
|
+
"atomic": "panel"
|
|
1068
|
+
},
|
|
404
1069
|
"command_unit": "chapter",
|
|
405
|
-
"word_count_range": [
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
"
|
|
1070
|
+
"word_count_range": [
|
|
1071
|
+
5000,
|
|
1072
|
+
20000
|
|
1073
|
+
],
|
|
1074
|
+
"page_range": [
|
|
1075
|
+
80,
|
|
1076
|
+
200
|
|
1077
|
+
],
|
|
1078
|
+
"unit_count_range": [
|
|
1079
|
+
5,
|
|
1080
|
+
12
|
|
1081
|
+
],
|
|
1082
|
+
"unit_word_range": [
|
|
1083
|
+
500,
|
|
1084
|
+
2500
|
|
1085
|
+
],
|
|
1086
|
+
"unit_page_range": [
|
|
1087
|
+
10,
|
|
1088
|
+
25
|
|
1089
|
+
]
|
|
410
1090
|
},
|
|
411
1091
|
"childrens_book": {
|
|
412
1092
|
"label": "Children's Book",
|
|
413
1093
|
"group": "visual",
|
|
414
|
-
"hierarchy": {
|
|
1094
|
+
"hierarchy": {
|
|
1095
|
+
"top": null,
|
|
1096
|
+
"mid": "spread",
|
|
1097
|
+
"atomic": "page"
|
|
1098
|
+
},
|
|
415
1099
|
"command_unit": "spread",
|
|
416
|
-
"word_count_range": [
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
"
|
|
1100
|
+
"word_count_range": [
|
|
1101
|
+
500,
|
|
1102
|
+
5000
|
|
1103
|
+
],
|
|
1104
|
+
"page_range": [
|
|
1105
|
+
24,
|
|
1106
|
+
48
|
|
1107
|
+
],
|
|
1108
|
+
"unit_count_range": [
|
|
1109
|
+
12,
|
|
1110
|
+
24
|
|
1111
|
+
],
|
|
1112
|
+
"unit_word_range": [
|
|
1113
|
+
20,
|
|
1114
|
+
200
|
|
1115
|
+
],
|
|
1116
|
+
"unit_page_range": [
|
|
1117
|
+
2,
|
|
1118
|
+
2
|
|
1119
|
+
]
|
|
421
1120
|
},
|
|
422
1121
|
"picture_book": {
|
|
423
1122
|
"label": "Picture Book",
|
|
424
1123
|
"group": "visual",
|
|
425
|
-
"hierarchy": {
|
|
1124
|
+
"hierarchy": {
|
|
1125
|
+
"top": null,
|
|
1126
|
+
"mid": "spread",
|
|
1127
|
+
"atomic": "illustration_text"
|
|
1128
|
+
},
|
|
426
1129
|
"command_unit": "spread",
|
|
427
|
-
"word_count_range": [
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
"
|
|
1130
|
+
"word_count_range": [
|
|
1131
|
+
200,
|
|
1132
|
+
1000
|
|
1133
|
+
],
|
|
1134
|
+
"page_range": [
|
|
1135
|
+
24,
|
|
1136
|
+
40
|
|
1137
|
+
],
|
|
1138
|
+
"unit_count_range": [
|
|
1139
|
+
12,
|
|
1140
|
+
20
|
|
1141
|
+
],
|
|
1142
|
+
"unit_word_range": [
|
|
1143
|
+
10,
|
|
1144
|
+
60
|
|
1145
|
+
],
|
|
1146
|
+
"unit_page_range": [
|
|
1147
|
+
2,
|
|
1148
|
+
2
|
|
1149
|
+
]
|
|
432
1150
|
},
|
|
433
1151
|
"interactive_fiction": {
|
|
434
1152
|
"label": "Interactive Fiction",
|
|
435
1153
|
"group": "interactive",
|
|
436
|
-
"hierarchy": {
|
|
1154
|
+
"hierarchy": {
|
|
1155
|
+
"top": null,
|
|
1156
|
+
"mid": "node",
|
|
1157
|
+
"atomic": "choice_branch"
|
|
1158
|
+
},
|
|
437
1159
|
"command_unit": "node",
|
|
438
|
-
"word_count_range": [
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
"
|
|
1160
|
+
"word_count_range": [
|
|
1161
|
+
20000,
|
|
1162
|
+
100000
|
|
1163
|
+
],
|
|
1164
|
+
"page_range": [
|
|
1165
|
+
80,
|
|
1166
|
+
400
|
|
1167
|
+
],
|
|
1168
|
+
"unit_count_range": [
|
|
1169
|
+
20,
|
|
1170
|
+
100
|
|
1171
|
+
],
|
|
1172
|
+
"unit_word_range": [
|
|
1173
|
+
500,
|
|
1174
|
+
2000
|
|
1175
|
+
],
|
|
1176
|
+
"unit_page_range": [
|
|
1177
|
+
2,
|
|
1178
|
+
8
|
|
1179
|
+
]
|
|
443
1180
|
},
|
|
444
1181
|
"game_narrative": {
|
|
445
1182
|
"label": "Game Narrative",
|
|
446
1183
|
"group": "interactive",
|
|
447
|
-
"hierarchy": {
|
|
1184
|
+
"hierarchy": {
|
|
1185
|
+
"top": "act",
|
|
1186
|
+
"mid": "quest",
|
|
1187
|
+
"atomic": "dialogue_tree"
|
|
1188
|
+
},
|
|
448
1189
|
"command_unit": "quest",
|
|
449
|
-
"word_count_range": [
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
"
|
|
1190
|
+
"word_count_range": [
|
|
1191
|
+
30000,
|
|
1192
|
+
150000
|
|
1193
|
+
],
|
|
1194
|
+
"page_range": [
|
|
1195
|
+
120,
|
|
1196
|
+
600
|
|
1197
|
+
],
|
|
1198
|
+
"unit_count_range": [
|
|
1199
|
+
10,
|
|
1200
|
+
40
|
|
1201
|
+
],
|
|
1202
|
+
"unit_word_range": [
|
|
1203
|
+
2000,
|
|
1204
|
+
5000
|
|
1205
|
+
],
|
|
1206
|
+
"unit_page_range": [
|
|
1207
|
+
8,
|
|
1208
|
+
20
|
|
1209
|
+
]
|
|
454
1210
|
},
|
|
455
1211
|
"speech": {
|
|
456
1212
|
"label": "Speech",
|
|
457
1213
|
"group": "speech_song",
|
|
458
|
-
"hierarchy": {
|
|
1214
|
+
"hierarchy": {
|
|
1215
|
+
"top": null,
|
|
1216
|
+
"mid": "section",
|
|
1217
|
+
"atomic": "beat"
|
|
1218
|
+
},
|
|
459
1219
|
"command_unit": "section",
|
|
460
|
-
"word_count_range": [
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
"
|
|
1220
|
+
"word_count_range": [
|
|
1221
|
+
500,
|
|
1222
|
+
5000
|
|
1223
|
+
],
|
|
1224
|
+
"page_range": [
|
|
1225
|
+
2,
|
|
1226
|
+
20
|
|
1227
|
+
],
|
|
1228
|
+
"unit_count_range": [
|
|
1229
|
+
3,
|
|
1230
|
+
6
|
|
1231
|
+
],
|
|
1232
|
+
"unit_word_range": [
|
|
1233
|
+
150,
|
|
1234
|
+
1000
|
|
1235
|
+
],
|
|
1236
|
+
"unit_page_range": [
|
|
1237
|
+
1,
|
|
1238
|
+
4
|
|
1239
|
+
]
|
|
465
1240
|
},
|
|
466
1241
|
"scripture_biblical": {
|
|
467
1242
|
"label": "Scripture (Biblical)",
|
|
468
1243
|
"group": "sacred",
|
|
469
|
-
"hierarchy": {
|
|
1244
|
+
"hierarchy": {
|
|
1245
|
+
"top": "testament",
|
|
1246
|
+
"mid": "book",
|
|
1247
|
+
"atomic": "verse"
|
|
1248
|
+
},
|
|
470
1249
|
"command_unit": "book",
|
|
471
|
-
"config_defaults": {
|
|
1250
|
+
"config_defaults": {
|
|
1251
|
+
"verse_numbering_system": "masoretic",
|
|
1252
|
+
"calendar_system": "gregorian"
|
|
1253
|
+
},
|
|
472
1254
|
"word_count_range": null,
|
|
473
1255
|
"page_range": null,
|
|
474
|
-
"unit_count_range": [
|
|
475
|
-
|
|
476
|
-
|
|
1256
|
+
"unit_count_range": [
|
|
1257
|
+
39,
|
|
1258
|
+
66
|
|
1259
|
+
],
|
|
1260
|
+
"unit_word_range": [
|
|
1261
|
+
1000,
|
|
1262
|
+
50000
|
|
1263
|
+
],
|
|
1264
|
+
"unit_page_range": [
|
|
1265
|
+
4,
|
|
1266
|
+
200
|
|
1267
|
+
],
|
|
477
1268
|
"_note": "Varies by scope -- full Bible vs single book. No meaningful total range."
|
|
478
1269
|
},
|
|
479
1270
|
"scripture_quranic": {
|
|
480
1271
|
"label": "Scripture (Quranic)",
|
|
481
1272
|
"group": "sacred",
|
|
482
|
-
"hierarchy": {
|
|
1273
|
+
"hierarchy": {
|
|
1274
|
+
"top": null,
|
|
1275
|
+
"mid": "surah",
|
|
1276
|
+
"atomic": "ayah"
|
|
1277
|
+
},
|
|
483
1278
|
"command_unit": "surah",
|
|
484
|
-
"config_defaults": {
|
|
1279
|
+
"config_defaults": {
|
|
1280
|
+
"verse_numbering_system": "quranic_hafs",
|
|
1281
|
+
"calendar_system": "hijri"
|
|
1282
|
+
},
|
|
485
1283
|
"word_count_range": null,
|
|
486
1284
|
"page_range": null,
|
|
487
|
-
"unit_count_range": [
|
|
488
|
-
|
|
489
|
-
|
|
1285
|
+
"unit_count_range": [
|
|
1286
|
+
1,
|
|
1287
|
+
114
|
|
1288
|
+
],
|
|
1289
|
+
"unit_word_range": [
|
|
1290
|
+
50,
|
|
1291
|
+
12000
|
|
1292
|
+
],
|
|
1293
|
+
"unit_page_range": [
|
|
1294
|
+
1,
|
|
1295
|
+
48
|
|
1296
|
+
],
|
|
490
1297
|
"_note": "Varies by scope -- full Quran vs single surah. No meaningful total range."
|
|
491
1298
|
},
|
|
492
1299
|
"scripture_torah": {
|
|
493
1300
|
"label": "Scripture (Torah)",
|
|
494
1301
|
"group": "sacred",
|
|
495
|
-
"hierarchy": {
|
|
1302
|
+
"hierarchy": {
|
|
1303
|
+
"top": "chumash",
|
|
1304
|
+
"mid": "parashah",
|
|
1305
|
+
"atomic": "pasuk"
|
|
1306
|
+
},
|
|
496
1307
|
"command_unit": "parashah",
|
|
497
|
-
"config_defaults": {
|
|
1308
|
+
"config_defaults": {
|
|
1309
|
+
"verse_numbering_system": "masoretic",
|
|
1310
|
+
"calendar_system": "hebrew"
|
|
1311
|
+
},
|
|
498
1312
|
"word_count_range": null,
|
|
499
1313
|
"page_range": null,
|
|
500
|
-
"unit_count_range": [
|
|
501
|
-
|
|
502
|
-
|
|
1314
|
+
"unit_count_range": [
|
|
1315
|
+
1,
|
|
1316
|
+
54
|
|
1317
|
+
],
|
|
1318
|
+
"unit_word_range": [
|
|
1319
|
+
1000,
|
|
1320
|
+
8000
|
|
1321
|
+
],
|
|
1322
|
+
"unit_page_range": [
|
|
1323
|
+
4,
|
|
1324
|
+
32
|
|
1325
|
+
],
|
|
503
1326
|
"_note": "Varies by scope -- full Torah vs single parashah."
|
|
504
1327
|
},
|
|
505
1328
|
"scripture_vedic": {
|
|
506
1329
|
"label": "Scripture (Vedic)",
|
|
507
1330
|
"group": "sacred",
|
|
508
|
-
"hierarchy": {
|
|
1331
|
+
"hierarchy": {
|
|
1332
|
+
"top": "veda",
|
|
1333
|
+
"mid": "mandala",
|
|
1334
|
+
"atomic": "sukta"
|
|
1335
|
+
},
|
|
509
1336
|
"command_unit": "mandala",
|
|
510
|
-
"config_defaults": {
|
|
1337
|
+
"config_defaults": {
|
|
1338
|
+
"calendar_system": "vikram_samvat"
|
|
1339
|
+
},
|
|
511
1340
|
"word_count_range": null,
|
|
512
1341
|
"page_range": null,
|
|
513
|
-
"unit_count_range": [
|
|
514
|
-
|
|
515
|
-
|
|
1342
|
+
"unit_count_range": [
|
|
1343
|
+
1,
|
|
1344
|
+
10
|
|
1345
|
+
],
|
|
1346
|
+
"unit_word_range": [
|
|
1347
|
+
2000,
|
|
1348
|
+
20000
|
|
1349
|
+
],
|
|
1350
|
+
"unit_page_range": [
|
|
1351
|
+
8,
|
|
1352
|
+
80
|
|
1353
|
+
],
|
|
516
1354
|
"_note": "Varies by scope -- single Veda vs collection."
|
|
517
1355
|
},
|
|
518
1356
|
"scripture_buddhist": {
|
|
519
1357
|
"label": "Scripture (Buddhist)",
|
|
520
1358
|
"group": "sacred",
|
|
521
|
-
"hierarchy": {
|
|
1359
|
+
"hierarchy": {
|
|
1360
|
+
"top": "pitaka",
|
|
1361
|
+
"mid": "nikaya",
|
|
1362
|
+
"atomic": "sutta"
|
|
1363
|
+
},
|
|
522
1364
|
"command_unit": "sutta",
|
|
523
|
-
"config_defaults": {
|
|
1365
|
+
"config_defaults": {
|
|
1366
|
+
"calendar_system": "buddhist_era"
|
|
1367
|
+
},
|
|
524
1368
|
"word_count_range": null,
|
|
525
1369
|
"page_range": null,
|
|
526
|
-
"unit_count_range": [
|
|
527
|
-
|
|
528
|
-
|
|
1370
|
+
"unit_count_range": [
|
|
1371
|
+
1,
|
|
1372
|
+
50
|
|
1373
|
+
],
|
|
1374
|
+
"unit_word_range": [
|
|
1375
|
+
500,
|
|
1376
|
+
10000
|
|
1377
|
+
],
|
|
1378
|
+
"unit_page_range": [
|
|
1379
|
+
2,
|
|
1380
|
+
40
|
|
1381
|
+
],
|
|
529
1382
|
"_note": "Varies by scope -- single sutta vs full nikaya."
|
|
530
1383
|
},
|
|
531
1384
|
"scripture_generic": {
|
|
532
1385
|
"label": "Scripture (Generic)",
|
|
533
1386
|
"group": "sacred",
|
|
534
|
-
"hierarchy": {
|
|
1387
|
+
"hierarchy": {
|
|
1388
|
+
"top": "testament",
|
|
1389
|
+
"mid": "book",
|
|
1390
|
+
"atomic": "verse"
|
|
1391
|
+
},
|
|
535
1392
|
"command_unit": "book",
|
|
536
1393
|
"word_count_range": null,
|
|
537
1394
|
"page_range": null,
|
|
538
|
-
"unit_count_range": [
|
|
539
|
-
|
|
540
|
-
|
|
1395
|
+
"unit_count_range": [
|
|
1396
|
+
1,
|
|
1397
|
+
100
|
|
1398
|
+
],
|
|
1399
|
+
"unit_word_range": [
|
|
1400
|
+
500,
|
|
1401
|
+
30000
|
|
1402
|
+
],
|
|
1403
|
+
"unit_page_range": [
|
|
1404
|
+
2,
|
|
1405
|
+
120
|
|
1406
|
+
],
|
|
541
1407
|
"_note": "Varies by tradition and scope."
|
|
542
1408
|
},
|
|
543
1409
|
"commentary": {
|
|
544
1410
|
"label": "Commentary / Exegesis",
|
|
545
1411
|
"group": "sacred",
|
|
546
|
-
"hierarchy": {
|
|
1412
|
+
"hierarchy": {
|
|
1413
|
+
"top": null,
|
|
1414
|
+
"mid": "section",
|
|
1415
|
+
"atomic": "annotation_block"
|
|
1416
|
+
},
|
|
547
1417
|
"command_unit": "section",
|
|
548
|
-
"word_count_range": [
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
"
|
|
1418
|
+
"word_count_range": [
|
|
1419
|
+
20000,
|
|
1420
|
+
150000
|
|
1421
|
+
],
|
|
1422
|
+
"page_range": [
|
|
1423
|
+
80,
|
|
1424
|
+
600
|
|
1425
|
+
],
|
|
1426
|
+
"unit_count_range": [
|
|
1427
|
+
5,
|
|
1428
|
+
30
|
|
1429
|
+
],
|
|
1430
|
+
"unit_word_range": [
|
|
1431
|
+
2000,
|
|
1432
|
+
8000
|
|
1433
|
+
],
|
|
1434
|
+
"unit_page_range": [
|
|
1435
|
+
8,
|
|
1436
|
+
32
|
|
1437
|
+
]
|
|
553
1438
|
},
|
|
554
1439
|
"devotional": {
|
|
555
1440
|
"label": "Devotional",
|
|
556
1441
|
"group": "sacred",
|
|
557
|
-
"hierarchy": {
|
|
1442
|
+
"hierarchy": {
|
|
1443
|
+
"top": null,
|
|
1444
|
+
"mid": "theme",
|
|
1445
|
+
"atomic": "entry"
|
|
1446
|
+
},
|
|
558
1447
|
"command_unit": "entry",
|
|
559
|
-
"word_count_range": [
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
"
|
|
1448
|
+
"word_count_range": [
|
|
1449
|
+
15000,
|
|
1450
|
+
50000
|
|
1451
|
+
],
|
|
1452
|
+
"page_range": [
|
|
1453
|
+
60,
|
|
1454
|
+
200
|
|
1455
|
+
],
|
|
1456
|
+
"unit_count_range": [
|
|
1457
|
+
30,
|
|
1458
|
+
366
|
|
1459
|
+
],
|
|
1460
|
+
"unit_word_range": [
|
|
1461
|
+
200,
|
|
1462
|
+
800
|
|
1463
|
+
],
|
|
1464
|
+
"unit_page_range": [
|
|
1465
|
+
1,
|
|
1466
|
+
3
|
|
1467
|
+
]
|
|
564
1468
|
},
|
|
565
1469
|
"liturgical": {
|
|
566
1470
|
"label": "Liturgical Text",
|
|
567
1471
|
"group": "sacred",
|
|
568
|
-
"hierarchy": {
|
|
1472
|
+
"hierarchy": {
|
|
1473
|
+
"top": "rite",
|
|
1474
|
+
"mid": "section",
|
|
1475
|
+
"atomic": "rubric"
|
|
1476
|
+
},
|
|
569
1477
|
"command_unit": "section",
|
|
570
|
-
"word_count_range": [
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
"
|
|
1478
|
+
"word_count_range": [
|
|
1479
|
+
5000,
|
|
1480
|
+
30000
|
|
1481
|
+
],
|
|
1482
|
+
"page_range": [
|
|
1483
|
+
20,
|
|
1484
|
+
120
|
|
1485
|
+
],
|
|
1486
|
+
"unit_count_range": [
|
|
1487
|
+
5,
|
|
1488
|
+
20
|
|
1489
|
+
],
|
|
1490
|
+
"unit_word_range": [
|
|
1491
|
+
500,
|
|
1492
|
+
3000
|
|
1493
|
+
],
|
|
1494
|
+
"unit_page_range": [
|
|
1495
|
+
2,
|
|
1496
|
+
12
|
|
1497
|
+
]
|
|
575
1498
|
},
|
|
576
1499
|
"historical_chronicle": {
|
|
577
1500
|
"label": "Historical Chronicle",
|
|
578
1501
|
"group": "sacred",
|
|
579
|
-
"hierarchy": {
|
|
1502
|
+
"hierarchy": {
|
|
1503
|
+
"top": "era",
|
|
1504
|
+
"mid": "chapter",
|
|
1505
|
+
"atomic": "event"
|
|
1506
|
+
},
|
|
580
1507
|
"command_unit": "chapter",
|
|
581
|
-
"word_count_range": [
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
"
|
|
1508
|
+
"word_count_range": [
|
|
1509
|
+
50000,
|
|
1510
|
+
150000
|
|
1511
|
+
],
|
|
1512
|
+
"page_range": [
|
|
1513
|
+
200,
|
|
1514
|
+
600
|
|
1515
|
+
],
|
|
1516
|
+
"unit_count_range": [
|
|
1517
|
+
10,
|
|
1518
|
+
40
|
|
1519
|
+
],
|
|
1520
|
+
"unit_word_range": [
|
|
1521
|
+
3000,
|
|
1522
|
+
6000
|
|
1523
|
+
],
|
|
1524
|
+
"unit_page_range": [
|
|
1525
|
+
12,
|
|
1526
|
+
24
|
|
1527
|
+
]
|
|
586
1528
|
},
|
|
587
1529
|
"historical_account": {
|
|
588
1530
|
"label": "Historical Account",
|
|
589
1531
|
"group": "sacred",
|
|
590
|
-
"hierarchy": {
|
|
1532
|
+
"hierarchy": {
|
|
1533
|
+
"top": "part",
|
|
1534
|
+
"mid": "chapter",
|
|
1535
|
+
"atomic": "scene"
|
|
1536
|
+
},
|
|
591
1537
|
"command_unit": "chapter",
|
|
592
|
-
"word_count_range": [
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
"
|
|
1538
|
+
"word_count_range": [
|
|
1539
|
+
40000,
|
|
1540
|
+
100000
|
|
1541
|
+
],
|
|
1542
|
+
"page_range": [
|
|
1543
|
+
160,
|
|
1544
|
+
400
|
|
1545
|
+
],
|
|
1546
|
+
"unit_count_range": [
|
|
1547
|
+
10,
|
|
1548
|
+
30
|
|
1549
|
+
],
|
|
1550
|
+
"unit_word_range": [
|
|
1551
|
+
3000,
|
|
1552
|
+
5000
|
|
1553
|
+
],
|
|
1554
|
+
"unit_page_range": [
|
|
1555
|
+
12,
|
|
1556
|
+
20
|
|
1557
|
+
]
|
|
597
1558
|
},
|
|
598
1559
|
"mythological_collection": {
|
|
599
1560
|
"label": "Mythological Collection",
|
|
600
1561
|
"group": "sacred",
|
|
601
|
-
"hierarchy": {
|
|
1562
|
+
"hierarchy": {
|
|
1563
|
+
"top": "cycle",
|
|
1564
|
+
"mid": null,
|
|
1565
|
+
"atomic": "tale"
|
|
1566
|
+
},
|
|
602
1567
|
"command_unit": "tale",
|
|
603
|
-
"word_count_range": [
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
"
|
|
1568
|
+
"word_count_range": [
|
|
1569
|
+
30000,
|
|
1570
|
+
100000
|
|
1571
|
+
],
|
|
1572
|
+
"page_range": [
|
|
1573
|
+
120,
|
|
1574
|
+
400
|
|
1575
|
+
],
|
|
1576
|
+
"unit_count_range": [
|
|
1577
|
+
10,
|
|
1578
|
+
50
|
|
1579
|
+
],
|
|
1580
|
+
"unit_word_range": [
|
|
1581
|
+
1500,
|
|
1582
|
+
5000
|
|
1583
|
+
],
|
|
1584
|
+
"unit_page_range": [
|
|
1585
|
+
6,
|
|
1586
|
+
20
|
|
1587
|
+
]
|
|
608
1588
|
},
|
|
609
1589
|
"religious_epic": {
|
|
610
1590
|
"label": "Religious Epic",
|
|
611
1591
|
"group": "sacred",
|
|
612
|
-
"hierarchy": {
|
|
1592
|
+
"hierarchy": {
|
|
1593
|
+
"top": "book",
|
|
1594
|
+
"mid": "canto",
|
|
1595
|
+
"atomic": "verse"
|
|
1596
|
+
},
|
|
613
1597
|
"command_unit": "canto",
|
|
614
|
-
"word_count_range": [
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
"
|
|
1598
|
+
"word_count_range": [
|
|
1599
|
+
50000,
|
|
1600
|
+
300000
|
|
1601
|
+
],
|
|
1602
|
+
"page_range": [
|
|
1603
|
+
200,
|
|
1604
|
+
1200
|
|
1605
|
+
],
|
|
1606
|
+
"unit_count_range": [
|
|
1607
|
+
10,
|
|
1608
|
+
100
|
|
1609
|
+
],
|
|
1610
|
+
"unit_word_range": [
|
|
1611
|
+
2000,
|
|
1612
|
+
8000
|
|
1613
|
+
],
|
|
1614
|
+
"unit_page_range": [
|
|
1615
|
+
8,
|
|
1616
|
+
32
|
|
1617
|
+
]
|
|
619
1618
|
},
|
|
620
1619
|
"sermon": {
|
|
621
1620
|
"label": "Sermon / Homily",
|
|
622
1621
|
"group": "sacred",
|
|
623
|
-
"hierarchy": {
|
|
1622
|
+
"hierarchy": {
|
|
1623
|
+
"top": null,
|
|
1624
|
+
"mid": "movement",
|
|
1625
|
+
"atomic": "beat"
|
|
1626
|
+
},
|
|
624
1627
|
"command_unit": "sermon",
|
|
625
|
-
"word_count_range": [
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
"
|
|
1628
|
+
"word_count_range": [
|
|
1629
|
+
1500,
|
|
1630
|
+
4000
|
|
1631
|
+
],
|
|
1632
|
+
"page_range": [
|
|
1633
|
+
6,
|
|
1634
|
+
16
|
|
1635
|
+
],
|
|
1636
|
+
"unit_count_range": [
|
|
1637
|
+
3,
|
|
1638
|
+
5
|
|
1639
|
+
],
|
|
1640
|
+
"unit_word_range": [
|
|
1641
|
+
400,
|
|
1642
|
+
1000
|
|
1643
|
+
],
|
|
1644
|
+
"unit_page_range": [
|
|
1645
|
+
2,
|
|
1646
|
+
4
|
|
1647
|
+
]
|
|
630
1648
|
},
|
|
631
1649
|
"homiletic_collection": {
|
|
632
1650
|
"label": "Homiletic Collection",
|
|
633
1651
|
"group": "sacred",
|
|
634
|
-
"hierarchy": {
|
|
1652
|
+
"hierarchy": {
|
|
1653
|
+
"top": "liturgical_year",
|
|
1654
|
+
"mid": null,
|
|
1655
|
+
"atomic": "sermon"
|
|
1656
|
+
},
|
|
635
1657
|
"command_unit": "sermon",
|
|
636
|
-
"word_count_range": [
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
"
|
|
1658
|
+
"word_count_range": [
|
|
1659
|
+
50000,
|
|
1660
|
+
150000
|
|
1661
|
+
],
|
|
1662
|
+
"page_range": [
|
|
1663
|
+
200,
|
|
1664
|
+
600
|
|
1665
|
+
],
|
|
1666
|
+
"unit_count_range": [
|
|
1667
|
+
30,
|
|
1668
|
+
60
|
|
1669
|
+
],
|
|
1670
|
+
"unit_word_range": [
|
|
1671
|
+
1500,
|
|
1672
|
+
4000
|
|
1673
|
+
],
|
|
1674
|
+
"unit_page_range": [
|
|
1675
|
+
6,
|
|
1676
|
+
16
|
|
1677
|
+
]
|
|
641
1678
|
}
|
|
642
1679
|
},
|
|
643
|
-
|
|
644
1680
|
"commands": {
|
|
645
1681
|
"new-work": {
|
|
646
1682
|
"category": "core",
|
|
647
|
-
"available": [
|
|
1683
|
+
"available": [
|
|
1684
|
+
"all"
|
|
1685
|
+
],
|
|
648
1686
|
"description": "Initialize a new creative work"
|
|
649
1687
|
},
|
|
650
1688
|
"discuss": {
|
|
651
1689
|
"category": "core",
|
|
652
|
-
"available": [
|
|
1690
|
+
"available": [
|
|
1691
|
+
"all"
|
|
1692
|
+
],
|
|
653
1693
|
"renames_by_unit": true,
|
|
654
1694
|
"description": "Shape the next unit before planning"
|
|
655
1695
|
},
|
|
656
1696
|
"plan": {
|
|
657
1697
|
"category": "core",
|
|
658
|
-
"available": [
|
|
1698
|
+
"available": [
|
|
1699
|
+
"all"
|
|
1700
|
+
],
|
|
659
1701
|
"renames_by_unit": true,
|
|
660
1702
|
"description": "Research and plan the next unit"
|
|
661
1703
|
},
|
|
662
1704
|
"draft": {
|
|
663
1705
|
"category": "core",
|
|
664
|
-
"available": [
|
|
1706
|
+
"available": [
|
|
1707
|
+
"all"
|
|
1708
|
+
],
|
|
665
1709
|
"renames_by_unit": true,
|
|
666
1710
|
"description": "Draft the planned unit"
|
|
667
1711
|
},
|
|
668
1712
|
"editor-review": {
|
|
669
1713
|
"category": "core",
|
|
670
|
-
"available": [
|
|
1714
|
+
"available": [
|
|
1715
|
+
"all"
|
|
1716
|
+
],
|
|
671
1717
|
"adapted": {
|
|
672
|
-
"academic": {
|
|
673
|
-
|
|
674
|
-
|
|
1718
|
+
"academic": {
|
|
1719
|
+
"rename": "peer-review"
|
|
1720
|
+
},
|
|
1721
|
+
"technical": {
|
|
1722
|
+
"rename": "technical-review"
|
|
1723
|
+
},
|
|
1724
|
+
"sacred": {
|
|
1725
|
+
"rename": "scholarly-review"
|
|
1726
|
+
}
|
|
675
1727
|
},
|
|
676
1728
|
"description": "Manual review of drafted unit and editor-writer collaboration workflow",
|
|
677
|
-
"collaboration_flags": [
|
|
678
|
-
|
|
1729
|
+
"collaboration_flags": [
|
|
1730
|
+
"--proposal",
|
|
1731
|
+
"--notes",
|
|
1732
|
+
"--respond"
|
|
1733
|
+
],
|
|
1734
|
+
"collaboration_artifacts": [
|
|
1735
|
+
"proposals/",
|
|
1736
|
+
"editor-notes/",
|
|
1737
|
+
"decisions.json"
|
|
1738
|
+
]
|
|
679
1739
|
},
|
|
680
1740
|
"submit": {
|
|
681
1741
|
"category": "core",
|
|
682
|
-
"available": [
|
|
1742
|
+
"available": [
|
|
1743
|
+
"all"
|
|
1744
|
+
],
|
|
683
1745
|
"renames_by_unit": true,
|
|
684
1746
|
"description": "Package and finalize unit"
|
|
685
1747
|
},
|
|
686
1748
|
"next": {
|
|
687
1749
|
"category": "navigation",
|
|
688
|
-
"available": [
|
|
1750
|
+
"available": [
|
|
1751
|
+
"all"
|
|
1752
|
+
],
|
|
689
1753
|
"description": "Auto-detect and run the next workflow step"
|
|
690
1754
|
},
|
|
691
1755
|
"do": {
|
|
692
1756
|
"category": "navigation",
|
|
693
|
-
"available": [
|
|
1757
|
+
"available": [
|
|
1758
|
+
"all"
|
|
1759
|
+
],
|
|
694
1760
|
"description": "Natural language router for free-text commands"
|
|
695
1761
|
},
|
|
696
1762
|
"help": {
|
|
697
1763
|
"category": "navigation",
|
|
698
|
-
"available": [
|
|
1764
|
+
"available": [
|
|
1765
|
+
"all"
|
|
1766
|
+
],
|
|
699
1767
|
"description": "Show available commands grouped by stage"
|
|
700
1768
|
},
|
|
701
1769
|
"progress": {
|
|
702
1770
|
"category": "navigation",
|
|
703
|
-
"available": [
|
|
1771
|
+
"available": [
|
|
1772
|
+
"all"
|
|
1773
|
+
],
|
|
704
1774
|
"description": "Show current state and next step"
|
|
705
1775
|
},
|
|
706
1776
|
"demo": {
|
|
707
1777
|
"category": "navigation",
|
|
708
|
-
"available": [
|
|
1778
|
+
"available": [
|
|
1779
|
+
"all"
|
|
1780
|
+
],
|
|
709
1781
|
"description": "Launch pre-built sample project sandbox"
|
|
710
1782
|
},
|
|
711
1783
|
"import": {
|
|
712
1784
|
"category": "navigation",
|
|
713
|
-
"available": [
|
|
1785
|
+
"available": [
|
|
1786
|
+
"all"
|
|
1787
|
+
],
|
|
714
1788
|
"description": "Import existing manuscript into Scriveno structure"
|
|
715
1789
|
},
|
|
716
1790
|
"map-manuscript": {
|
|
717
1791
|
"category": "navigation",
|
|
718
|
-
"available": [
|
|
1792
|
+
"available": [
|
|
1793
|
+
"all"
|
|
1794
|
+
],
|
|
719
1795
|
"description": "Analyze existing manuscript structure, voice, characters, and themes"
|
|
720
1796
|
},
|
|
721
1797
|
"voice-test": {
|
|
722
1798
|
"category": "quality",
|
|
723
|
-
"available": [
|
|
1799
|
+
"available": [
|
|
1800
|
+
"all"
|
|
1801
|
+
],
|
|
724
1802
|
"description": "Voice calibration before first draft"
|
|
725
1803
|
},
|
|
726
1804
|
"new-character": {
|
|
727
1805
|
"category": "character_world",
|
|
728
|
-
"available": [
|
|
1806
|
+
"available": [
|
|
1807
|
+
"prose",
|
|
1808
|
+
"script",
|
|
1809
|
+
"visual",
|
|
1810
|
+
"interactive"
|
|
1811
|
+
],
|
|
729
1812
|
"adapted": {
|
|
730
|
-
"academic": {
|
|
731
|
-
|
|
1813
|
+
"academic": {
|
|
1814
|
+
"rename": "new-concept",
|
|
1815
|
+
"behavior": "academic_concept"
|
|
1816
|
+
},
|
|
1817
|
+
"sacred": {
|
|
1818
|
+
"rename": "new-figure",
|
|
1819
|
+
"behavior": "sacred_figure"
|
|
1820
|
+
}
|
|
732
1821
|
},
|
|
733
|
-
"hidden": [
|
|
734
|
-
|
|
1822
|
+
"hidden": [
|
|
1823
|
+
"poetry",
|
|
1824
|
+
"speech_song"
|
|
1825
|
+
],
|
|
1826
|
+
"requires": [
|
|
1827
|
+
"WORK.md"
|
|
1828
|
+
]
|
|
735
1829
|
},
|
|
736
1830
|
"character-sheet": {
|
|
737
1831
|
"category": "character_world",
|
|
738
|
-
"available": [
|
|
1832
|
+
"available": [
|
|
1833
|
+
"prose",
|
|
1834
|
+
"script",
|
|
1835
|
+
"visual",
|
|
1836
|
+
"interactive"
|
|
1837
|
+
],
|
|
739
1838
|
"adapted": {
|
|
740
|
-
"academic": {
|
|
741
|
-
|
|
1839
|
+
"academic": {
|
|
1840
|
+
"rename": "concept-sheet"
|
|
1841
|
+
},
|
|
1842
|
+
"sacred": {
|
|
1843
|
+
"rename": "figure-sheet"
|
|
1844
|
+
}
|
|
742
1845
|
},
|
|
743
|
-
"hidden": [
|
|
744
|
-
|
|
1846
|
+
"hidden": [
|
|
1847
|
+
"poetry",
|
|
1848
|
+
"speech_song"
|
|
1849
|
+
],
|
|
1850
|
+
"requires": [
|
|
1851
|
+
"CHARACTERS.md"
|
|
1852
|
+
]
|
|
745
1853
|
},
|
|
746
1854
|
"character-touch": {
|
|
747
1855
|
"category": "character_world",
|
|
748
|
-
"available": [
|
|
1856
|
+
"available": [
|
|
1857
|
+
"prose",
|
|
1858
|
+
"script",
|
|
1859
|
+
"visual",
|
|
1860
|
+
"interactive",
|
|
1861
|
+
"sacred"
|
|
1862
|
+
],
|
|
749
1863
|
"adapted": {
|
|
750
|
-
"sacred": {
|
|
1864
|
+
"sacred": {
|
|
1865
|
+
"rename": "figure-touch"
|
|
1866
|
+
}
|
|
751
1867
|
},
|
|
752
|
-
"hidden": [
|
|
753
|
-
|
|
1868
|
+
"hidden": [
|
|
1869
|
+
"academic",
|
|
1870
|
+
"poetry",
|
|
1871
|
+
"speech_song"
|
|
1872
|
+
],
|
|
1873
|
+
"requires": [
|
|
1874
|
+
"CHARACTERS.md",
|
|
1875
|
+
"draft_exists"
|
|
1876
|
+
]
|
|
754
1877
|
},
|
|
755
1878
|
"relationship-map": {
|
|
756
1879
|
"category": "character_world",
|
|
757
|
-
"available": [
|
|
1880
|
+
"available": [
|
|
1881
|
+
"prose",
|
|
1882
|
+
"script",
|
|
1883
|
+
"visual",
|
|
1884
|
+
"interactive"
|
|
1885
|
+
],
|
|
758
1886
|
"adapted": {
|
|
759
|
-
"sacred": {
|
|
1887
|
+
"sacred": {
|
|
1888
|
+
"rename": "lineage-map"
|
|
1889
|
+
}
|
|
760
1890
|
},
|
|
761
|
-
"hidden": [
|
|
762
|
-
|
|
1891
|
+
"hidden": [
|
|
1892
|
+
"academic",
|
|
1893
|
+
"poetry",
|
|
1894
|
+
"speech_song"
|
|
1895
|
+
],
|
|
1896
|
+
"requires": [
|
|
1897
|
+
"CHARACTERS.md",
|
|
1898
|
+
{
|
|
1899
|
+
"min_characters": 2
|
|
1900
|
+
}
|
|
1901
|
+
]
|
|
763
1902
|
},
|
|
764
1903
|
"build-world": {
|
|
765
1904
|
"category": "character_world",
|
|
766
|
-
"available": [
|
|
1905
|
+
"available": [
|
|
1906
|
+
"prose",
|
|
1907
|
+
"script",
|
|
1908
|
+
"technical",
|
|
1909
|
+
"visual",
|
|
1910
|
+
"interactive"
|
|
1911
|
+
],
|
|
767
1912
|
"adapted": {
|
|
768
|
-
"technical": {
|
|
769
|
-
|
|
1913
|
+
"technical": {
|
|
1914
|
+
"rename": "map-system"
|
|
1915
|
+
},
|
|
1916
|
+
"sacred": {
|
|
1917
|
+
"rename": "build-cosmology"
|
|
1918
|
+
}
|
|
770
1919
|
},
|
|
771
|
-
"hidden": [
|
|
1920
|
+
"hidden": [
|
|
1921
|
+
"academic",
|
|
1922
|
+
"poetry",
|
|
1923
|
+
"speech_song"
|
|
1924
|
+
]
|
|
772
1925
|
},
|
|
773
1926
|
"cast-list": {
|
|
774
1927
|
"category": "character_world",
|
|
775
|
-
"available": [
|
|
1928
|
+
"available": [
|
|
1929
|
+
"prose",
|
|
1930
|
+
"script",
|
|
1931
|
+
"visual",
|
|
1932
|
+
"interactive"
|
|
1933
|
+
],
|
|
776
1934
|
"adapted": {
|
|
777
|
-
"sacred": {
|
|
1935
|
+
"sacred": {
|
|
1936
|
+
"rename": "figures-list"
|
|
1937
|
+
}
|
|
778
1938
|
},
|
|
779
|
-
"hidden": [
|
|
1939
|
+
"hidden": [
|
|
1940
|
+
"academic",
|
|
1941
|
+
"poetry",
|
|
1942
|
+
"speech_song"
|
|
1943
|
+
]
|
|
780
1944
|
},
|
|
781
1945
|
"character-arc": {
|
|
782
1946
|
"category": "character_world",
|
|
783
|
-
"available": [
|
|
1947
|
+
"available": [
|
|
1948
|
+
"prose",
|
|
1949
|
+
"script",
|
|
1950
|
+
"visual",
|
|
1951
|
+
"interactive"
|
|
1952
|
+
],
|
|
784
1953
|
"adapted": {
|
|
785
|
-
"sacred": {
|
|
1954
|
+
"sacred": {
|
|
1955
|
+
"rename": "figure-arc"
|
|
1956
|
+
}
|
|
786
1957
|
},
|
|
787
|
-
"hidden": [
|
|
1958
|
+
"hidden": [
|
|
1959
|
+
"academic",
|
|
1960
|
+
"poetry",
|
|
1961
|
+
"speech_song"
|
|
1962
|
+
]
|
|
788
1963
|
},
|
|
789
1964
|
"character-voice-sample": {
|
|
790
1965
|
"category": "character_world",
|
|
791
|
-
"available": [
|
|
1966
|
+
"available": [
|
|
1967
|
+
"prose",
|
|
1968
|
+
"script",
|
|
1969
|
+
"visual",
|
|
1970
|
+
"interactive"
|
|
1971
|
+
],
|
|
792
1972
|
"adapted": {
|
|
793
|
-
"sacred": {
|
|
1973
|
+
"sacred": {
|
|
1974
|
+
"rename": "register-sample"
|
|
1975
|
+
}
|
|
794
1976
|
},
|
|
795
|
-
"hidden": [
|
|
1977
|
+
"hidden": [
|
|
1978
|
+
"academic",
|
|
1979
|
+
"poetry",
|
|
1980
|
+
"speech_song"
|
|
1981
|
+
]
|
|
796
1982
|
},
|
|
797
1983
|
"plot-graph": {
|
|
798
1984
|
"category": "structure",
|
|
799
|
-
"available": [
|
|
1985
|
+
"available": [
|
|
1986
|
+
"prose",
|
|
1987
|
+
"script",
|
|
1988
|
+
"technical",
|
|
1989
|
+
"visual",
|
|
1990
|
+
"interactive"
|
|
1991
|
+
],
|
|
800
1992
|
"adapted": {
|
|
801
|
-
"academic": {
|
|
802
|
-
|
|
803
|
-
|
|
1993
|
+
"academic": {
|
|
1994
|
+
"rename": "argument-map"
|
|
1995
|
+
},
|
|
1996
|
+
"technical": {
|
|
1997
|
+
"rename": "procedure-map"
|
|
1998
|
+
},
|
|
1999
|
+
"sacred": {
|
|
2000
|
+
"rename": "theological-arc"
|
|
2001
|
+
}
|
|
804
2002
|
},
|
|
805
|
-
"hidden": [
|
|
806
|
-
|
|
2003
|
+
"hidden": [
|
|
2004
|
+
"poetry",
|
|
2005
|
+
"speech_song"
|
|
2006
|
+
],
|
|
2007
|
+
"requires": [
|
|
2008
|
+
"OUTLINE.md"
|
|
2009
|
+
]
|
|
807
2010
|
},
|
|
808
2011
|
"timeline": {
|
|
809
2012
|
"category": "structure",
|
|
810
|
-
"available": [
|
|
2013
|
+
"available": [
|
|
2014
|
+
"prose",
|
|
2015
|
+
"script",
|
|
2016
|
+
"academic",
|
|
2017
|
+
"visual",
|
|
2018
|
+
"interactive"
|
|
2019
|
+
],
|
|
811
2020
|
"adapted": {
|
|
812
|
-
"sacred": {
|
|
2021
|
+
"sacred": {
|
|
2022
|
+
"rename": "chronology"
|
|
2023
|
+
}
|
|
813
2024
|
},
|
|
814
|
-
"hidden": [
|
|
2025
|
+
"hidden": [
|
|
2026
|
+
"poetry",
|
|
2027
|
+
"speech_song"
|
|
2028
|
+
]
|
|
815
2029
|
},
|
|
816
2030
|
"theme-tracker": {
|
|
817
2031
|
"category": "structure",
|
|
818
|
-
"available": [
|
|
2032
|
+
"available": [
|
|
2033
|
+
"prose",
|
|
2034
|
+
"script",
|
|
2035
|
+
"visual",
|
|
2036
|
+
"poetry",
|
|
2037
|
+
"interactive"
|
|
2038
|
+
],
|
|
819
2039
|
"adapted": {
|
|
820
|
-
"academic": {
|
|
821
|
-
|
|
2040
|
+
"academic": {
|
|
2041
|
+
"rename": "research-questions"
|
|
2042
|
+
},
|
|
2043
|
+
"sacred": {
|
|
2044
|
+
"rename": "doctrine-tracker"
|
|
2045
|
+
}
|
|
822
2046
|
},
|
|
823
|
-
"hidden": [
|
|
2047
|
+
"hidden": [
|
|
2048
|
+
"speech_song"
|
|
2049
|
+
]
|
|
824
2050
|
},
|
|
825
2051
|
"subject-touch": {
|
|
826
2052
|
"category": "structure",
|
|
827
|
-
"available": [
|
|
2053
|
+
"available": [
|
|
2054
|
+
"all"
|
|
2055
|
+
],
|
|
828
2056
|
"adapted": {
|
|
829
|
-
"academic": {
|
|
830
|
-
|
|
831
|
-
|
|
2057
|
+
"academic": {
|
|
2058
|
+
"rename": "concept-touch"
|
|
2059
|
+
},
|
|
2060
|
+
"technical": {
|
|
2061
|
+
"rename": "procedure-touch"
|
|
2062
|
+
},
|
|
2063
|
+
"sacred": {
|
|
2064
|
+
"rename": "doctrine-touch"
|
|
2065
|
+
}
|
|
832
2066
|
},
|
|
833
2067
|
"description": "Update evolving subject, concept, procedure, doctrine, object, image, or reader-state movement",
|
|
834
|
-
"requires": [
|
|
2068
|
+
"requires": [
|
|
2069
|
+
"THEMES.md",
|
|
2070
|
+
"draft_exists"
|
|
2071
|
+
]
|
|
835
2072
|
},
|
|
836
2073
|
"subplot-map": {
|
|
837
2074
|
"category": "structure",
|
|
838
|
-
"available": [
|
|
2075
|
+
"available": [
|
|
2076
|
+
"prose",
|
|
2077
|
+
"script",
|
|
2078
|
+
"interactive"
|
|
2079
|
+
],
|
|
839
2080
|
"adapted": {
|
|
840
|
-
"sacred": {
|
|
2081
|
+
"sacred": {
|
|
2082
|
+
"rename": "narrative-threads"
|
|
2083
|
+
}
|
|
841
2084
|
},
|
|
842
|
-
"hidden": [
|
|
2085
|
+
"hidden": [
|
|
2086
|
+
"academic",
|
|
2087
|
+
"visual",
|
|
2088
|
+
"poetry",
|
|
2089
|
+
"speech_song"
|
|
2090
|
+
]
|
|
843
2091
|
},
|
|
844
2092
|
"outline": {
|
|
845
2093
|
"category": "structure",
|
|
846
|
-
"available": [
|
|
2094
|
+
"available": [
|
|
2095
|
+
"prose",
|
|
2096
|
+
"script",
|
|
2097
|
+
"academic",
|
|
2098
|
+
"technical",
|
|
2099
|
+
"visual",
|
|
2100
|
+
"interactive",
|
|
2101
|
+
"sacred"
|
|
2102
|
+
],
|
|
847
2103
|
"adapted": {},
|
|
848
|
-
"hidden": [
|
|
849
|
-
|
|
2104
|
+
"hidden": [
|
|
2105
|
+
"poetry",
|
|
2106
|
+
"speech_song"
|
|
2107
|
+
],
|
|
2108
|
+
"requires": [
|
|
2109
|
+
"OUTLINE.md"
|
|
2110
|
+
]
|
|
850
2111
|
},
|
|
851
2112
|
"add-unit": {
|
|
852
2113
|
"category": "structure_management",
|
|
853
|
-
"available": [
|
|
2114
|
+
"available": [
|
|
2115
|
+
"prose",
|
|
2116
|
+
"script",
|
|
2117
|
+
"academic",
|
|
2118
|
+
"technical",
|
|
2119
|
+
"visual",
|
|
2120
|
+
"interactive",
|
|
2121
|
+
"sacred"
|
|
2122
|
+
],
|
|
854
2123
|
"adapted": {},
|
|
855
|
-
"hidden": [
|
|
856
|
-
|
|
2124
|
+
"hidden": [
|
|
2125
|
+
"poetry",
|
|
2126
|
+
"speech_song"
|
|
2127
|
+
],
|
|
2128
|
+
"requires": [
|
|
2129
|
+
"OUTLINE.md"
|
|
2130
|
+
]
|
|
857
2131
|
},
|
|
858
2132
|
"insert-unit": {
|
|
859
2133
|
"category": "structure_management",
|
|
860
|
-
"available": [
|
|
2134
|
+
"available": [
|
|
2135
|
+
"prose",
|
|
2136
|
+
"script",
|
|
2137
|
+
"academic",
|
|
2138
|
+
"technical",
|
|
2139
|
+
"visual",
|
|
2140
|
+
"interactive",
|
|
2141
|
+
"sacred"
|
|
2142
|
+
],
|
|
861
2143
|
"adapted": {},
|
|
862
|
-
"hidden": [
|
|
863
|
-
|
|
2144
|
+
"hidden": [
|
|
2145
|
+
"poetry",
|
|
2146
|
+
"speech_song"
|
|
2147
|
+
],
|
|
2148
|
+
"requires": [
|
|
2149
|
+
"OUTLINE.md"
|
|
2150
|
+
]
|
|
864
2151
|
},
|
|
865
2152
|
"remove-unit": {
|
|
866
2153
|
"category": "structure_management",
|
|
867
|
-
"available": [
|
|
2154
|
+
"available": [
|
|
2155
|
+
"prose",
|
|
2156
|
+
"script",
|
|
2157
|
+
"academic",
|
|
2158
|
+
"technical",
|
|
2159
|
+
"visual",
|
|
2160
|
+
"interactive",
|
|
2161
|
+
"sacred"
|
|
2162
|
+
],
|
|
868
2163
|
"adapted": {},
|
|
869
|
-
"hidden": [
|
|
870
|
-
|
|
2164
|
+
"hidden": [
|
|
2165
|
+
"poetry",
|
|
2166
|
+
"speech_song"
|
|
2167
|
+
],
|
|
2168
|
+
"requires": [
|
|
2169
|
+
"OUTLINE.md"
|
|
2170
|
+
]
|
|
871
2171
|
},
|
|
872
2172
|
"split-unit": {
|
|
873
2173
|
"category": "structure_management",
|
|
874
|
-
"available": [
|
|
2174
|
+
"available": [
|
|
2175
|
+
"prose",
|
|
2176
|
+
"script",
|
|
2177
|
+
"academic",
|
|
2178
|
+
"technical",
|
|
2179
|
+
"visual",
|
|
2180
|
+
"interactive",
|
|
2181
|
+
"sacred"
|
|
2182
|
+
],
|
|
875
2183
|
"adapted": {},
|
|
876
|
-
"hidden": [
|
|
877
|
-
|
|
2184
|
+
"hidden": [
|
|
2185
|
+
"poetry",
|
|
2186
|
+
"speech_song"
|
|
2187
|
+
],
|
|
2188
|
+
"requires": [
|
|
2189
|
+
"OUTLINE.md"
|
|
2190
|
+
]
|
|
878
2191
|
},
|
|
879
2192
|
"merge-units": {
|
|
880
2193
|
"category": "structure_management",
|
|
881
|
-
"available": [
|
|
2194
|
+
"available": [
|
|
2195
|
+
"prose",
|
|
2196
|
+
"script",
|
|
2197
|
+
"academic",
|
|
2198
|
+
"technical",
|
|
2199
|
+
"visual",
|
|
2200
|
+
"interactive",
|
|
2201
|
+
"sacred"
|
|
2202
|
+
],
|
|
882
2203
|
"adapted": {},
|
|
883
|
-
"hidden": [
|
|
884
|
-
|
|
2204
|
+
"hidden": [
|
|
2205
|
+
"poetry",
|
|
2206
|
+
"speech_song"
|
|
2207
|
+
],
|
|
2208
|
+
"requires": [
|
|
2209
|
+
"OUTLINE.md"
|
|
2210
|
+
]
|
|
885
2211
|
},
|
|
886
2212
|
"reorder-units": {
|
|
887
2213
|
"category": "structure_management",
|
|
888
|
-
"available": [
|
|
2214
|
+
"available": [
|
|
2215
|
+
"prose",
|
|
2216
|
+
"script",
|
|
2217
|
+
"academic",
|
|
2218
|
+
"technical",
|
|
2219
|
+
"visual",
|
|
2220
|
+
"interactive",
|
|
2221
|
+
"sacred"
|
|
2222
|
+
],
|
|
889
2223
|
"adapted": {},
|
|
890
|
-
"hidden": [
|
|
891
|
-
|
|
2224
|
+
"hidden": [
|
|
2225
|
+
"poetry",
|
|
2226
|
+
"speech_song"
|
|
2227
|
+
],
|
|
2228
|
+
"requires": [
|
|
2229
|
+
"OUTLINE.md"
|
|
2230
|
+
]
|
|
892
2231
|
},
|
|
893
2232
|
"continuity-check": {
|
|
894
2233
|
"category": "review",
|
|
895
|
-
"available": [
|
|
2234
|
+
"available": [
|
|
2235
|
+
"prose",
|
|
2236
|
+
"script",
|
|
2237
|
+
"technical",
|
|
2238
|
+
"visual",
|
|
2239
|
+
"interactive"
|
|
2240
|
+
],
|
|
896
2241
|
"adapted": {
|
|
897
|
-
"academic": {
|
|
898
|
-
|
|
899
|
-
|
|
2242
|
+
"academic": {
|
|
2243
|
+
"rename": "citation-check"
|
|
2244
|
+
},
|
|
2245
|
+
"technical": {
|
|
2246
|
+
"rename": "consistency-check"
|
|
2247
|
+
},
|
|
2248
|
+
"sacred": {
|
|
2249
|
+
"rename": "doctrinal-check"
|
|
2250
|
+
}
|
|
900
2251
|
},
|
|
901
|
-
"hidden": [
|
|
902
|
-
|
|
2252
|
+
"hidden": [
|
|
2253
|
+
"poetry",
|
|
2254
|
+
"speech_song"
|
|
2255
|
+
],
|
|
2256
|
+
"requires": [
|
|
2257
|
+
"draft_exists"
|
|
2258
|
+
]
|
|
903
2259
|
},
|
|
904
2260
|
"voice-check": {
|
|
905
2261
|
"category": "review",
|
|
906
|
-
"available": [
|
|
2262
|
+
"available": [
|
|
2263
|
+
"all"
|
|
2264
|
+
],
|
|
907
2265
|
"adapted": {
|
|
908
|
-
"sacred": {
|
|
2266
|
+
"sacred": {
|
|
2267
|
+
"rename": "register-check"
|
|
2268
|
+
}
|
|
909
2269
|
},
|
|
910
|
-
"requires": [
|
|
2270
|
+
"requires": [
|
|
2271
|
+
"draft_exists",
|
|
2272
|
+
"STYLE-GUIDE.md"
|
|
2273
|
+
]
|
|
911
2274
|
},
|
|
912
2275
|
"sensitivity-review": {
|
|
913
2276
|
"category": "review",
|
|
914
|
-
"available": [
|
|
2277
|
+
"available": [
|
|
2278
|
+
"all"
|
|
2279
|
+
],
|
|
915
2280
|
"adapted": {
|
|
916
|
-
"academic": {
|
|
917
|
-
|
|
2281
|
+
"academic": {
|
|
2282
|
+
"rename": "ethics-review"
|
|
2283
|
+
},
|
|
2284
|
+
"sacred": {
|
|
2285
|
+
"rename": "interfaith-review"
|
|
2286
|
+
}
|
|
918
2287
|
},
|
|
919
|
-
"requires": [
|
|
2288
|
+
"requires": [
|
|
2289
|
+
"draft_exists"
|
|
2290
|
+
]
|
|
920
2291
|
},
|
|
921
2292
|
"pacing-analysis": {
|
|
922
2293
|
"category": "review",
|
|
923
|
-
"available": [
|
|
924
|
-
|
|
925
|
-
|
|
2294
|
+
"available": [
|
|
2295
|
+
"prose",
|
|
2296
|
+
"script",
|
|
2297
|
+
"academic",
|
|
2298
|
+
"visual",
|
|
2299
|
+
"interactive",
|
|
2300
|
+
"sacred"
|
|
2301
|
+
],
|
|
2302
|
+
"hidden": [
|
|
2303
|
+
"poetry",
|
|
2304
|
+
"speech_song"
|
|
2305
|
+
],
|
|
2306
|
+
"requires": [
|
|
2307
|
+
"draft_exists"
|
|
2308
|
+
]
|
|
926
2309
|
},
|
|
927
2310
|
"dialogue-audit": {
|
|
928
2311
|
"category": "review",
|
|
929
|
-
"available": [
|
|
2312
|
+
"available": [
|
|
2313
|
+
"prose",
|
|
2314
|
+
"script",
|
|
2315
|
+
"interactive"
|
|
2316
|
+
],
|
|
930
2317
|
"adapted": {
|
|
931
|
-
"visual": {
|
|
2318
|
+
"visual": {
|
|
2319
|
+
"behavior": "balloon_text"
|
|
2320
|
+
}
|
|
932
2321
|
},
|
|
933
|
-
"hidden": [
|
|
934
|
-
|
|
2322
|
+
"hidden": [
|
|
2323
|
+
"academic",
|
|
2324
|
+
"poetry",
|
|
2325
|
+
"speech_song",
|
|
2326
|
+
"sacred"
|
|
2327
|
+
],
|
|
2328
|
+
"requires": [
|
|
2329
|
+
"draft_exists"
|
|
2330
|
+
]
|
|
935
2331
|
},
|
|
936
2332
|
"beta-reader": {
|
|
937
2333
|
"category": "review",
|
|
938
|
-
"available": [
|
|
2334
|
+
"available": [
|
|
2335
|
+
"all"
|
|
2336
|
+
],
|
|
939
2337
|
"adapted": {
|
|
940
|
-
"academic": {
|
|
941
|
-
|
|
942
|
-
|
|
2338
|
+
"academic": {
|
|
2339
|
+
"rename": "reviewer-simulation"
|
|
2340
|
+
},
|
|
2341
|
+
"technical": {
|
|
2342
|
+
"rename": "usability-review"
|
|
2343
|
+
},
|
|
2344
|
+
"sacred": {
|
|
2345
|
+
"rename": "theological-review"
|
|
2346
|
+
}
|
|
943
2347
|
},
|
|
944
|
-
"requires": [
|
|
2348
|
+
"requires": [
|
|
2349
|
+
"draft_exists"
|
|
2350
|
+
]
|
|
945
2351
|
},
|
|
946
2352
|
"originality-check": {
|
|
947
2353
|
"category": "review",
|
|
948
|
-
"available": [
|
|
949
|
-
|
|
2354
|
+
"available": [
|
|
2355
|
+
"all"
|
|
2356
|
+
],
|
|
2357
|
+
"requires": [
|
|
2358
|
+
"draft_exists"
|
|
2359
|
+
]
|
|
950
2360
|
},
|
|
951
2361
|
"line-edit": {
|
|
952
2362
|
"category": "quality",
|
|
953
|
-
"available": [
|
|
954
|
-
|
|
2363
|
+
"available": [
|
|
2364
|
+
"all"
|
|
2365
|
+
],
|
|
2366
|
+
"requires": [
|
|
2367
|
+
"draft_exists"
|
|
2368
|
+
]
|
|
955
2369
|
},
|
|
956
2370
|
"copy-edit": {
|
|
957
2371
|
"category": "quality",
|
|
958
|
-
"available": [
|
|
959
|
-
|
|
2372
|
+
"available": [
|
|
2373
|
+
"all"
|
|
2374
|
+
],
|
|
2375
|
+
"requires": [
|
|
2376
|
+
"draft_exists"
|
|
2377
|
+
]
|
|
960
2378
|
},
|
|
961
2379
|
"polish": {
|
|
962
2380
|
"category": "quality",
|
|
963
|
-
"available": [
|
|
964
|
-
|
|
2381
|
+
"available": [
|
|
2382
|
+
"all"
|
|
2383
|
+
],
|
|
2384
|
+
"requires": [
|
|
2385
|
+
"draft_exists",
|
|
2386
|
+
"STYLE-GUIDE.md"
|
|
2387
|
+
]
|
|
965
2388
|
},
|
|
966
2389
|
"quick-write": {
|
|
967
2390
|
"category": "quality",
|
|
968
|
-
"available": [
|
|
2391
|
+
"available": [
|
|
2392
|
+
"all"
|
|
2393
|
+
]
|
|
969
2394
|
},
|
|
970
2395
|
"cover-art": {
|
|
971
2396
|
"category": "illustration",
|
|
972
|
-
"available": [
|
|
973
|
-
|
|
974
|
-
|
|
2397
|
+
"available": [
|
|
2398
|
+
"prose",
|
|
2399
|
+
"visual",
|
|
2400
|
+
"poetry",
|
|
2401
|
+
"sacred"
|
|
2402
|
+
],
|
|
2403
|
+
"hidden": [
|
|
2404
|
+
"script",
|
|
2405
|
+
"academic",
|
|
2406
|
+
"interactive",
|
|
2407
|
+
"speech_song"
|
|
2408
|
+
],
|
|
2409
|
+
"requires": [
|
|
2410
|
+
"WORK.md"
|
|
2411
|
+
]
|
|
975
2412
|
},
|
|
976
2413
|
"illustrate-scene": {
|
|
977
2414
|
"category": "illustration",
|
|
978
|
-
"available": [
|
|
979
|
-
|
|
980
|
-
|
|
2415
|
+
"available": [
|
|
2416
|
+
"prose",
|
|
2417
|
+
"visual",
|
|
2418
|
+
"interactive",
|
|
2419
|
+
"sacred"
|
|
2420
|
+
],
|
|
2421
|
+
"hidden": [
|
|
2422
|
+
"script",
|
|
2423
|
+
"academic",
|
|
2424
|
+
"poetry",
|
|
2425
|
+
"speech_song"
|
|
2426
|
+
],
|
|
2427
|
+
"requires": [
|
|
2428
|
+
"ART-DIRECTION.md",
|
|
2429
|
+
"draft_exists"
|
|
2430
|
+
]
|
|
981
2431
|
},
|
|
982
2432
|
"character-ref": {
|
|
983
2433
|
"category": "illustration",
|
|
984
|
-
"available": [
|
|
2434
|
+
"available": [
|
|
2435
|
+
"prose",
|
|
2436
|
+
"script",
|
|
2437
|
+
"visual",
|
|
2438
|
+
"interactive"
|
|
2439
|
+
],
|
|
985
2440
|
"adapted": {
|
|
986
|
-
"sacred": {
|
|
2441
|
+
"sacred": {
|
|
2442
|
+
"rename": "figure-ref"
|
|
2443
|
+
}
|
|
987
2444
|
},
|
|
988
|
-
"hidden": [
|
|
2445
|
+
"hidden": [
|
|
2446
|
+
"academic",
|
|
2447
|
+
"poetry",
|
|
2448
|
+
"speech_song"
|
|
2449
|
+
]
|
|
989
2450
|
},
|
|
990
2451
|
"art-direction": {
|
|
991
2452
|
"category": "illustration",
|
|
992
|
-
"available": [
|
|
993
|
-
|
|
2453
|
+
"available": [
|
|
2454
|
+
"prose",
|
|
2455
|
+
"visual",
|
|
2456
|
+
"interactive",
|
|
2457
|
+
"sacred"
|
|
2458
|
+
],
|
|
2459
|
+
"hidden": [
|
|
2460
|
+
"script",
|
|
2461
|
+
"academic",
|
|
2462
|
+
"poetry",
|
|
2463
|
+
"speech_song"
|
|
2464
|
+
]
|
|
994
2465
|
},
|
|
995
2466
|
"chapter-header": {
|
|
996
2467
|
"category": "illustration",
|
|
997
|
-
"available": [
|
|
998
|
-
|
|
2468
|
+
"available": [
|
|
2469
|
+
"prose",
|
|
2470
|
+
"sacred"
|
|
2471
|
+
],
|
|
2472
|
+
"hidden": [
|
|
2473
|
+
"script",
|
|
2474
|
+
"academic",
|
|
2475
|
+
"visual",
|
|
2476
|
+
"poetry",
|
|
2477
|
+
"interactive",
|
|
2478
|
+
"speech_song"
|
|
2479
|
+
]
|
|
999
2480
|
},
|
|
1000
2481
|
"map-illustration": {
|
|
1001
2482
|
"category": "illustration",
|
|
1002
|
-
"available": [
|
|
1003
|
-
|
|
1004
|
-
|
|
2483
|
+
"available": [
|
|
2484
|
+
"prose",
|
|
2485
|
+
"visual",
|
|
2486
|
+
"interactive",
|
|
2487
|
+
"sacred"
|
|
2488
|
+
],
|
|
2489
|
+
"hidden": [
|
|
2490
|
+
"script",
|
|
2491
|
+
"academic",
|
|
2492
|
+
"poetry",
|
|
2493
|
+
"speech_song"
|
|
2494
|
+
],
|
|
2495
|
+
"requires": [
|
|
2496
|
+
"WORLD.md"
|
|
2497
|
+
]
|
|
1005
2498
|
},
|
|
1006
2499
|
"spread-layout": {
|
|
1007
2500
|
"category": "illustration",
|
|
1008
|
-
"available": [
|
|
1009
|
-
|
|
2501
|
+
"available": [
|
|
2502
|
+
"visual"
|
|
2503
|
+
],
|
|
2504
|
+
"hidden": [
|
|
2505
|
+
"prose",
|
|
2506
|
+
"script",
|
|
2507
|
+
"academic",
|
|
2508
|
+
"poetry",
|
|
2509
|
+
"interactive",
|
|
2510
|
+
"speech_song",
|
|
2511
|
+
"sacred"
|
|
2512
|
+
]
|
|
1010
2513
|
},
|
|
1011
2514
|
"panel-layout": {
|
|
1012
2515
|
"category": "illustration",
|
|
1013
|
-
"available": [
|
|
2516
|
+
"available": [
|
|
2517
|
+
"visual"
|
|
2518
|
+
],
|
|
1014
2519
|
"constraint": "comic_only",
|
|
1015
|
-
"hidden": [
|
|
2520
|
+
"hidden": [
|
|
2521
|
+
"prose",
|
|
2522
|
+
"script",
|
|
2523
|
+
"academic",
|
|
2524
|
+
"poetry",
|
|
2525
|
+
"interactive",
|
|
2526
|
+
"speech_song",
|
|
2527
|
+
"sacred"
|
|
2528
|
+
]
|
|
1016
2529
|
},
|
|
1017
2530
|
"storyboard": {
|
|
1018
2531
|
"category": "illustration",
|
|
1019
|
-
"available": [
|
|
1020
|
-
|
|
2532
|
+
"available": [
|
|
2533
|
+
"script",
|
|
2534
|
+
"visual"
|
|
2535
|
+
],
|
|
2536
|
+
"hidden": [
|
|
2537
|
+
"prose",
|
|
2538
|
+
"academic",
|
|
2539
|
+
"poetry",
|
|
2540
|
+
"interactive",
|
|
2541
|
+
"speech_song",
|
|
2542
|
+
"sacred"
|
|
2543
|
+
]
|
|
1021
2544
|
},
|
|
1022
2545
|
"front-matter": {
|
|
1023
2546
|
"category": "publishing",
|
|
1024
|
-
"available": [
|
|
2547
|
+
"available": [
|
|
2548
|
+
"prose",
|
|
2549
|
+
"script",
|
|
2550
|
+
"academic",
|
|
2551
|
+
"visual",
|
|
2552
|
+
"sacred"
|
|
2553
|
+
],
|
|
1025
2554
|
"adapted": {
|
|
1026
|
-
"academic": {
|
|
1027
|
-
|
|
2555
|
+
"academic": {
|
|
2556
|
+
"behavior": "academic_front_matter"
|
|
2557
|
+
},
|
|
2558
|
+
"sacred": {
|
|
2559
|
+
"behavior": "sacred_front_matter"
|
|
2560
|
+
}
|
|
1028
2561
|
},
|
|
1029
|
-
"hidden": [
|
|
1030
|
-
|
|
2562
|
+
"hidden": [
|
|
2563
|
+
"poetry",
|
|
2564
|
+
"interactive",
|
|
2565
|
+
"speech_song"
|
|
2566
|
+
],
|
|
2567
|
+
"requires": [
|
|
2568
|
+
"complete-draft"
|
|
2569
|
+
]
|
|
1031
2570
|
},
|
|
1032
2571
|
"back-matter": {
|
|
1033
2572
|
"category": "publishing",
|
|
1034
|
-
"available": [
|
|
2573
|
+
"available": [
|
|
2574
|
+
"prose",
|
|
2575
|
+
"script",
|
|
2576
|
+
"academic",
|
|
2577
|
+
"visual",
|
|
2578
|
+
"sacred"
|
|
2579
|
+
],
|
|
1035
2580
|
"adapted": {
|
|
1036
|
-
"academic": {
|
|
1037
|
-
|
|
2581
|
+
"academic": {
|
|
2582
|
+
"behavior": "academic_back_matter"
|
|
2583
|
+
},
|
|
2584
|
+
"sacred": {
|
|
2585
|
+
"behavior": "sacred_back_matter"
|
|
2586
|
+
}
|
|
1038
2587
|
},
|
|
1039
|
-
"hidden": [
|
|
1040
|
-
|
|
2588
|
+
"hidden": [
|
|
2589
|
+
"poetry",
|
|
2590
|
+
"interactive",
|
|
2591
|
+
"speech_song"
|
|
2592
|
+
],
|
|
2593
|
+
"requires": [
|
|
2594
|
+
"complete-draft"
|
|
2595
|
+
]
|
|
1041
2596
|
},
|
|
1042
2597
|
"blurb": {
|
|
1043
2598
|
"category": "publishing",
|
|
1044
|
-
"available": [
|
|
1045
|
-
|
|
1046
|
-
|
|
2599
|
+
"available": [
|
|
2600
|
+
"prose",
|
|
2601
|
+
"script",
|
|
2602
|
+
"visual",
|
|
2603
|
+
"poetry",
|
|
2604
|
+
"interactive",
|
|
2605
|
+
"sacred"
|
|
2606
|
+
],
|
|
2607
|
+
"hidden": [
|
|
2608
|
+
"academic",
|
|
2609
|
+
"speech_song"
|
|
2610
|
+
],
|
|
2611
|
+
"requires": [
|
|
2612
|
+
"complete-draft"
|
|
2613
|
+
]
|
|
1047
2614
|
},
|
|
1048
2615
|
"synopsis": {
|
|
1049
2616
|
"category": "publishing",
|
|
1050
|
-
"available": [
|
|
1051
|
-
|
|
1052
|
-
|
|
2617
|
+
"available": [
|
|
2618
|
+
"prose",
|
|
2619
|
+
"script",
|
|
2620
|
+
"visual"
|
|
2621
|
+
],
|
|
2622
|
+
"hidden": [
|
|
2623
|
+
"academic",
|
|
2624
|
+
"poetry",
|
|
2625
|
+
"interactive",
|
|
2626
|
+
"speech_song",
|
|
2627
|
+
"sacred"
|
|
2628
|
+
],
|
|
2629
|
+
"requires": [
|
|
2630
|
+
"complete-draft"
|
|
2631
|
+
]
|
|
1053
2632
|
},
|
|
1054
2633
|
"query-letter": {
|
|
1055
2634
|
"category": "publishing",
|
|
1056
|
-
"available": [
|
|
1057
|
-
|
|
1058
|
-
|
|
2635
|
+
"available": [
|
|
2636
|
+
"prose",
|
|
2637
|
+
"script",
|
|
2638
|
+
"sacred"
|
|
2639
|
+
],
|
|
2640
|
+
"hidden": [
|
|
2641
|
+
"academic",
|
|
2642
|
+
"visual",
|
|
2643
|
+
"poetry",
|
|
2644
|
+
"interactive",
|
|
2645
|
+
"speech_song"
|
|
2646
|
+
],
|
|
2647
|
+
"requires": [
|
|
2648
|
+
"blurb",
|
|
2649
|
+
"synopsis"
|
|
2650
|
+
]
|
|
1059
2651
|
},
|
|
1060
2652
|
"book-proposal": {
|
|
1061
2653
|
"category": "publishing",
|
|
1062
|
-
"available": [
|
|
2654
|
+
"available": [
|
|
2655
|
+
"prose",
|
|
2656
|
+
"sacred"
|
|
2657
|
+
],
|
|
1063
2658
|
"constraint": "nonfiction_only",
|
|
1064
|
-
"hidden": [
|
|
1065
|
-
|
|
2659
|
+
"hidden": [
|
|
2660
|
+
"script",
|
|
2661
|
+
"academic",
|
|
2662
|
+
"visual",
|
|
2663
|
+
"poetry",
|
|
2664
|
+
"interactive",
|
|
2665
|
+
"speech_song"
|
|
2666
|
+
],
|
|
2667
|
+
"requires": [
|
|
2668
|
+
"synopsis"
|
|
2669
|
+
]
|
|
1066
2670
|
},
|
|
1067
2671
|
"discussion-questions": {
|
|
1068
2672
|
"category": "publishing",
|
|
1069
|
-
"available": [
|
|
2673
|
+
"available": [
|
|
2674
|
+
"prose"
|
|
2675
|
+
],
|
|
1070
2676
|
"adapted": {
|
|
1071
|
-
"sacred": {
|
|
2677
|
+
"sacred": {
|
|
2678
|
+
"rename": "study-questions"
|
|
2679
|
+
}
|
|
1072
2680
|
},
|
|
1073
|
-
"hidden": [
|
|
1074
|
-
|
|
2681
|
+
"hidden": [
|
|
2682
|
+
"script",
|
|
2683
|
+
"academic",
|
|
2684
|
+
"visual",
|
|
2685
|
+
"poetry",
|
|
2686
|
+
"interactive",
|
|
2687
|
+
"speech_song"
|
|
2688
|
+
],
|
|
2689
|
+
"requires": [
|
|
2690
|
+
"complete-draft"
|
|
2691
|
+
]
|
|
1075
2692
|
},
|
|
1076
2693
|
"publish": {
|
|
1077
2694
|
"category": "publishing",
|
|
1078
|
-
"available": [
|
|
2695
|
+
"available": [
|
|
2696
|
+
"all"
|
|
2697
|
+
],
|
|
1079
2698
|
"description": "Publishing wizard or preset-driven pipeline (wraps export commands)"
|
|
1080
2699
|
},
|
|
1081
2700
|
"export": {
|
|
1082
2701
|
"category": "publishing",
|
|
1083
|
-
"available": [
|
|
2702
|
+
"available": [
|
|
2703
|
+
"all"
|
|
2704
|
+
],
|
|
1084
2705
|
"description": "Compile and export manuscript to publication-ready formats (markdown, docx, pdf, epub, fountain, fdx, latex, packages)",
|
|
1085
|
-
"requires": [
|
|
2706
|
+
"requires": [
|
|
2707
|
+
"complete-draft"
|
|
2708
|
+
]
|
|
1086
2709
|
},
|
|
1087
2710
|
"autopilot-publish": {
|
|
1088
2711
|
"category": "publishing",
|
|
1089
|
-
"available": [
|
|
2712
|
+
"available": [
|
|
2713
|
+
"all"
|
|
2714
|
+
],
|
|
1090
2715
|
"description": "Run full publishing pipeline unattended with quality gate",
|
|
1091
|
-
"requires": [
|
|
2716
|
+
"requires": [
|
|
2717
|
+
"complete-draft"
|
|
2718
|
+
]
|
|
1092
2719
|
},
|
|
1093
2720
|
"build-ebook": {
|
|
1094
2721
|
"category": "publishing",
|
|
1095
|
-
"available": [
|
|
2722
|
+
"available": [
|
|
2723
|
+
"prose",
|
|
2724
|
+
"visual",
|
|
2725
|
+
"poetry",
|
|
2726
|
+
"interactive",
|
|
2727
|
+
"sacred"
|
|
2728
|
+
],
|
|
1096
2729
|
"description": "Build EPUB with platform-aware accessibility guardrails (Pandoc + EAA compliance)",
|
|
1097
|
-
"requires": [
|
|
2730
|
+
"requires": [
|
|
2731
|
+
"complete-draft"
|
|
2732
|
+
]
|
|
1098
2733
|
},
|
|
1099
2734
|
"build-print": {
|
|
1100
2735
|
"category": "publishing",
|
|
1101
|
-
"available": [
|
|
2736
|
+
"available": [
|
|
2737
|
+
"prose",
|
|
2738
|
+
"visual",
|
|
2739
|
+
"poetry",
|
|
2740
|
+
"sacred",
|
|
2741
|
+
"academic",
|
|
2742
|
+
"script"
|
|
2743
|
+
],
|
|
1102
2744
|
"description": "Build print-ready PDF with platform trim sizes and page-count guardrails (Pandoc + Typst), and academic publisher class wrappers for IEEE, ACM, Springer LNCS, Elsevier, and APA7 (Pandoc + LaTeX).",
|
|
1103
|
-
"requires": [
|
|
2745
|
+
"requires": [
|
|
2746
|
+
"complete-draft"
|
|
2747
|
+
]
|
|
1104
2748
|
},
|
|
1105
2749
|
"build-smashwords": {
|
|
1106
2750
|
"category": "publishing",
|
|
1107
|
-
"available": [
|
|
2751
|
+
"available": [
|
|
2752
|
+
"prose",
|
|
2753
|
+
"visual"
|
|
2754
|
+
],
|
|
1108
2755
|
"description": "Build Smashwords/D2D-compliant DOCX via Pandoc --reference-doc (no tabs, first-line indent via style, auto-TOC)",
|
|
1109
|
-
"requires": [
|
|
2756
|
+
"requires": [
|
|
2757
|
+
"complete-draft"
|
|
2758
|
+
]
|
|
1110
2759
|
},
|
|
1111
2760
|
"build-poetry-submission": {
|
|
1112
2761
|
"category": "publishing",
|
|
1113
|
-
"available": [
|
|
2762
|
+
"available": [
|
|
2763
|
+
"poetry"
|
|
2764
|
+
],
|
|
1114
2765
|
"description": "Build poetry submission manuscript DOCX (one poem per page, 12pt Times/Garamond, title page, TOC)",
|
|
1115
|
-
"requires": [
|
|
2766
|
+
"requires": [
|
|
2767
|
+
"complete-draft"
|
|
2768
|
+
]
|
|
1116
2769
|
},
|
|
1117
2770
|
"translate": {
|
|
1118
2771
|
"category": "translation",
|
|
1119
|
-
"available": [
|
|
2772
|
+
"available": [
|
|
2773
|
+
"all"
|
|
2774
|
+
],
|
|
1120
2775
|
"description": "Translate manuscript per-unit using fresh-context-per-unit pattern with glossary and translation memory",
|
|
1121
|
-
"requires": [
|
|
2776
|
+
"requires": [
|
|
2777
|
+
"complete-draft"
|
|
2778
|
+
]
|
|
1122
2779
|
},
|
|
1123
2780
|
"translation-glossary": {
|
|
1124
2781
|
"category": "translation",
|
|
1125
|
-
"available": [
|
|
2782
|
+
"available": [
|
|
2783
|
+
"all"
|
|
2784
|
+
],
|
|
1126
2785
|
"description": "Create and manage bilingual term glossary for consistent translation"
|
|
1127
2786
|
},
|
|
1128
2787
|
"translation-memory": {
|
|
1129
2788
|
"category": "translation",
|
|
1130
|
-
"available": [
|
|
2789
|
+
"available": [
|
|
2790
|
+
"all"
|
|
2791
|
+
],
|
|
1131
2792
|
"description": "Build and manage translation memory from completed translations"
|
|
1132
2793
|
},
|
|
1133
2794
|
"cultural-adaptation": {
|
|
1134
2795
|
"category": "translation",
|
|
1135
|
-
"available": [
|
|
2796
|
+
"available": [
|
|
2797
|
+
"all"
|
|
2798
|
+
],
|
|
1136
2799
|
"description": "Flag idioms, humor, customs, and cultural references that need localization",
|
|
1137
|
-
"requires": [
|
|
2800
|
+
"requires": [
|
|
2801
|
+
"translate"
|
|
2802
|
+
]
|
|
1138
2803
|
},
|
|
1139
2804
|
"back-translate": {
|
|
1140
2805
|
"category": "translation",
|
|
1141
|
-
"available": [
|
|
2806
|
+
"available": [
|
|
2807
|
+
"all"
|
|
2808
|
+
],
|
|
1142
2809
|
"description": "Translate translation back to source language for side-by-side verification",
|
|
1143
|
-
"requires": [
|
|
2810
|
+
"requires": [
|
|
2811
|
+
"translate"
|
|
2812
|
+
]
|
|
1144
2813
|
},
|
|
1145
2814
|
"multi-publish": {
|
|
1146
2815
|
"category": "translation",
|
|
1147
|
-
"available": [
|
|
2816
|
+
"available": [
|
|
2817
|
+
"all"
|
|
2818
|
+
],
|
|
1148
2819
|
"description": "Export translated editions in all target formats with localized front/back matter",
|
|
1149
|
-
"requires": [
|
|
2820
|
+
"requires": [
|
|
2821
|
+
"translate"
|
|
2822
|
+
]
|
|
1150
2823
|
},
|
|
1151
2824
|
"autopilot-translate": {
|
|
1152
2825
|
"category": "translation",
|
|
1153
|
-
"available": [
|
|
2826
|
+
"available": [
|
|
2827
|
+
"all"
|
|
2828
|
+
],
|
|
1154
2829
|
"description": "Run multi-language translation pipeline unattended with glossary, translation, and publishing",
|
|
1155
|
-
"requires": [
|
|
2830
|
+
"requires": [
|
|
2831
|
+
"complete-draft"
|
|
2832
|
+
]
|
|
1156
2833
|
},
|
|
1157
2834
|
"sacred:concordance": {
|
|
1158
2835
|
"category": "sacred_exclusive",
|
|
1159
|
-
"available": [
|
|
1160
|
-
|
|
1161
|
-
|
|
2836
|
+
"available": [
|
|
2837
|
+
"sacred"
|
|
2838
|
+
],
|
|
2839
|
+
"hidden": [
|
|
2840
|
+
"prose",
|
|
2841
|
+
"script",
|
|
2842
|
+
"academic",
|
|
2843
|
+
"visual",
|
|
2844
|
+
"poetry",
|
|
2845
|
+
"interactive",
|
|
2846
|
+
"speech_song"
|
|
2847
|
+
],
|
|
2848
|
+
"requires": [
|
|
2849
|
+
"draft_exists"
|
|
2850
|
+
]
|
|
1162
2851
|
},
|
|
1163
2852
|
"sacred:cross-reference": {
|
|
1164
2853
|
"category": "sacred_exclusive",
|
|
1165
|
-
"available": [
|
|
1166
|
-
|
|
1167
|
-
|
|
2854
|
+
"available": [
|
|
2855
|
+
"sacred"
|
|
2856
|
+
],
|
|
2857
|
+
"hidden": [
|
|
2858
|
+
"prose",
|
|
2859
|
+
"script",
|
|
2860
|
+
"academic",
|
|
2861
|
+
"visual",
|
|
2862
|
+
"poetry",
|
|
2863
|
+
"interactive",
|
|
2864
|
+
"speech_song"
|
|
2865
|
+
],
|
|
2866
|
+
"requires": [
|
|
2867
|
+
"draft_exists"
|
|
2868
|
+
]
|
|
1168
2869
|
},
|
|
1169
2870
|
"sacred:genealogy": {
|
|
1170
2871
|
"category": "sacred_exclusive",
|
|
1171
|
-
"available": [
|
|
1172
|
-
|
|
1173
|
-
|
|
2872
|
+
"available": [
|
|
2873
|
+
"sacred"
|
|
2874
|
+
],
|
|
2875
|
+
"hidden": [
|
|
2876
|
+
"prose",
|
|
2877
|
+
"script",
|
|
2878
|
+
"academic",
|
|
2879
|
+
"visual",
|
|
2880
|
+
"poetry",
|
|
2881
|
+
"interactive",
|
|
2882
|
+
"speech_song"
|
|
2883
|
+
],
|
|
2884
|
+
"requires": [
|
|
2885
|
+
"FIGURES.md",
|
|
2886
|
+
{
|
|
2887
|
+
"min_figures": 2
|
|
2888
|
+
}
|
|
2889
|
+
]
|
|
1174
2890
|
},
|
|
1175
2891
|
"sacred:chronology": {
|
|
1176
2892
|
"category": "sacred_exclusive",
|
|
1177
|
-
"available": [
|
|
1178
|
-
|
|
2893
|
+
"available": [
|
|
2894
|
+
"sacred"
|
|
2895
|
+
],
|
|
2896
|
+
"hidden": [
|
|
2897
|
+
"prose",
|
|
2898
|
+
"script",
|
|
2899
|
+
"academic",
|
|
2900
|
+
"visual",
|
|
2901
|
+
"poetry",
|
|
2902
|
+
"interactive",
|
|
2903
|
+
"speech_song"
|
|
2904
|
+
]
|
|
1179
2905
|
},
|
|
1180
2906
|
"sacred:annotation-layer": {
|
|
1181
2907
|
"category": "sacred_exclusive",
|
|
1182
|
-
"available": [
|
|
1183
|
-
|
|
1184
|
-
|
|
2908
|
+
"available": [
|
|
2909
|
+
"sacred"
|
|
2910
|
+
],
|
|
2911
|
+
"hidden": [
|
|
2912
|
+
"prose",
|
|
2913
|
+
"script",
|
|
2914
|
+
"academic",
|
|
2915
|
+
"visual",
|
|
2916
|
+
"poetry",
|
|
2917
|
+
"interactive",
|
|
2918
|
+
"speech_song"
|
|
2919
|
+
],
|
|
2920
|
+
"requires": [
|
|
2921
|
+
"draft_exists"
|
|
2922
|
+
]
|
|
1185
2923
|
},
|
|
1186
2924
|
"sacred:verse-numbering": {
|
|
1187
2925
|
"category": "sacred_exclusive",
|
|
1188
|
-
"available": [
|
|
1189
|
-
|
|
1190
|
-
|
|
2926
|
+
"available": [
|
|
2927
|
+
"sacred"
|
|
2928
|
+
],
|
|
2929
|
+
"hidden": [
|
|
2930
|
+
"prose",
|
|
2931
|
+
"script",
|
|
2932
|
+
"academic",
|
|
2933
|
+
"visual",
|
|
2934
|
+
"poetry",
|
|
2935
|
+
"interactive",
|
|
2936
|
+
"speech_song"
|
|
2937
|
+
],
|
|
2938
|
+
"requires": [
|
|
2939
|
+
"draft_exists"
|
|
2940
|
+
]
|
|
1191
2941
|
},
|
|
1192
2942
|
"sacred-numbering-format": {
|
|
1193
2943
|
"category": "sacred_exclusive",
|
|
1194
|
-
"available": [
|
|
1195
|
-
|
|
1196
|
-
|
|
2944
|
+
"available": [
|
|
2945
|
+
"sacred"
|
|
2946
|
+
],
|
|
2947
|
+
"hidden": [
|
|
2948
|
+
"prose",
|
|
2949
|
+
"script",
|
|
2950
|
+
"academic",
|
|
2951
|
+
"visual",
|
|
2952
|
+
"poetry",
|
|
2953
|
+
"interactive",
|
|
2954
|
+
"speech_song"
|
|
2955
|
+
],
|
|
2956
|
+
"requires": [
|
|
2957
|
+
"config.tradition"
|
|
2958
|
+
]
|
|
1197
2959
|
},
|
|
1198
2960
|
"sacred:source-tracking": {
|
|
1199
2961
|
"category": "sacred_exclusive",
|
|
1200
|
-
"available": [
|
|
1201
|
-
|
|
2962
|
+
"available": [
|
|
2963
|
+
"sacred"
|
|
2964
|
+
],
|
|
2965
|
+
"hidden": [
|
|
2966
|
+
"prose",
|
|
2967
|
+
"script",
|
|
2968
|
+
"academic",
|
|
2969
|
+
"visual",
|
|
2970
|
+
"poetry",
|
|
2971
|
+
"interactive",
|
|
2972
|
+
"speech_song"
|
|
2973
|
+
]
|
|
1202
2974
|
},
|
|
1203
2975
|
"sacred:doctrinal-check": {
|
|
1204
2976
|
"category": "sacred_exclusive",
|
|
1205
|
-
"available": [
|
|
1206
|
-
|
|
1207
|
-
|
|
2977
|
+
"available": [
|
|
2978
|
+
"sacred"
|
|
2979
|
+
],
|
|
2980
|
+
"hidden": [
|
|
2981
|
+
"prose",
|
|
2982
|
+
"script",
|
|
2983
|
+
"academic",
|
|
2984
|
+
"visual",
|
|
2985
|
+
"poetry",
|
|
2986
|
+
"interactive",
|
|
2987
|
+
"speech_song"
|
|
2988
|
+
],
|
|
2989
|
+
"requires": [
|
|
2990
|
+
"draft_exists",
|
|
2991
|
+
"DOCTRINES.md"
|
|
2992
|
+
]
|
|
1208
2993
|
},
|
|
1209
2994
|
"manager": {
|
|
1210
2995
|
"category": "utility",
|
|
1211
|
-
"available": [
|
|
2996
|
+
"available": [
|
|
2997
|
+
"all"
|
|
2998
|
+
],
|
|
1212
2999
|
"description": "Interactive command center for managing multiple writing projects"
|
|
1213
3000
|
},
|
|
1214
3001
|
"health": {
|
|
1215
3002
|
"category": "utility",
|
|
1216
|
-
"available": [
|
|
3003
|
+
"available": [
|
|
3004
|
+
"all"
|
|
3005
|
+
],
|
|
1217
3006
|
"description": "Diagnose and repair common project state issues"
|
|
1218
3007
|
},
|
|
1219
3008
|
"scan": {
|
|
1220
3009
|
"category": "utility",
|
|
1221
|
-
"available": [
|
|
3010
|
+
"available": [
|
|
3011
|
+
"all"
|
|
3012
|
+
],
|
|
1222
3013
|
"description": "Detect drift between recorded state (STATE.md, OUTLINE.md, config.json) and what is on disk"
|
|
1223
3014
|
},
|
|
1224
3015
|
"sync": {
|
|
1225
3016
|
"category": "utility",
|
|
1226
|
-
"available": [
|
|
3017
|
+
"available": [
|
|
3018
|
+
"all"
|
|
3019
|
+
],
|
|
1227
3020
|
"description": "Synchronize installed Scriveno runtime commands, skills, and agents with the current source"
|
|
1228
3021
|
},
|
|
1229
3022
|
"cleanup": {
|
|
1230
3023
|
"category": "utility",
|
|
1231
|
-
"available": [
|
|
3024
|
+
"available": [
|
|
3025
|
+
"all"
|
|
3026
|
+
],
|
|
1232
3027
|
"description": "Strip template scaffold markers from draft files"
|
|
1233
3028
|
},
|
|
1234
3029
|
"validate": {
|
|
1235
3030
|
"category": "utility",
|
|
1236
|
-
"available": [
|
|
3031
|
+
"available": [
|
|
3032
|
+
"all"
|
|
3033
|
+
],
|
|
1237
3034
|
"description": "Scan manuscript for unresolved scaffold markers before export"
|
|
1238
3035
|
},
|
|
1239
3036
|
"fast": {
|
|
1240
3037
|
"category": "utility",
|
|
1241
|
-
"available": [
|
|
3038
|
+
"available": [
|
|
3039
|
+
"all"
|
|
3040
|
+
],
|
|
1242
3041
|
"description": "Make a quick inline edit without full planning overhead"
|
|
1243
3042
|
},
|
|
1244
3043
|
"add-note": {
|
|
1245
3044
|
"category": "utility",
|
|
1246
|
-
"available": [
|
|
3045
|
+
"available": [
|
|
3046
|
+
"all"
|
|
3047
|
+
],
|
|
1247
3048
|
"description": "Add a quick note or reminder to the project notes file"
|
|
1248
3049
|
},
|
|
1249
3050
|
"check-notes": {
|
|
1250
3051
|
"category": "utility",
|
|
1251
|
-
"available": [
|
|
3052
|
+
"available": [
|
|
3053
|
+
"all"
|
|
3054
|
+
],
|
|
1252
3055
|
"description": "Review all project notes"
|
|
1253
3056
|
},
|
|
1254
3057
|
"plant-seed": {
|
|
1255
3058
|
"category": "utility",
|
|
1256
|
-
"available": [
|
|
3059
|
+
"available": [
|
|
3060
|
+
"all"
|
|
3061
|
+
],
|
|
1257
3062
|
"description": "Plant a creative seed -- an idea, image, or fragment for future use"
|
|
1258
3063
|
},
|
|
1259
3064
|
"troubleshoot": {
|
|
1260
3065
|
"category": "utility",
|
|
1261
|
-
"available": [
|
|
3066
|
+
"available": [
|
|
3067
|
+
"all"
|
|
3068
|
+
],
|
|
1262
3069
|
"description": "Diagnose why something isn't working and suggest fixes"
|
|
1263
3070
|
},
|
|
1264
3071
|
"thread": {
|
|
1265
3072
|
"category": "utility",
|
|
1266
|
-
"available": [
|
|
3073
|
+
"available": [
|
|
3074
|
+
"all"
|
|
3075
|
+
],
|
|
1267
3076
|
"description": "Start or continue a focused conversation thread on a specific topic"
|
|
1268
3077
|
},
|
|
1269
|
-
"settings": {
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
"
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
3078
|
+
"settings": {
|
|
3079
|
+
"category": "utility",
|
|
3080
|
+
"available": [
|
|
3081
|
+
"all"
|
|
3082
|
+
]
|
|
3083
|
+
},
|
|
3084
|
+
"profile-writer": {
|
|
3085
|
+
"category": "utility",
|
|
3086
|
+
"available": [
|
|
3087
|
+
"all"
|
|
3088
|
+
]
|
|
3089
|
+
},
|
|
3090
|
+
"save": {
|
|
3091
|
+
"category": "session",
|
|
3092
|
+
"available": [
|
|
3093
|
+
"all"
|
|
3094
|
+
]
|
|
3095
|
+
},
|
|
3096
|
+
"history": {
|
|
3097
|
+
"category": "session",
|
|
3098
|
+
"available": [
|
|
3099
|
+
"all"
|
|
3100
|
+
]
|
|
3101
|
+
},
|
|
3102
|
+
"compare": {
|
|
3103
|
+
"category": "session",
|
|
3104
|
+
"available": [
|
|
3105
|
+
"all"
|
|
3106
|
+
]
|
|
3107
|
+
},
|
|
3108
|
+
"versions": {
|
|
3109
|
+
"category": "session",
|
|
3110
|
+
"available": [
|
|
3111
|
+
"all"
|
|
3112
|
+
]
|
|
3113
|
+
},
|
|
3114
|
+
"undo": {
|
|
3115
|
+
"category": "session",
|
|
3116
|
+
"available": [
|
|
3117
|
+
"all"
|
|
3118
|
+
]
|
|
3119
|
+
},
|
|
3120
|
+
"pause-work": {
|
|
3121
|
+
"category": "session",
|
|
3122
|
+
"available": [
|
|
3123
|
+
"all"
|
|
3124
|
+
]
|
|
3125
|
+
},
|
|
3126
|
+
"resume-work": {
|
|
3127
|
+
"category": "session",
|
|
3128
|
+
"available": [
|
|
3129
|
+
"all"
|
|
3130
|
+
]
|
|
3131
|
+
},
|
|
3132
|
+
"session-report": {
|
|
3133
|
+
"category": "session",
|
|
3134
|
+
"available": [
|
|
3135
|
+
"all"
|
|
3136
|
+
]
|
|
3137
|
+
},
|
|
1279
3138
|
"track": {
|
|
1280
3139
|
"category": "collaboration",
|
|
1281
3140
|
"description": "Manage revision tracks -- create, switch, compare, merge, and propose changes",
|
|
1282
|
-
"subcommands": [
|
|
1283
|
-
|
|
3141
|
+
"subcommands": [
|
|
3142
|
+
"create",
|
|
3143
|
+
"list",
|
|
3144
|
+
"switch",
|
|
3145
|
+
"compare",
|
|
3146
|
+
"merge",
|
|
3147
|
+
"propose"
|
|
3148
|
+
],
|
|
3149
|
+
"available": [
|
|
3150
|
+
"prose",
|
|
3151
|
+
"script",
|
|
3152
|
+
"academic",
|
|
3153
|
+
"technical",
|
|
3154
|
+
"visual",
|
|
3155
|
+
"sacred",
|
|
3156
|
+
"poetry",
|
|
3157
|
+
"interactive",
|
|
3158
|
+
"speech_song"
|
|
3159
|
+
],
|
|
1284
3160
|
"hidden": [],
|
|
1285
3161
|
"requires": [],
|
|
1286
3162
|
"co_writing": true
|
|
1287
3163
|
},
|
|
1288
|
-
"manuscript-stats": {
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
3164
|
+
"manuscript-stats": {
|
|
3165
|
+
"category": "navigation",
|
|
3166
|
+
"available": [
|
|
3167
|
+
"all"
|
|
3168
|
+
]
|
|
3169
|
+
},
|
|
3170
|
+
"complete-draft": {
|
|
3171
|
+
"category": "core",
|
|
3172
|
+
"available": [
|
|
3173
|
+
"all"
|
|
3174
|
+
]
|
|
3175
|
+
},
|
|
3176
|
+
"new-revision": {
|
|
3177
|
+
"category": "core",
|
|
3178
|
+
"available": [
|
|
3179
|
+
"all"
|
|
3180
|
+
]
|
|
3181
|
+
},
|
|
3182
|
+
"autopilot": {
|
|
3183
|
+
"category": "core",
|
|
3184
|
+
"available": [
|
|
3185
|
+
"all"
|
|
3186
|
+
]
|
|
3187
|
+
},
|
|
3188
|
+
"series-bible": {
|
|
3189
|
+
"category": "core",
|
|
3190
|
+
"available": [
|
|
3191
|
+
"all"
|
|
3192
|
+
]
|
|
3193
|
+
}
|
|
1293
3194
|
},
|
|
1294
|
-
|
|
1295
3195
|
"exports": {
|
|
1296
|
-
"markdown": {
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
"
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
"
|
|
1313
|
-
|
|
3196
|
+
"markdown": {
|
|
3197
|
+
"available": [
|
|
3198
|
+
"all"
|
|
3199
|
+
]
|
|
3200
|
+
},
|
|
3201
|
+
"docx_manuscript": {
|
|
3202
|
+
"available": [
|
|
3203
|
+
"prose",
|
|
3204
|
+
"script",
|
|
3205
|
+
"academic",
|
|
3206
|
+
"technical",
|
|
3207
|
+
"poetry",
|
|
3208
|
+
"speech_song",
|
|
3209
|
+
"sacred"
|
|
3210
|
+
]
|
|
3211
|
+
},
|
|
3212
|
+
"docx_formatted": {
|
|
3213
|
+
"available": [
|
|
3214
|
+
"prose",
|
|
3215
|
+
"academic",
|
|
3216
|
+
"technical",
|
|
3217
|
+
"poetry",
|
|
3218
|
+
"speech_song",
|
|
3219
|
+
"sacred"
|
|
3220
|
+
]
|
|
3221
|
+
},
|
|
3222
|
+
"pdf_manuscript": {
|
|
3223
|
+
"available": [
|
|
3224
|
+
"prose",
|
|
3225
|
+
"script",
|
|
3226
|
+
"academic",
|
|
3227
|
+
"technical",
|
|
3228
|
+
"visual",
|
|
3229
|
+
"poetry",
|
|
3230
|
+
"speech_song",
|
|
3231
|
+
"sacred"
|
|
3232
|
+
]
|
|
3233
|
+
},
|
|
3234
|
+
"pdf_print_ready": {
|
|
3235
|
+
"available": [
|
|
3236
|
+
"prose",
|
|
3237
|
+
"visual",
|
|
3238
|
+
"poetry",
|
|
3239
|
+
"sacred"
|
|
3240
|
+
]
|
|
3241
|
+
},
|
|
3242
|
+
"fountain": {
|
|
3243
|
+
"available": [
|
|
3244
|
+
"script"
|
|
3245
|
+
]
|
|
3246
|
+
},
|
|
3247
|
+
"fdx": {
|
|
3248
|
+
"available": [
|
|
3249
|
+
"script"
|
|
3250
|
+
],
|
|
3251
|
+
"constraint": "screenplay_or_tv_only"
|
|
3252
|
+
},
|
|
3253
|
+
"latex": {
|
|
3254
|
+
"available": [
|
|
3255
|
+
"academic",
|
|
3256
|
+
"sacred"
|
|
3257
|
+
],
|
|
3258
|
+
"note_for_sacred": "critical editions"
|
|
3259
|
+
},
|
|
3260
|
+
"epub": {
|
|
3261
|
+
"available": [
|
|
3262
|
+
"prose",
|
|
3263
|
+
"visual",
|
|
3264
|
+
"poetry",
|
|
3265
|
+
"interactive",
|
|
3266
|
+
"sacred"
|
|
3267
|
+
]
|
|
3268
|
+
},
|
|
3269
|
+
"build_ebook": {
|
|
3270
|
+
"available": [
|
|
3271
|
+
"prose",
|
|
3272
|
+
"visual",
|
|
3273
|
+
"poetry",
|
|
3274
|
+
"interactive",
|
|
3275
|
+
"sacred"
|
|
3276
|
+
]
|
|
3277
|
+
},
|
|
3278
|
+
"build_print": {
|
|
3279
|
+
"available": [
|
|
3280
|
+
"prose",
|
|
3281
|
+
"visual",
|
|
3282
|
+
"poetry",
|
|
3283
|
+
"sacred",
|
|
3284
|
+
"academic",
|
|
3285
|
+
"script"
|
|
3286
|
+
]
|
|
3287
|
+
},
|
|
3288
|
+
"mobi": {
|
|
3289
|
+
"available": [
|
|
3290
|
+
"prose",
|
|
3291
|
+
"visual",
|
|
3292
|
+
"sacred"
|
|
3293
|
+
]
|
|
3294
|
+
},
|
|
3295
|
+
"kdp_package": {
|
|
3296
|
+
"available": [
|
|
3297
|
+
"prose",
|
|
3298
|
+
"visual",
|
|
3299
|
+
"poetry",
|
|
3300
|
+
"sacred"
|
|
3301
|
+
]
|
|
3302
|
+
},
|
|
3303
|
+
"ingram_package": {
|
|
3304
|
+
"available": [
|
|
3305
|
+
"prose",
|
|
3306
|
+
"visual",
|
|
3307
|
+
"poetry",
|
|
3308
|
+
"sacred"
|
|
3309
|
+
]
|
|
3310
|
+
},
|
|
3311
|
+
"query_package": {
|
|
3312
|
+
"available": [
|
|
3313
|
+
"prose",
|
|
3314
|
+
"script",
|
|
3315
|
+
"sacred"
|
|
3316
|
+
]
|
|
3317
|
+
},
|
|
3318
|
+
"submission_package": {
|
|
3319
|
+
"available": [
|
|
3320
|
+
"prose",
|
|
3321
|
+
"script",
|
|
3322
|
+
"sacred"
|
|
3323
|
+
]
|
|
3324
|
+
},
|
|
3325
|
+
"apa_mla_chicago": {
|
|
3326
|
+
"available": [
|
|
3327
|
+
"academic"
|
|
3328
|
+
]
|
|
3329
|
+
},
|
|
3330
|
+
"bibtex": {
|
|
3331
|
+
"available": [
|
|
3332
|
+
"academic"
|
|
3333
|
+
]
|
|
3334
|
+
}
|
|
1314
3335
|
},
|
|
1315
|
-
|
|
1316
3336
|
"dependencies": {
|
|
1317
3337
|
"core_chain": [
|
|
1318
|
-
{
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
{
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
3338
|
+
{
|
|
3339
|
+
"command": "new-work",
|
|
3340
|
+
"requires": []
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"command": "discuss",
|
|
3344
|
+
"requires": [
|
|
3345
|
+
"OUTLINE.md"
|
|
3346
|
+
]
|
|
3347
|
+
},
|
|
3348
|
+
{
|
|
3349
|
+
"command": "plan",
|
|
3350
|
+
"requires": [
|
|
3351
|
+
"{N}-CONTEXT.md"
|
|
3352
|
+
]
|
|
3353
|
+
},
|
|
3354
|
+
{
|
|
3355
|
+
"command": "draft",
|
|
3356
|
+
"requires": [
|
|
3357
|
+
".manuscript/plans/{N}-*-PLAN.md"
|
|
3358
|
+
]
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"command": "editor-review",
|
|
3362
|
+
"requires": [
|
|
3363
|
+
".manuscript/drafts/body/{N}-*-DRAFT.md"
|
|
3364
|
+
]
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"command": "submit",
|
|
3368
|
+
"requires": [
|
|
3369
|
+
".manuscript/reviews/{N}-REVIEW.md"
|
|
3370
|
+
]
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"command": "complete-draft",
|
|
3374
|
+
"requires": [
|
|
3375
|
+
"all_units_submitted"
|
|
3376
|
+
]
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"command": "new-revision",
|
|
3380
|
+
"requires": [
|
|
3381
|
+
"archived_draft"
|
|
3382
|
+
]
|
|
3383
|
+
}
|
|
1326
3384
|
],
|
|
1327
3385
|
"feature_prerequisites": {
|
|
1328
|
-
"relationship-map": [
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
"
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
"
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
"
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
"
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
"
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
"
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
"
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
"
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
"
|
|
1364
|
-
|
|
3386
|
+
"relationship-map": [
|
|
3387
|
+
"CHARACTERS.md",
|
|
3388
|
+
{
|
|
3389
|
+
"min_characters": 2
|
|
3390
|
+
}
|
|
3391
|
+
],
|
|
3392
|
+
"subplot-map": [
|
|
3393
|
+
"OUTLINE.md",
|
|
3394
|
+
{
|
|
3395
|
+
"min_threads": 2
|
|
3396
|
+
}
|
|
3397
|
+
],
|
|
3398
|
+
"character-arc": [
|
|
3399
|
+
"CHARACTERS.md"
|
|
3400
|
+
],
|
|
3401
|
+
"character-voice-sample": [
|
|
3402
|
+
"CHARACTERS.md",
|
|
3403
|
+
"STYLE-GUIDE.md"
|
|
3404
|
+
],
|
|
3405
|
+
"plot-graph": [
|
|
3406
|
+
"OUTLINE.md"
|
|
3407
|
+
],
|
|
3408
|
+
"timeline": [
|
|
3409
|
+
"OUTLINE.md"
|
|
3410
|
+
],
|
|
3411
|
+
"theme-tracker": [
|
|
3412
|
+
"THEMES.md"
|
|
3413
|
+
],
|
|
3414
|
+
"subject-touch": [
|
|
3415
|
+
"THEMES.md",
|
|
3416
|
+
"draft_exists"
|
|
3417
|
+
],
|
|
3418
|
+
"continuity-check": [
|
|
3419
|
+
"draft_exists"
|
|
3420
|
+
],
|
|
3421
|
+
"voice-check": [
|
|
3422
|
+
"draft_exists",
|
|
3423
|
+
"STYLE-GUIDE.md"
|
|
3424
|
+
],
|
|
3425
|
+
"pacing-analysis": [
|
|
3426
|
+
"draft_exists"
|
|
3427
|
+
],
|
|
3428
|
+
"dialogue-audit": [
|
|
3429
|
+
"draft_exists_with_dialogue"
|
|
3430
|
+
],
|
|
3431
|
+
"beta-reader": [
|
|
3432
|
+
"draft_exists"
|
|
3433
|
+
],
|
|
3434
|
+
"line-edit": [
|
|
3435
|
+
"draft_exists"
|
|
3436
|
+
],
|
|
3437
|
+
"copy-edit": [
|
|
3438
|
+
"draft_exists"
|
|
3439
|
+
],
|
|
3440
|
+
"sensitivity-review": [
|
|
3441
|
+
"draft_exists"
|
|
3442
|
+
],
|
|
3443
|
+
"originality-check": [
|
|
3444
|
+
"draft_exists"
|
|
3445
|
+
],
|
|
3446
|
+
"polish": [
|
|
3447
|
+
"draft_exists",
|
|
3448
|
+
"STYLE-GUIDE.md"
|
|
3449
|
+
],
|
|
3450
|
+
"illustrate-scene": [
|
|
3451
|
+
"ART-DIRECTION.md",
|
|
3452
|
+
"scene_drafted"
|
|
3453
|
+
],
|
|
3454
|
+
"character-ref": [
|
|
3455
|
+
"CHARACTERS.md"
|
|
3456
|
+
],
|
|
3457
|
+
"cover-art": [
|
|
3458
|
+
"WORK.md"
|
|
3459
|
+
],
|
|
3460
|
+
"map-illustration": [
|
|
3461
|
+
"WORLD.md"
|
|
3462
|
+
],
|
|
3463
|
+
"sacred:concordance": [
|
|
3464
|
+
"draft_exists"
|
|
3465
|
+
],
|
|
3466
|
+
"sacred:cross-reference": [
|
|
3467
|
+
"draft_exists"
|
|
3468
|
+
],
|
|
3469
|
+
"sacred:genealogy": [
|
|
3470
|
+
"FIGURES.md",
|
|
3471
|
+
{
|
|
3472
|
+
"min_figures": 2
|
|
3473
|
+
}
|
|
3474
|
+
],
|
|
3475
|
+
"sacred:chronology": [
|
|
3476
|
+
"OUTLINE.md"
|
|
3477
|
+
],
|
|
3478
|
+
"sacred:annotation-layer": [
|
|
3479
|
+
"draft_exists"
|
|
3480
|
+
],
|
|
3481
|
+
"sacred:verse-numbering": [
|
|
3482
|
+
"draft_exists"
|
|
3483
|
+
],
|
|
3484
|
+
"sacred:source-tracking": [
|
|
3485
|
+
"WORK.md"
|
|
3486
|
+
],
|
|
3487
|
+
"sacred:doctrinal-check": [
|
|
3488
|
+
"draft_exists",
|
|
3489
|
+
"DOCTRINES.md"
|
|
3490
|
+
],
|
|
3491
|
+
"outline": [
|
|
3492
|
+
"OUTLINE.md"
|
|
3493
|
+
],
|
|
3494
|
+
"add-unit": [
|
|
3495
|
+
"OUTLINE.md"
|
|
3496
|
+
],
|
|
3497
|
+
"insert-unit": [
|
|
3498
|
+
"OUTLINE.md"
|
|
3499
|
+
],
|
|
3500
|
+
"remove-unit": [
|
|
3501
|
+
"OUTLINE.md"
|
|
3502
|
+
],
|
|
3503
|
+
"split-unit": [
|
|
3504
|
+
"OUTLINE.md"
|
|
3505
|
+
],
|
|
3506
|
+
"merge-units": [
|
|
3507
|
+
"OUTLINE.md"
|
|
3508
|
+
],
|
|
3509
|
+
"reorder-units": [
|
|
3510
|
+
"OUTLINE.md"
|
|
3511
|
+
]
|
|
1365
3512
|
},
|
|
1366
3513
|
"publishing_prerequisites": {
|
|
1367
|
-
"front-matter": [
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
"
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
"
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
"
|
|
3514
|
+
"front-matter": [
|
|
3515
|
+
"complete-draft"
|
|
3516
|
+
],
|
|
3517
|
+
"back-matter": [
|
|
3518
|
+
"complete-draft"
|
|
3519
|
+
],
|
|
3520
|
+
"blurb": [
|
|
3521
|
+
"complete-draft"
|
|
3522
|
+
],
|
|
3523
|
+
"synopsis": [
|
|
3524
|
+
"complete-draft"
|
|
3525
|
+
],
|
|
3526
|
+
"query-letter": [
|
|
3527
|
+
"blurb",
|
|
3528
|
+
"synopsis"
|
|
3529
|
+
],
|
|
3530
|
+
"book-proposal": [
|
|
3531
|
+
"synopsis",
|
|
3532
|
+
"sample_chapter"
|
|
3533
|
+
],
|
|
3534
|
+
"discussion-questions": [
|
|
3535
|
+
"complete-draft"
|
|
3536
|
+
],
|
|
3537
|
+
"export": [
|
|
3538
|
+
"complete-draft"
|
|
3539
|
+
],
|
|
3540
|
+
"kdp-package": [
|
|
3541
|
+
"front-matter",
|
|
3542
|
+
"back-matter",
|
|
3543
|
+
"export"
|
|
3544
|
+
],
|
|
3545
|
+
"translate": [
|
|
3546
|
+
"complete-draft"
|
|
3547
|
+
],
|
|
1377
3548
|
"translation-glossary": [],
|
|
1378
|
-
"translation-memory": [
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
"
|
|
1382
|
-
|
|
3549
|
+
"translation-memory": [
|
|
3550
|
+
"translate"
|
|
3551
|
+
],
|
|
3552
|
+
"cultural-adaptation": [
|
|
3553
|
+
"translate"
|
|
3554
|
+
],
|
|
3555
|
+
"back-translate": [
|
|
3556
|
+
"translate"
|
|
3557
|
+
],
|
|
3558
|
+
"multi-publish": [
|
|
3559
|
+
"translate",
|
|
3560
|
+
"kdp-package"
|
|
3561
|
+
],
|
|
3562
|
+
"autopilot-translate": [
|
|
3563
|
+
"complete-draft"
|
|
3564
|
+
]
|
|
1383
3565
|
},
|
|
1384
3566
|
"soft_prerequisites": {
|
|
1385
|
-
"draft": {
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
"
|
|
1392
|
-
|
|
1393
|
-
|
|
3567
|
+
"draft": {
|
|
3568
|
+
"recommended": [
|
|
3569
|
+
"discuss"
|
|
3570
|
+
],
|
|
3571
|
+
"without_it": "Uses defaults from STYLE-GUIDE.md"
|
|
3572
|
+
},
|
|
3573
|
+
"plan": {
|
|
3574
|
+
"recommended": [
|
|
3575
|
+
"research_enabled"
|
|
3576
|
+
],
|
|
3577
|
+
"without_it": "Plans without genre research"
|
|
3578
|
+
},
|
|
3579
|
+
"cover-art": {
|
|
3580
|
+
"recommended": [
|
|
3581
|
+
"CHARACTERS.md",
|
|
3582
|
+
"ART-DIRECTION.md"
|
|
3583
|
+
],
|
|
3584
|
+
"without_it": "Generates from WORK.md alone"
|
|
3585
|
+
},
|
|
3586
|
+
"translate": {
|
|
3587
|
+
"recommended": [
|
|
3588
|
+
"translation-glossary"
|
|
3589
|
+
],
|
|
3590
|
+
"without_it": "Translates without term consistency"
|
|
3591
|
+
},
|
|
3592
|
+
"cultural-adaptation": {
|
|
3593
|
+
"recommended": [
|
|
3594
|
+
"translation-glossary"
|
|
3595
|
+
],
|
|
3596
|
+
"without_it": "Flags issues without glossary context"
|
|
3597
|
+
},
|
|
3598
|
+
"back-translate": {
|
|
3599
|
+
"recommended": [
|
|
3600
|
+
"cultural-adaptation"
|
|
3601
|
+
],
|
|
3602
|
+
"without_it": "Verifies without cultural adaptation context"
|
|
3603
|
+
},
|
|
3604
|
+
"multi-publish": {
|
|
3605
|
+
"recommended": [
|
|
3606
|
+
"back-translate",
|
|
3607
|
+
"cultural-adaptation"
|
|
3608
|
+
],
|
|
3609
|
+
"without_it": "Publishes without quality verification"
|
|
3610
|
+
},
|
|
3611
|
+
"autopilot-translate": {
|
|
3612
|
+
"recommended": [
|
|
3613
|
+
"translation-glossary"
|
|
3614
|
+
],
|
|
3615
|
+
"without_it": "Creates glossary automatically during pipeline"
|
|
3616
|
+
},
|
|
3617
|
+
"autopilot": {
|
|
3618
|
+
"recommended": [
|
|
3619
|
+
"profile-writer"
|
|
3620
|
+
],
|
|
3621
|
+
"without_it": "Uses config defaults"
|
|
3622
|
+
}
|
|
1394
3623
|
}
|
|
1395
3624
|
},
|
|
1396
|
-
|
|
1397
3625
|
"command_adaptations": {
|
|
1398
3626
|
"academic": {
|
|
1399
|
-
"copy-edit": {
|
|
1400
|
-
|
|
1401
|
-
|
|
3627
|
+
"copy-edit": {
|
|
3628
|
+
"adapted_name": "citation-check",
|
|
3629
|
+
"additional_focus": "citation format, bibliography consistency"
|
|
3630
|
+
},
|
|
3631
|
+
"beta-reader": {
|
|
3632
|
+
"adapted_name": "peer-review",
|
|
3633
|
+
"additional_focus": "methodology critique, argument strength"
|
|
3634
|
+
},
|
|
3635
|
+
"export": {
|
|
3636
|
+
"adapted_name": "journal-submit",
|
|
3637
|
+
"additional_presets": [
|
|
3638
|
+
"apa",
|
|
3639
|
+
"mla",
|
|
3640
|
+
"chicago"
|
|
3641
|
+
]
|
|
3642
|
+
}
|
|
1402
3643
|
},
|
|
1403
3644
|
"technical": {
|
|
1404
|
-
"build-world": {
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
"
|
|
3645
|
+
"build-world": {
|
|
3646
|
+
"adapted_name": "map-system",
|
|
3647
|
+
"description": "System boundaries, environments, and operating context"
|
|
3648
|
+
},
|
|
3649
|
+
"plot-graph": {
|
|
3650
|
+
"adapted_name": "procedure-map",
|
|
3651
|
+
"description": "Procedure flow, escalation path, and task sequence"
|
|
3652
|
+
},
|
|
3653
|
+
"editor-review": {
|
|
3654
|
+
"adapted_name": "technical-review",
|
|
3655
|
+
"description": "Accuracy, clarity, and audience-fit review"
|
|
3656
|
+
},
|
|
3657
|
+
"beta-reader": {
|
|
3658
|
+
"adapted_name": "usability-review",
|
|
3659
|
+
"description": "Operator or reader trial for task completion"
|
|
3660
|
+
},
|
|
3661
|
+
"continuity-check": {
|
|
3662
|
+
"adapted_name": "consistency-check",
|
|
3663
|
+
"description": "Terminology, procedure, and version consistency"
|
|
3664
|
+
}
|
|
1409
3665
|
},
|
|
1410
3666
|
"sacred": {
|
|
1411
|
-
"new-character": {
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
"
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
"
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
"
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
3667
|
+
"new-character": {
|
|
3668
|
+
"adapted_name": "new-figure",
|
|
3669
|
+
"description": "Create figure profile"
|
|
3670
|
+
},
|
|
3671
|
+
"character-sheet": {
|
|
3672
|
+
"adapted_name": "figure-sheet",
|
|
3673
|
+
"description": "View/edit figure profile"
|
|
3674
|
+
},
|
|
3675
|
+
"character-arc": {
|
|
3676
|
+
"adapted_name": "figure-arc",
|
|
3677
|
+
"description": "Spiritual/historical arc"
|
|
3678
|
+
},
|
|
3679
|
+
"cast-list": {
|
|
3680
|
+
"adapted_name": "figures-list",
|
|
3681
|
+
"description": "Roster of all figures"
|
|
3682
|
+
},
|
|
3683
|
+
"relationship-map": {
|
|
3684
|
+
"adapted_name": "lineage-map",
|
|
3685
|
+
"description": "Genealogical/covenantal relationships"
|
|
3686
|
+
},
|
|
3687
|
+
"build-world": {
|
|
3688
|
+
"adapted_name": "build-cosmology",
|
|
3689
|
+
"description": "Sacred geography, cosmological framework"
|
|
3690
|
+
},
|
|
3691
|
+
"character-voice-sample": {
|
|
3692
|
+
"adapted_name": "register-sample",
|
|
3693
|
+
"description": "Voice register sample"
|
|
3694
|
+
},
|
|
3695
|
+
"voice-check": {
|
|
3696
|
+
"adapted_name": "register-check",
|
|
3697
|
+
"description": "Voice register consistency"
|
|
3698
|
+
},
|
|
3699
|
+
"plot-graph": {
|
|
3700
|
+
"adapted_name": "theological-arc",
|
|
3701
|
+
"description": "Salvation history or dharmic cycle"
|
|
3702
|
+
},
|
|
3703
|
+
"theme-tracker": {
|
|
3704
|
+
"adapted_name": "doctrine-tracker",
|
|
3705
|
+
"description": "Doctrinal threads"
|
|
3706
|
+
},
|
|
3707
|
+
"subplot-map": {
|
|
3708
|
+
"adapted_name": "narrative-threads",
|
|
3709
|
+
"description": "Narrative threads across text"
|
|
3710
|
+
},
|
|
3711
|
+
"character-ref": {
|
|
3712
|
+
"adapted_name": "figure-ref",
|
|
3713
|
+
"description": "Visual figure reference for sacred art"
|
|
3714
|
+
},
|
|
3715
|
+
"discussion-questions": {
|
|
3716
|
+
"adapted_name": "study-questions",
|
|
3717
|
+
"description": "Study/reflection questions"
|
|
3718
|
+
},
|
|
3719
|
+
"editor-review": {
|
|
3720
|
+
"adapted_name": "scholarly-review",
|
|
3721
|
+
"description": "Academic review"
|
|
3722
|
+
},
|
|
3723
|
+
"beta-reader": {
|
|
3724
|
+
"adapted_name": "theological-review",
|
|
3725
|
+
"description": "Doctrinal/pastoral review"
|
|
3726
|
+
},
|
|
3727
|
+
"sensitivity-review": {
|
|
3728
|
+
"adapted_name": "interfaith-review",
|
|
3729
|
+
"description": "Sensitivity across traditions"
|
|
3730
|
+
}
|
|
1427
3731
|
}
|
|
1428
3732
|
},
|
|
1429
|
-
|
|
1430
3733
|
"file_adaptations": {
|
|
1431
3734
|
"default": {
|
|
1432
3735
|
"BRIEF.md": "BRIEF.md",
|
|
@@ -1464,43 +3767,92 @@
|
|
|
1464
3767
|
"THEMES.md": "DOCTRINES.md"
|
|
1465
3768
|
}
|
|
1466
3769
|
},
|
|
1467
|
-
|
|
1468
3770
|
"sacred_config_schema": {
|
|
1469
3771
|
"tradition": {
|
|
1470
|
-
"values": [
|
|
3772
|
+
"values": [
|
|
3773
|
+
"catholic",
|
|
3774
|
+
"orthodox",
|
|
3775
|
+
"tewahedo",
|
|
3776
|
+
"protestant",
|
|
3777
|
+
"jewish",
|
|
3778
|
+
"islamic-hafs",
|
|
3779
|
+
"islamic-warsh",
|
|
3780
|
+
"pali",
|
|
3781
|
+
"tibetan",
|
|
3782
|
+
"sanskrit"
|
|
3783
|
+
],
|
|
1471
3784
|
"required_when": "work_type.group == sacred",
|
|
1472
3785
|
"description": "The specific sacred tradition profile slug for the work"
|
|
1473
3786
|
},
|
|
1474
3787
|
"verse_numbering_system": {
|
|
1475
|
-
"values": [
|
|
3788
|
+
"values": [
|
|
3789
|
+
"masoretic",
|
|
3790
|
+
"septuagint",
|
|
3791
|
+
"quranic_hafs",
|
|
3792
|
+
"quranic_warsh",
|
|
3793
|
+
"pali_canon",
|
|
3794
|
+
"custom"
|
|
3795
|
+
],
|
|
1476
3796
|
"default": null,
|
|
1477
3797
|
"description": "Verse/passage numbering convention for the tradition"
|
|
1478
3798
|
},
|
|
1479
3799
|
"calendar_system": {
|
|
1480
|
-
"values": [
|
|
3800
|
+
"values": [
|
|
3801
|
+
"gregorian",
|
|
3802
|
+
"hebrew",
|
|
3803
|
+
"hijri",
|
|
3804
|
+
"vikram_samvat",
|
|
3805
|
+
"buddhist_era",
|
|
3806
|
+
"regnal",
|
|
3807
|
+
"multiple"
|
|
3808
|
+
],
|
|
1481
3809
|
"default": "gregorian",
|
|
1482
3810
|
"description": "Calendar system used for dates and chronology"
|
|
1483
3811
|
},
|
|
1484
3812
|
"translation_philosophy": {
|
|
1485
|
-
"values": [
|
|
3813
|
+
"values": [
|
|
3814
|
+
"formal_equivalence",
|
|
3815
|
+
"dynamic_equivalence",
|
|
3816
|
+
"paraphrase",
|
|
3817
|
+
"interlinear"
|
|
3818
|
+
],
|
|
1486
3819
|
"default": "formal_equivalence",
|
|
1487
3820
|
"description": "Approach to sacred text translation"
|
|
1488
3821
|
},
|
|
1489
3822
|
"canonical_alignment": {
|
|
1490
3823
|
"type": "string",
|
|
1491
|
-
"examples": [
|
|
3824
|
+
"examples": [
|
|
3825
|
+
"kjv",
|
|
3826
|
+
"nrsv",
|
|
3827
|
+
"niv",
|
|
3828
|
+
"sahih_international",
|
|
3829
|
+
"yusuf_ali"
|
|
3830
|
+
],
|
|
1492
3831
|
"default": null,
|
|
1493
3832
|
"description": "Canonical translation to align vocabulary and phrasing with"
|
|
1494
3833
|
},
|
|
1495
3834
|
"annotation_traditions": {
|
|
1496
3835
|
"type": "array",
|
|
1497
|
-
"examples": [
|
|
3836
|
+
"examples": [
|
|
3837
|
+
"catholic",
|
|
3838
|
+
"reformed",
|
|
3839
|
+
"orthodox",
|
|
3840
|
+
"sunni",
|
|
3841
|
+
"shia",
|
|
3842
|
+
"theravada",
|
|
3843
|
+
"mahayana"
|
|
3844
|
+
],
|
|
1498
3845
|
"default": [],
|
|
1499
3846
|
"description": "Annotation traditions to apply or reference"
|
|
1500
3847
|
},
|
|
1501
3848
|
"doctrinal_framework": {
|
|
1502
3849
|
"type": "string",
|
|
1503
|
-
"examples": [
|
|
3850
|
+
"examples": [
|
|
3851
|
+
"nicene_creed",
|
|
3852
|
+
"westminster_confession",
|
|
3853
|
+
"augsburg_confession",
|
|
3854
|
+
"aqidah_tahawiyya"
|
|
3855
|
+
],
|
|
1504
3856
|
"default": null,
|
|
1505
3857
|
"description": "Doctrinal framework guiding interpretation"
|
|
1506
3858
|
},
|
|
@@ -1510,12 +3862,15 @@
|
|
|
1510
3862
|
"description": "Terms that should never be translated, kept in source language with transliteration"
|
|
1511
3863
|
},
|
|
1512
3864
|
"transliteration_style": {
|
|
1513
|
-
"values": [
|
|
3865
|
+
"values": [
|
|
3866
|
+
"academic",
|
|
3867
|
+
"popular",
|
|
3868
|
+
"tradition_standard"
|
|
3869
|
+
],
|
|
1514
3870
|
"default": "popular",
|
|
1515
3871
|
"description": "Style of transliteration for non-Latin script terms"
|
|
1516
3872
|
}
|
|
1517
3873
|
},
|
|
1518
|
-
|
|
1519
3874
|
"architectural_profiles": {
|
|
1520
3875
|
"_description": "Phase 29 v1.7: valid values + work-type defaults for the project-spec tradition and platform keys. The runtime validator cross-checks these values against the templates/sacred/ and templates/platforms/ directory listings -- the intersection is the accepted set, so new contributor-dropped manifests are picked up at load time without editing this file.",
|
|
1521
3876
|
"_render_variants": {
|
|
@@ -1531,16 +3886,43 @@
|
|
|
1531
3886
|
"speech_song": "Not applicable for this work type."
|
|
1532
3887
|
},
|
|
1533
3888
|
"traditions": {
|
|
1534
|
-
"_seeded": [
|
|
3889
|
+
"_seeded": [
|
|
3890
|
+
"catholic",
|
|
3891
|
+
"orthodox",
|
|
3892
|
+
"tewahedo",
|
|
3893
|
+
"protestant",
|
|
3894
|
+
"jewish",
|
|
3895
|
+
"islamic-hafs",
|
|
3896
|
+
"islamic-warsh",
|
|
3897
|
+
"pali",
|
|
3898
|
+
"tibetan",
|
|
3899
|
+
"sanskrit"
|
|
3900
|
+
],
|
|
1535
3901
|
"_note": "This array seeds the initial set. The authoritative runtime value list is the intersection of _seeded with directory names under templates/sacred/ that contain a manifest.yaml. A contributor dropping templates/sacred/<new-tradition>/manifest.yaml extends the accepted set without editing this file."
|
|
1536
3902
|
},
|
|
1537
3903
|
"platforms": {
|
|
1538
|
-
"_seeded": [
|
|
3904
|
+
"_seeded": [
|
|
3905
|
+
"kdp",
|
|
3906
|
+
"ingram",
|
|
3907
|
+
"d2d",
|
|
3908
|
+
"apple",
|
|
3909
|
+
"kobo",
|
|
3910
|
+
"google",
|
|
3911
|
+
"bn",
|
|
3912
|
+
"smashwords"
|
|
3913
|
+
],
|
|
1539
3914
|
"_note": "This array seeds the initial set. The authoritative runtime value list is the intersection of _seeded with directory names under templates/platforms/ that contain a manifest.yaml. A contributor dropping templates/platforms/<new-platform>/manifest.yaml extends the accepted set without editing this file."
|
|
1540
3915
|
},
|
|
1541
3916
|
"applies_to_groups": {
|
|
1542
|
-
"tradition": [
|
|
1543
|
-
|
|
3917
|
+
"tradition": [
|
|
3918
|
+
"sacred"
|
|
3919
|
+
],
|
|
3920
|
+
"platform": [
|
|
3921
|
+
"prose",
|
|
3922
|
+
"visual",
|
|
3923
|
+
"poetry",
|
|
3924
|
+
"sacred"
|
|
3925
|
+
]
|
|
1544
3926
|
},
|
|
1545
3927
|
"defaults_by_work_type": {
|
|
1546
3928
|
"_description": "Per-work-type defaults applied by the runtime when the project spec omits the key. The value MUST be one of the seeded traditions/platforms above. An unlisted work type MUST NOT receive a default (runtime returns null).",
|
|
@@ -1596,7 +3978,6 @@
|
|
|
1596
3978
|
}
|
|
1597
3979
|
}
|
|
1598
3980
|
},
|
|
1599
|
-
|
|
1600
3981
|
"messages": {
|
|
1601
3982
|
"command_hidden": "The `{command}` command is designed for {available_groups}. Your {work_type} uses `{alternative}` instead.",
|
|
1602
3983
|
"prerequisite_missing": "You need to run `{prerequisite}` before `{command}`. Want me to run it now?",
|