cjm-transcript-correction-core 0.0.1__tar.gz

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.
Files changed (23) hide show
  1. cjm_transcript_correction_core-0.0.1/LICENSE +201 -0
  2. cjm_transcript_correction_core-0.0.1/MANIFEST.in +4 -0
  3. cjm_transcript_correction_core-0.0.1/PKG-INFO +135 -0
  4. cjm_transcript_correction_core-0.0.1/README.md +117 -0
  5. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/__init__.py +1 -0
  6. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/cli.py +193 -0
  7. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/graph.py +783 -0
  8. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/models.py +171 -0
  9. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/pipeline.py +489 -0
  10. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core/signals.py +208 -0
  11. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/PKG-INFO +135 -0
  12. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/SOURCES.txt +21 -0
  13. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/dependency_links.txt +1 -0
  14. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/entry_points.txt +2 -0
  15. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/requires.txt +4 -0
  16. cjm_transcript_correction_core-0.0.1/cjm_transcript_correction_core.egg-info/top_level.txt +1 -0
  17. cjm_transcript_correction_core-0.0.1/pyproject.toml +29 -0
  18. cjm_transcript_correction_core-0.0.1/setup.cfg +4 -0
  19. cjm_transcript_correction_core-0.0.1/tests/test_cli.py +37 -0
  20. cjm_transcript_correction_core-0.0.1/tests/test_graph.py +180 -0
  21. cjm_transcript_correction_core-0.0.1/tests/test_models.py +60 -0
  22. cjm_transcript_correction_core-0.0.1/tests/test_pipeline.py +33 -0
  23. cjm_transcript_correction_core-0.0.1/tests/test_signals.py +59 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2022, fastai
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,4 @@
1
+ include pyproject.toml
2
+ include LICENSE
3
+ include README.md
4
+ recursive-exclude * __pycache__
@@ -0,0 +1,135 @@
1
+ Metadata-Version: 2.4
2
+ Name: cjm-transcript-correction-core
3
+ Version: 0.0.1
4
+ Summary: A frontend-agnostic core for the transcript correction workflow — the first downstream graph-extension core; composes the graph-storage capability worker into a headless pipeline that applies unified, non-destructive corrections (text, punctuation, segmentation) as a supersede-able overlay on a committed decomposition spine, recomputes the review worklist from deterministic signals, and exposes a CLI as its first driver.
5
+ Author-email: "Christian J. Mills" <9126128+cj-mills@users.noreply.github.com>
6
+ License: Apache-2.0
7
+ Project-URL: Repository, https://github.com/cj-mills/cjm-transcript-correction-core
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3 :: Only
10
+ Requires-Python: >=3.12
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: cjm_substrate>=0.0.51
14
+ Requires-Dist: cjm_context_graph_primitives>=0.0.12
15
+ Requires-Dist: cjm-context-graph-layer>=0.0.8
16
+ Requires-Dist: cjm-transcript-graph-schema>=0.0.7
17
+ Dynamic: license-file
18
+
19
+ # cjm-transcript-correction-core
20
+
21
+ <!-- generated from the context graph by `cjm-context-graph readme` — do not edit by hand; edit the graph (the urge to hand-edit = move it on-graph) -->
22
+
23
+ A frontend-agnostic core for the transcript correction workflow — the first downstream graph-extension core; composes the graph-storage capability worker into a headless pipeline that applies unified, non-destructive corrections (text, punctuation, segmentation) as a supersede-able overlay on a committed decomposition spine, recomputes the review worklist from deterministic signals, and exposes a CLI as its first driver.
24
+
25
+ ## Modules
26
+
27
+ - **`cjm_transcript_correction_core.cli`** — The CLI driver — the correction core's first (and currently only) frontend. run <decomp-manifest> corrects the committed spine in the decomp graph DB, pointing the graph worker at that shared DB via load-time config, with optional session resume/reopen; review runs the interactive text-correction loop (the cross-transcriber diff is intra-graph since stage 5).
28
+ - **`cjm_transcript_correction_core.graph`** — The correction overlay's graph I/O: targeted (scale-shaped) reads of a committed spine via the graph-storage query action, construction of Correction / CorrectionSession nodes + CORRECTS / SUPERSEDES / DERIVED_FROM / REVIEWED edges, the in-core effective-spine projection (layer-0 + applied corrections), and commit through the job queue. Hand-rolled (revolution-1) = direct CR-18 spec material; append-only on layer-0 (never update/delete a Segment).
29
+ - **`cjm_transcript_correction_core.models`** — Overlay data shapes for the transcript-correction workflow: the Correction / CorrectionSession graph nodes + their relation registry, the read view of a committed spine segment, the worklist item, run configuration, and the correction run manifest (proto-bundle that chains decomp -> correction).
30
+ - **`cjm_transcript_correction_core.pipeline`** — The headless correction workflow: load a decomp run manifest, resolve the shared graph DB, start/resume/reopen a CorrectionSession, recompute the worklist from deterministic signals + persisted review state, run the D14 empty-segment prune (first operation), and record a chainable correction run manifest — with a cheapest-form HITL approval seam.
31
+ - **`cjm_transcript_correction_core.signals`** — Pure deterministic Tier-1 signal functions (no capability calls): empty-segment detection, bidirectional boundary punctuation/capitalization heuristics, forced-alignment coverage flags, positional cross-transcriber diff, and phonetic + edit-distance variant clustering. The worklist is recomputed from these each session; revolution-1 builds ZERO new capabilities.
32
+ - **`tests.test_graph`** — Tests for cjm_transcript_correction_core.graph — overlay construction + effective spine.
33
+ - **`tests.test_models`** — Tests for cjm_transcript_correction_core.models — correction overlay data shapes.
34
+ - **`tests.test_signals`** — Tests for cjm_transcript_correction_core.signals — pure deterministic Tier-1 signals.
35
+
36
+ ## API
37
+
38
+ ### `cjm_transcript_correction_core.cli`
39
+
40
+ - `build_parser` _function_ — Build the CLI parser (subcommands: run, review).
41
+ - `load_capabilities` _function_ — Discover manifests + load each capability, passing per-capability config (CR-2 caller-wins).
42
+ - `main` _function_ — CLI entry point (console script: `cjm-transcript-correction-core`).
43
+ - `review_command` _function_ — Execute the `review` subcommand: interactive text corrections over the flagged worklist.
44
+ - `run_command` _function_ — Execute the `run` subcommand: correct a decomp manifest's committed spine.
45
+
46
+ ### `cjm_transcript_correction_core.graph`
47
+
48
+ - `active_corrections` _function_ — Filter to the effective correction set (the layer's resolve_active over a read superseded set).
49
+ - `build_correction_node` _function_ — Construct a Correction overlay node (pure; commit happens separately).
50
+ - `build_prune_correction` _function_ — Build one batch grouping Correction that prunes empty segments (D14).
51
+ - `build_text_correction` _function_ — Build a text_content Correction + its CORRECTS (+ optional SUPERSEDES) edges.
52
+ - `commit_nodes_edges` _function_ — Commit overlay nodes/edges through the layer's idempotent extend_graph.
53
+ - `commit_text_correction` _function_ — Commit a text_content correction (node + CORRECTS [+ SUPERSEDES]) + a REVIEWED marker.
54
+ - `corrections_to_edits` _function_ — Map this core's Correction payloads onto the layer's spine-edit vocabulary.
55
+ - `count_source_segments` _function_ — Count a Source's segments server-side under its chosen rendition (typed count mode).
56
+ - `find_active_text_correction` _function_ — Single-segment convenience over the batch read (cross-session; latest wins).
57
+ - `find_active_text_corrections_batch` _function_ — Active text corrections for MANY segments in TWO round-trips (C17).
58
+ - `find_corrections_for_session` _function_ — List corrections recorded in a session (typed property filter).
59
+ - `find_prior_corrections_by_hash` _function_ — Cross-transcript correction-cache lookup (targeted; the graph IS the lexicon).
60
+ - `get_session` _function_ — Fetch a CorrectionSession node by id (resume/reopen) — typed get, dict shape preserved.
61
+ - `load_empty_segments` _function_ — Load ONLY a Source's empty-text segments under its chosen rendition (D14 prune).
62
+ - `load_review_markers` _function_ — Load a session's review markers (typed edge projection over REVIEWED edges).
63
+ - `load_source_corrections` _function_ — Load every Correction targeting a Source (across sessions) + the superseded-id set.
64
+ - `load_source_segments` _function_ — Load a Source's fine Segment spine under its chosen rendition (typed query surface).
65
+ - `load_variant_texts` _function_ — Resolve per-transcriber chunk texts from the segments' CharSlice refs.
66
+ - `project_effective_spine` _function_ — Project the effective spine = layer-0 + applied corrections.
67
+ - `record_review_markers` _function_ — Persist per-(session, segment) review markers as REVIEWED edges.
68
+ - `resolve_source_renditions` _function_ — Pick the AudioRendition set whose fine Segment spine correction operates on.
69
+ - `set_session_status` _function_ — Update a session's status + updated_at.
70
+ - `source_audio_segment_ids` _function_ — The Source's coarse spine (one small typed read; ordered by index).
71
+ - `start_session` _function_ — Create + commit a new CorrectionSession node.
72
+ - `submit_and_wait` _function_ — Submit one capability job, wait for it, return its result (raise on failure).
73
+
74
+ ### `cjm_transcript_correction_core.models`
75
+
76
+ - `Correction` _class_ — A single non-destructive correction over the committed spine (overlay node).
77
+ - `CorrectionConfig` _class_ — Configuration for one correction run.
78
+ - `CorrectionManifest` _class_ — Durable record of one correction run (proto-bundle; chainable, CR-20).
79
+ - `CorrectionRelations` _class_ — Registry of edge types the correction overlay adds to the spine graph.
80
+ - `CorrectionSession` _class_ — A resumable, reopen-able correction review over one or more sources.
81
+ - `SpineSegment` _class_ — A committed layer-0 Segment loaded from the graph (read view).
82
+ - `WorklistItem` _class_ — One spine segment surfaced for review, with its deterministic Tier-1 flags.
83
+ - `new_run_id` _function_ — Generate a unique, sortable correction run id.
84
+
85
+ ### `cjm_transcript_correction_core.pipeline`
86
+
87
+ - `collect_capability_info` _function_ — Record capability identity + data-DB pointers for the run manifest (provenance).
88
+ - `compute_worklist` _function_ — Recompute the worklist from layer-0 + signals + review state (only decisions persist).
89
+ - `confirm_seam` _function_ — HITL approval seam in its cheapest viable form (log + optional CLI prompt).
90
+ - `load_decomp_manifest` _function_ — Load + lightly validate a decomp-core run manifest (untyped JSON; CR-20 interchange).
91
+ - `prune_empty_segments` _function_ — First operation: prune empty (silence) segments as one grouping correction (D14).
92
+ - `resolve_graph_db_path` _function_ — Resolve the graph DB path: explicit override > the decomp manifest's recorded db_path.
93
+ - `review_worklist` _function_ — Interactive review loop -> text_content corrections (cheapest HITL seam).
94
+ - `run_correction` _function_ — Correct every source in a decomp run manifest (prune + worklist surfacing).
95
+ - `run_review` _function_ — Interactive review pass over a decomp manifest's flagged worklist (text corrections).
96
+
97
+ ### `cjm_transcript_correction_core.signals`
98
+
99
+ - `boundary_punct_caps_flags` _function_ — Bidirectional boundary punctuation/capitalization heuristics (in-segment only).
100
+ - `cluster_variants` _function_ — Cluster word variants by phonetic key + edit distance (fix-one-fix-all).
101
+ - `compute_signal_flags` _function_ — Combine all deterministic Tier-1 signals into per-segment flags.
102
+ - `detect_empty_segments` _function_ — Find empty-text segments (silence VAD chunks with no aligned words; decomp D14).
103
+ - `fa_coverage_flags` _function_ — Flag segments whose forced-alignment coverage looks suspect (Tier-1).
104
+ - `levenshtein` _function_ — Levenshtein edit distance (pure, in-core; variant-clustering primitive).
105
+ - `phonetic_key` _function_ — Compute a coarse phonetic key for a word (groups like-sounding variants).
106
+ - `variant_divergence` _function_ — Within-segment cross-transcriber divergence (stage 5: intra-graph).
107
+
108
+ ### `tests.test_graph`
109
+
110
+ - `test_build_prune_correction` _function_
111
+ - `test_build_text_correction_and_active_filter` _function_
112
+ - `test_latest_wins_ordering_from_layer` _function_
113
+ - `test_project_effective_spine_prune_replace_supersede` _function_
114
+
115
+ ### `tests.test_models`
116
+
117
+ - `test_correction_graph_node_mapping` _function_
118
+ - `test_correction_relations_registry` _function_
119
+ - `test_correction_session_node` _function_
120
+ - `test_manifest_save_round_trip` _function_
121
+ - `test_manifest_shape_and_run_id` _function_
122
+ - `test_spine_segment_and_worklist_item` _function_
123
+
124
+ ### `tests.test_signals`
125
+
126
+ - `test_boundary_punct_caps_flags` _function_
127
+ - `test_clustering_primitives` _function_
128
+ - `test_compute_signal_flags_combined` _function_
129
+ - `test_empty_and_coverage_flags` _function_
130
+ - `test_variant_divergence_within_segment` _function_
131
+
132
+ ## Dependencies
133
+
134
+ **Depends on:** `cjm-substrate`
135
+ **Used by:** `cjm-transcript-correction-tui`
@@ -0,0 +1,117 @@
1
+ # cjm-transcript-correction-core
2
+
3
+ <!-- generated from the context graph by `cjm-context-graph readme` — do not edit by hand; edit the graph (the urge to hand-edit = move it on-graph) -->
4
+
5
+ A frontend-agnostic core for the transcript correction workflow — the first downstream graph-extension core; composes the graph-storage capability worker into a headless pipeline that applies unified, non-destructive corrections (text, punctuation, segmentation) as a supersede-able overlay on a committed decomposition spine, recomputes the review worklist from deterministic signals, and exposes a CLI as its first driver.
6
+
7
+ ## Modules
8
+
9
+ - **`cjm_transcript_correction_core.cli`** — The CLI driver — the correction core's first (and currently only) frontend. run <decomp-manifest> corrects the committed spine in the decomp graph DB, pointing the graph worker at that shared DB via load-time config, with optional session resume/reopen; review runs the interactive text-correction loop (the cross-transcriber diff is intra-graph since stage 5).
10
+ - **`cjm_transcript_correction_core.graph`** — The correction overlay's graph I/O: targeted (scale-shaped) reads of a committed spine via the graph-storage query action, construction of Correction / CorrectionSession nodes + CORRECTS / SUPERSEDES / DERIVED_FROM / REVIEWED edges, the in-core effective-spine projection (layer-0 + applied corrections), and commit through the job queue. Hand-rolled (revolution-1) = direct CR-18 spec material; append-only on layer-0 (never update/delete a Segment).
11
+ - **`cjm_transcript_correction_core.models`** — Overlay data shapes for the transcript-correction workflow: the Correction / CorrectionSession graph nodes + their relation registry, the read view of a committed spine segment, the worklist item, run configuration, and the correction run manifest (proto-bundle that chains decomp -> correction).
12
+ - **`cjm_transcript_correction_core.pipeline`** — The headless correction workflow: load a decomp run manifest, resolve the shared graph DB, start/resume/reopen a CorrectionSession, recompute the worklist from deterministic signals + persisted review state, run the D14 empty-segment prune (first operation), and record a chainable correction run manifest — with a cheapest-form HITL approval seam.
13
+ - **`cjm_transcript_correction_core.signals`** — Pure deterministic Tier-1 signal functions (no capability calls): empty-segment detection, bidirectional boundary punctuation/capitalization heuristics, forced-alignment coverage flags, positional cross-transcriber diff, and phonetic + edit-distance variant clustering. The worklist is recomputed from these each session; revolution-1 builds ZERO new capabilities.
14
+ - **`tests.test_graph`** — Tests for cjm_transcript_correction_core.graph — overlay construction + effective spine.
15
+ - **`tests.test_models`** — Tests for cjm_transcript_correction_core.models — correction overlay data shapes.
16
+ - **`tests.test_signals`** — Tests for cjm_transcript_correction_core.signals — pure deterministic Tier-1 signals.
17
+
18
+ ## API
19
+
20
+ ### `cjm_transcript_correction_core.cli`
21
+
22
+ - `build_parser` _function_ — Build the CLI parser (subcommands: run, review).
23
+ - `load_capabilities` _function_ — Discover manifests + load each capability, passing per-capability config (CR-2 caller-wins).
24
+ - `main` _function_ — CLI entry point (console script: `cjm-transcript-correction-core`).
25
+ - `review_command` _function_ — Execute the `review` subcommand: interactive text corrections over the flagged worklist.
26
+ - `run_command` _function_ — Execute the `run` subcommand: correct a decomp manifest's committed spine.
27
+
28
+ ### `cjm_transcript_correction_core.graph`
29
+
30
+ - `active_corrections` _function_ — Filter to the effective correction set (the layer's resolve_active over a read superseded set).
31
+ - `build_correction_node` _function_ — Construct a Correction overlay node (pure; commit happens separately).
32
+ - `build_prune_correction` _function_ — Build one batch grouping Correction that prunes empty segments (D14).
33
+ - `build_text_correction` _function_ — Build a text_content Correction + its CORRECTS (+ optional SUPERSEDES) edges.
34
+ - `commit_nodes_edges` _function_ — Commit overlay nodes/edges through the layer's idempotent extend_graph.
35
+ - `commit_text_correction` _function_ — Commit a text_content correction (node + CORRECTS [+ SUPERSEDES]) + a REVIEWED marker.
36
+ - `corrections_to_edits` _function_ — Map this core's Correction payloads onto the layer's spine-edit vocabulary.
37
+ - `count_source_segments` _function_ — Count a Source's segments server-side under its chosen rendition (typed count mode).
38
+ - `find_active_text_correction` _function_ — Single-segment convenience over the batch read (cross-session; latest wins).
39
+ - `find_active_text_corrections_batch` _function_ — Active text corrections for MANY segments in TWO round-trips (C17).
40
+ - `find_corrections_for_session` _function_ — List corrections recorded in a session (typed property filter).
41
+ - `find_prior_corrections_by_hash` _function_ — Cross-transcript correction-cache lookup (targeted; the graph IS the lexicon).
42
+ - `get_session` _function_ — Fetch a CorrectionSession node by id (resume/reopen) — typed get, dict shape preserved.
43
+ - `load_empty_segments` _function_ — Load ONLY a Source's empty-text segments under its chosen rendition (D14 prune).
44
+ - `load_review_markers` _function_ — Load a session's review markers (typed edge projection over REVIEWED edges).
45
+ - `load_source_corrections` _function_ — Load every Correction targeting a Source (across sessions) + the superseded-id set.
46
+ - `load_source_segments` _function_ — Load a Source's fine Segment spine under its chosen rendition (typed query surface).
47
+ - `load_variant_texts` _function_ — Resolve per-transcriber chunk texts from the segments' CharSlice refs.
48
+ - `project_effective_spine` _function_ — Project the effective spine = layer-0 + applied corrections.
49
+ - `record_review_markers` _function_ — Persist per-(session, segment) review markers as REVIEWED edges.
50
+ - `resolve_source_renditions` _function_ — Pick the AudioRendition set whose fine Segment spine correction operates on.
51
+ - `set_session_status` _function_ — Update a session's status + updated_at.
52
+ - `source_audio_segment_ids` _function_ — The Source's coarse spine (one small typed read; ordered by index).
53
+ - `start_session` _function_ — Create + commit a new CorrectionSession node.
54
+ - `submit_and_wait` _function_ — Submit one capability job, wait for it, return its result (raise on failure).
55
+
56
+ ### `cjm_transcript_correction_core.models`
57
+
58
+ - `Correction` _class_ — A single non-destructive correction over the committed spine (overlay node).
59
+ - `CorrectionConfig` _class_ — Configuration for one correction run.
60
+ - `CorrectionManifest` _class_ — Durable record of one correction run (proto-bundle; chainable, CR-20).
61
+ - `CorrectionRelations` _class_ — Registry of edge types the correction overlay adds to the spine graph.
62
+ - `CorrectionSession` _class_ — A resumable, reopen-able correction review over one or more sources.
63
+ - `SpineSegment` _class_ — A committed layer-0 Segment loaded from the graph (read view).
64
+ - `WorklistItem` _class_ — One spine segment surfaced for review, with its deterministic Tier-1 flags.
65
+ - `new_run_id` _function_ — Generate a unique, sortable correction run id.
66
+
67
+ ### `cjm_transcript_correction_core.pipeline`
68
+
69
+ - `collect_capability_info` _function_ — Record capability identity + data-DB pointers for the run manifest (provenance).
70
+ - `compute_worklist` _function_ — Recompute the worklist from layer-0 + signals + review state (only decisions persist).
71
+ - `confirm_seam` _function_ — HITL approval seam in its cheapest viable form (log + optional CLI prompt).
72
+ - `load_decomp_manifest` _function_ — Load + lightly validate a decomp-core run manifest (untyped JSON; CR-20 interchange).
73
+ - `prune_empty_segments` _function_ — First operation: prune empty (silence) segments as one grouping correction (D14).
74
+ - `resolve_graph_db_path` _function_ — Resolve the graph DB path: explicit override > the decomp manifest's recorded db_path.
75
+ - `review_worklist` _function_ — Interactive review loop -> text_content corrections (cheapest HITL seam).
76
+ - `run_correction` _function_ — Correct every source in a decomp run manifest (prune + worklist surfacing).
77
+ - `run_review` _function_ — Interactive review pass over a decomp manifest's flagged worklist (text corrections).
78
+
79
+ ### `cjm_transcript_correction_core.signals`
80
+
81
+ - `boundary_punct_caps_flags` _function_ — Bidirectional boundary punctuation/capitalization heuristics (in-segment only).
82
+ - `cluster_variants` _function_ — Cluster word variants by phonetic key + edit distance (fix-one-fix-all).
83
+ - `compute_signal_flags` _function_ — Combine all deterministic Tier-1 signals into per-segment flags.
84
+ - `detect_empty_segments` _function_ — Find empty-text segments (silence VAD chunks with no aligned words; decomp D14).
85
+ - `fa_coverage_flags` _function_ — Flag segments whose forced-alignment coverage looks suspect (Tier-1).
86
+ - `levenshtein` _function_ — Levenshtein edit distance (pure, in-core; variant-clustering primitive).
87
+ - `phonetic_key` _function_ — Compute a coarse phonetic key for a word (groups like-sounding variants).
88
+ - `variant_divergence` _function_ — Within-segment cross-transcriber divergence (stage 5: intra-graph).
89
+
90
+ ### `tests.test_graph`
91
+
92
+ - `test_build_prune_correction` _function_
93
+ - `test_build_text_correction_and_active_filter` _function_
94
+ - `test_latest_wins_ordering_from_layer` _function_
95
+ - `test_project_effective_spine_prune_replace_supersede` _function_
96
+
97
+ ### `tests.test_models`
98
+
99
+ - `test_correction_graph_node_mapping` _function_
100
+ - `test_correction_relations_registry` _function_
101
+ - `test_correction_session_node` _function_
102
+ - `test_manifest_save_round_trip` _function_
103
+ - `test_manifest_shape_and_run_id` _function_
104
+ - `test_spine_segment_and_worklist_item` _function_
105
+
106
+ ### `tests.test_signals`
107
+
108
+ - `test_boundary_punct_caps_flags` _function_
109
+ - `test_clustering_primitives` _function_
110
+ - `test_compute_signal_flags_combined` _function_
111
+ - `test_empty_and_coverage_flags` _function_
112
+ - `test_variant_divergence_within_segment` _function_
113
+
114
+ ## Dependencies
115
+
116
+ **Depends on:** `cjm-substrate`
117
+ **Used by:** `cjm-transcript-correction-tui`