-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwriteback-map.json
More file actions
108 lines (108 loc) · 3.37 KB
/
Copy pathwriteback-map.json
File metadata and controls
108 lines (108 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"version": "1.4",
"default_target_scope": "user-local-project",
"default_target_tracked_repo": false,
"default_target_template_root": "templates/project-template",
"default_target_location_hint": "copy the template that matches the workflow mode into your own local project area",
"default_targets": [
"project.md",
"session-log.md",
"open-questions.md",
"distinctions.md"
],
"template_roots": {
"templates/project-template": {
"allowed_targets": [
"project.md",
"session-log.md",
"open-questions.md",
"distinctions.md"
]
},
"templates/multi-book-project-template": {
"allowed_targets": [
"project.md",
"session-log.md",
"open-questions.md",
"distinctions.md",
"module-map.md",
"source-registry.json"
]
},
"templates/thesis-project-template": {
"allowed_targets": [
"project.md",
"session-log.md",
"open-questions.md",
"distinctions.md",
"module-map.md",
"thesis-map.md"
]
}
},
"workflow_modes": {
"single-book deep reading": {
"target_scope": "user-local-project",
"target_tracked_repo": false,
"target_template_root": "templates/project-template",
"required_targets": [
"project.md",
"session-log.md"
],
"recommended_targets": [
"open-questions.md",
"distinctions.md"
],
"completion_rule": "One source should remain visibly authoritative and the packet should preserve the next mechanism questions.",
"example_packet": "examples/single-book-packet"
},
"multi-book synthesis": {
"target_scope": "user-local-project",
"target_tracked_repo": false,
"target_template_root": "templates/multi-book-project-template",
"required_targets": [
"project.md",
"session-log.md",
"open-questions.md",
"distinctions.md",
"module-map.md",
"source-registry.json"
],
"recommended_targets": [],
"completion_rule": "The packet should preserve both shared structure and source-specific tension instead of flattening differences.",
"example_packet": "examples/multi-book-packet"
},
"thesis / non-textbook reading": {
"target_scope": "user-local-project",
"target_tracked_repo": false,
"target_template_root": "templates/thesis-project-template",
"required_targets": [
"project.md",
"session-log.md",
"module-map.md",
"thesis-map.md"
],
"recommended_targets": [
"open-questions.md",
"distinctions.md"
],
"completion_rule": "The packet should preserve thesis structure and conceptual pressure points, not only chapter progression.",
"example_packet": "examples/thesis-reading-packet"
},
"research / paper workflow": {
"target_scope": "user-local-project",
"target_tracked_repo": false,
"target_template_root": "templates/project-template",
"required_targets": [
"project.md",
"session-log.md"
],
"recommended_targets": [
"open-questions.md",
"distinctions.md"
],
"completion_rule": "The packet should record source classification, routing evidence, and the next durable study target.",
"example_packet": "examples/research-intake-packet"
}
}
}