-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatus.html
More file actions
7288 lines (7288 loc) · 179 KB
/
Copy pathStatus.html
File metadata and controls
7288 lines (7288 loc) · 179 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Status</title>
<style>
/* Default styles provided by pandoc.
** See https://pandoc.org/MANUAL.html#variables-for-html for config info.
*/
html {
color: #1a1a1a;
background-color: #fdfdfd;
}
body {
margin: 0 auto;
max-width: 36em;
padding-left: 50px;
padding-right: 50px;
padding-top: 50px;
padding-bottom: 50px;
hyphens: auto;
overflow-wrap: break-word;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
@media (max-width: 600px) {
body {
font-size: 0.9em;
padding: 12px;
}
h1 {
font-size: 1.8em;
}
}
@media print {
html {
background-color: white;
}
body {
background-color: transparent;
color: black;
font-size: 12pt;
}
p, h2, h3 {
orphans: 3;
widows: 3;
}
h2, h3, h4 {
page-break-after: avoid;
}
}
p {
margin: 1em 0;
}
a {
color: #1a1a1a;
}
a:visited {
color: #1a1a1a;
}
img {
max-width: 100%;
}
svg {
height: auto;
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.4em;
}
h5, h6 {
font-size: 1em;
font-style: italic;
}
h6 {
font-weight: normal;
}
ol, ul {
padding-left: 1.7em;
margin-top: 1em;
}
li > ol, li > ul {
margin-top: 0;
}
blockquote {
margin: 1em 0 1em 1.7em;
padding-left: 1em;
border-left: 2px solid #e6e6e6;
color: #606060;
}
code {
white-space: pre-wrap;
font-family: Menlo, Monaco, Consolas, 'Lucida Console', monospace;
font-size: 85%;
margin: 0;
hyphens: manual;
}
pre {
margin: 1em 0;
overflow: auto;
}
pre code {
padding: 0;
overflow: visible;
overflow-wrap: normal;
}
.sourceCode {
background-color: transparent;
overflow: visible;
}
hr {
border: none;
border-top: 1px solid #1a1a1a;
height: 1px;
margin: 1em 0;
}
table {
margin: 1em 0;
border-collapse: collapse;
width: 100%;
overflow-x: auto;
display: block;
font-variant-numeric: lining-nums tabular-nums;
}
table caption {
margin-bottom: 0.75em;
}
tbody {
margin-top: 0.5em;
border-top: 1px solid #1a1a1a;
border-bottom: 1px solid #1a1a1a;
}
th {
border-top: 1px solid #1a1a1a;
padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
margin-bottom: 4em;
text-align: center;
}
#TOC li {
list-style: none;
}
#TOC ul {
padding-left: 1.3em;
}
#TOC > ul {
padding-left: 0;
}
#TOC a:not(:hover) {
text-decoration: none;
}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
</style>
</head>
<body>
<header id="title-block-header">
<h1 class="title">Status</h1>
</header>
<h1 id="helixtranslate-feature-status">HelixTranslate — Feature
Status</h1>
<p><strong>Revision:</strong> 7 <strong>Last modified:</strong>
2026-06-16T00:00:00Z <strong>Authority:</strong> Derived from
<code>docs/features/.feature_inventory_raw.md</code> (Revision 1). Per
§11.4.45 (captured-evidence Status doc), §11.4.44 (revision header),
§11.4.56 (two-audience summary → <code>Status_Summary.md</code>),
§11.4.60 (always-sync), §11.4.6 (no-guessing — every status reflects
what the inventory actually found in source). <strong>Scope:</strong>
Every one of the 417 inventoried features across CLI, API, Web, gRPC,
Library, Submodule and Infra. <code>helix_qa</code> deliberately not
included.</p>
<blockquote>
<p><strong>Anti-bluff note (§11.4.6 / §11.4.2 / §11.4.107):</strong>
<code>Video-confirmation</code> is set to a real file
<strong>only</strong> where a recording exists AND that recording
genuinely demonstrates the feature working (each cited <code>.mp4</code>
was ffprobe-verified for non-zero duration+frames and content-verified
against its claimed behaviour — e.g. real DeepSeek output in the target
language, real gRPC translated text, live WebSocket count change).
<strong>23 feature rows are video-confirmed</strong> this session across
unified-translator (DeepSeek translate, EPUB→TXT / HTML→EPUB / FB2→EPUB
/ FB2→FB2 conversions, Serbian-Cyrillic, <code>-script</code>
Cyrillic↔︎Latin, format-detection, help/version, <code>-verify</code>,
<strong><code>-multipass</code> multi-pass polishing engine</strong>),
the REST API server (POST /api/v1/translate real DeepSeek + target_lang
FIXED, TLS startup FIXED, /health · /api/v1/version ·
/api/v1/providers), the gRPC server (real EN→ES), markdown-translator
(EPUB↔︎MD round-trip), preparation-translator (FIXED real analysis),
cmd/cli (real DeepSeek), monitor-server (live WS hub), the DeepSeek
library client, and the <strong>LLMsVerifier→agent bridge CLI</strong>
(<code>cmd/model-bridge</code> —
<code>helixtranslate-bridge-bestmodel-translate-20260615.mp4</code>:
in-process verify→SQLite store→select strongest
<code>novita/Sao10K/L3-8B-Stheno-v3.2</code> score 0.919 → live
<code>invoke</code> EN→ES “Good morning, friend.” → “Buenos días,
amigo.”; ffprobe 8.0s/80 frames, ≥6 frames content-verified) <strong>and
the LLMsVerifier→agent bridge MCP-stdio surface</strong>
(<code>cmd/model-bridge mcp</code> —
<code>helixtranslate-bridge-mcp-stdio-20260615.mp4</code>: a real
JSON-RPC MCP session over stdio —
initialize→tools/list→<code>bridge_best_model</code>→<code>bridge_invoke</code>
— where tool <code>bridge_invoke</code> returned a live verified-model
translation “Le pont relie deux rives.” (isError:None); ffprobe
11.88s/10 frames, ≥6 frames content-verified).
<strong>Real-artifact-confirmed (not video):</strong> <strong>DOCX
output</strong> is now Implemented — a real DeepSeek run produced
<code>garden_es.docx</code> = <code>Microsoft Word 2007+</code>
(well-formed WordprocessingML, real translation; pure-Go OOXML writer
<code>pkg/ebook/docx_writer.go</code>, commit 87cd2be) — confirmed by
the produced artifact’s file type, no <code>.mp4</code> exists yet
(video PENDING). <strong>Real-artifact / unit-confirmed (not
video):</strong> <strong>PDF output</strong> is now Implemented (commit
fb265e7) — <code>pkg/ebook/pdf_writer.go</code> renders the
Book→HTML5→<code>weasyprint</code>→valid Cyrillic-faithful PDF, wired
into unified-translator (<code>.pdf</code> output; main.go:1160);
<code>pkg/ebook</code> PDF tests green this session (no
<code>.mp4</code> yet, video PENDING). <strong>Honest gaps recorded, NOT
confirmed:</strong> <code>cmd/translator</code> local path is a STUB
(“local translation not yet implemented”); <code>translate-ssh</code> +
<code>ebook-translator</code> are OPERATOR-BLOCKED (need a remote
SSH/llama.cpp worker host); <code>GET /api/v1/verified-models</code>
returns 404 because LLMsVerifier is disabled in config. Everything else
is <code>PENDING</code> (a recording is owed) or <code>N/A</code> (no
user-visible video applies — e.g. CLI flags, internal library types).
Absence of a runtime recording is stated honestly, never papered
over.</p>
</blockquote>
<h2 id="operator-blocked-items-read-first-11.4.45">Operator-blocked
items (read first, §11.4.45)</h2>
<p>Two binaries are OPERATOR-BLOCKED — both require a remote SSH worker
host running llama.cpp, which is not available in this environment. The
binaries build and run as far as the missing host allows (captured in
<code>helixtranslate-cmd-blocked-binaries_20260615-172456.mp4</code>):</p>
<ul>
<li><strong><code>cmd/translate-ssh</code></strong> — SSH worker 4-step
FB2→EPUB translator. <strong>Unblock condition:</strong> a reachable SSH
host with llama.cpp + a model.</li>
<li><strong><code>cmd/ebook-translator</code></strong> — FB2
remote-translate workflow (syncs binary to remote, runs remote
translate, downloads outputs). <strong>Unblock condition:</strong> same
remote SSH/llama.cpp host.</li>
<li><strong><code>cmd/translator</code> (remote path)</strong> — remote
SSH/llama.cpp translate path is OPERATOR-BLOCKED (same host
requirement); its LOCAL path is a separate STUB (“local translation not
yet implemented”).</li>
</ul>
<h2 id="coverage-summary">Coverage summary</h2>
<table>
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr>
<th>Metric</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Headline feature total (inventory’s deduplicated per-category
tally)</td>
<td><strong>417</strong></td>
</tr>
<tr>
<td>Enumerated feature rows in this doc</td>
<td><strong>478</strong> (470 source-inventory rows + 2 gap rows added
Rev 2 [DOCX-write→Implemented Rev 3, PDF-write→Implemented Rev 4] + 6
new rows added Rev 4: cmd/model-bridge CLI ×2, pkg/bridge ×2,
internal/verifier affirmative-gate ×1, pkg/api/dashboard.go ×1)</td>
</tr>
<tr>
<td>Implemented</td>
<td>435 (was 471 Rev 6; <strong>−36</strong> flipped to Obsolete Rev 7 —
local-runtime + SSH-local features removed in bridge phase-2
R-2..R-4)</td>
</tr>
<tr>
<td><strong>Obsolete (→ Fixed.md)</strong></td>
<td><strong>39</strong> (Rev 7 — bridge phase-2 R-2..R-4 removals:
<code>cmd/translate-ssh</code> ×9, <code>cmd/ssh-translation</code> ×2,
<code>cmd/translator</code> ×19, <code>cmd/ebook-translator</code> ×3,
<code>pkg/sshworker</code> ×2, <code>pkg/modelsbridge</code> ×1, Ollama
provider ×1, llama.cpp provider+coordinator ×2;
Reason=<code>feature-removed</code>; the KEPT distributed-API path is
NOT Obsolete)</td>
</tr>
<tr>
<td>Stub</td>
<td>4 (<code>POST /api/v1/translate/ebook</code>,
<code>POST /api/v1/preparation/analyze</code>,
<code>GET /api/v1/preparation/result/:id</code>,
<code>POST /api/v1/translate-with-verification</code>)</td>
</tr>
<tr>
<td>Not implemented (gap rows)</td>
<td>0 (PDF-write flipped gap→Implemented Rev 4, commit fb265e7; output
now EPUB/FB2/TXT/HTML/MD/DOCX/PDF)</td>
</tr>
<tr>
<td>Partial</td>
<td>2 (<code>POST /api/batch</code> on standalone
<code>pkg/api/server.go</code> — returns <code>queued</code> batch_id
only, no translation; <code>vision_engine</code> OpenCV — stub default,
real impl behind build tag) — was 3 Rev 6; <code>cmd/translator</code>
flipped to Obsolete Rev 7</td>
</tr>
<tr>
<td>Operator-blocked</td>
<td>0 (was 2 Rev 6 — <code>translate-ssh</code> +
<code>ebook-translator</code> flipped to Obsolete Rev 7: the remote
SSH/llama.cpp worker capability was removed, not merely
host-blocked)</td>
</tr>
<tr>
<td>Video-confirmed</td>
<td><strong>23</strong> (real, content-verified recordings this session
— see Anti-bluff note) — ≈ 4.8% of 478 enumerated rows (≈ 5.5% of the
417 headline). Plus <strong>2 real-artifact/unit-confirmed</strong>
(DOCX output — produced <code>.docx</code> = Microsoft Word 2007+; PDF
output — <code>pkg/ebook</code> tests green + weasyprint present; both
video PENDING). Rev-6 (this run) flips the <strong>LLMsVerifier→agent
bridge MCP-stdio server</strong> row video PENDING→CONFIRMED
(<code>helixtranslate-bridge-mcp-stdio-20260615.mp4</code> — a real
JSON-RPC MCP-stdio session:
initialize→tools/list→<code>bridge_best_model</code>→<code>bridge_invoke</code>,
tool <code>bridge_invoke</code> returned live verified-model translation
“Le pont relie deux rives.” isError:None, ffprobe 11.88s/10 frames, ≥6
frames content-verified). Rev-5 had flipped the bridge CLI row
(<code>helixtranslate-bridge-bestmodel-translate-20260615.mp4</code>).
Other Rev-4 additions (pkg/bridge, internal/verifier gate,
pkg/api/dashboard.go) are PASS at unit/integration/live-run level with
video PENDING / SKIP / N/A — none claim a video that doesn’t exist</td>
</tr>
<tr>
<td>Video-confirmation PENDING</td>
<td>runtime/user-visible features without a recording yet</td>
</tr>
<tr>
<td>Video-confirmation N/A</td>
<td>flags, internal library types, infra middleware (no standalone
user-visible video)</td>
</tr>
</tbody>
</table>
<blockquote>
<p><strong>§11.4.6 reconciliation:</strong> The inventory’s headline is
<strong>417</strong> — its own note states this is an <em>approximate,
deduplicated</em> per-category tally where “some rows are sub-features…
counted once, and a few rows span two categories (counted once, in the
first/primary category).” The inventory’s <em>detailed</em> tables
actually enumerate <strong>470</strong> feature rows. This document
transcribes <strong>all 470 detailed rows 1:1</strong> so <strong>no
feature is dropped</strong> (which would itself be a bluff). The 417
headline and the 470 enumerated rows are both reported honestly; the
53-row gap is dedup, not missing coverage.</p>
</blockquote>
<blockquote>
<p>“Static-return” endpoints (e.g. <code>GET /api/stats</code> hardcoded
zeros, <code>GET /api/v1/status/:id</code> hardcoded
<code>completed</code>, <code>GET /api/v1/metrics</code> static,
monitor-server <code>GET /api/v1/status</code> static
<code>monitoring_active</code>) are marked <strong>Implemented</strong>
at the route level but their <code>Real-use</code> cell states the
static/hardcoded behaviour honestly so no false “working backend”
impression is created.</p>
</blockquote>
<h3 id="per-category-counts">Per-category counts</h3>
<table>
<thead>
<tr>
<th>Category</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>CLI</td>
<td>130</td>
</tr>
<tr>
<td>API</td>
<td>70</td>
</tr>
<tr>
<td>Web</td>
<td>23</td>
</tr>
<tr>
<td>gRPC</td>
<td>7</td>
</tr>
<tr>
<td>Library</td>
<td>81</td>
</tr>
<tr>
<td>Submodule</td>
<td>95</td>
</tr>
<tr>
<td>Infra</td>
<td>11</td>
</tr>
<tr>
<td><strong>TOTAL</strong></td>
<td><strong>417</strong></td>
</tr>
</tbody>
</table>
<hr />
<h2 id="legend">Legend</h2>
<ul>
<li><strong>Implementation:</strong> <code>Implemented</code> (real code
path present) / <code>Stub</code> (returns mock, no real work) /
<code>Partial</code> (does some but not the named work).</li>
<li><strong>Wiring:</strong> <code>Wired</code> (reachable from a binary
/ route / public API) / <code>Unwired</code> (present but not
reached).</li>
<li><strong>Real-use:</strong> what the code actually does at runtime
(honest, §11.4.6).</li>
<li><strong>Tests:</strong> <code>Covered</code>
(unit/integration/challenge present in repo) / <code>None</code> (no
test found / not asserted in inventory).</li>
<li><strong>Validation:</strong> strongest evidence available.</li>
<li><strong>Video-confirmation:</strong>
<code>Confirmed:<file></code> only with a real recording; else
<code>PENDING</code> / <code>N/A</code>.</li>
</ul>
<blockquote>
<p>Per §11.4.6, where the inventory did not read test files
line-by-line, <code>Tests</code> is recorded
<code>Not-inventoried</code> (honest unknown) rather than guessed as
Covered or None. The repo is known to carry extensive
<code>_test.go</code> suites and a <code>test/</code> tree, but
per-feature test attribution was not part of the raw inventory.</p>
</blockquote>
<hr />
<h1 id="cli-binaries-cmd">1. CLI Binaries — cmd/</h1>
<h2 id="cmdapi-server">cmd/api-server</h2>
<table style="width:100%;">
<colgroup>
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
</colgroup>
<thead>
<tr>
<th>Component</th>
<th>Feature</th>
<th>Category</th>
<th>Implementation</th>
<th>Wiring</th>
<th>Real-use</th>
<th>Tests</th>
<th>Validation</th>
<th>Video-confirmation</th>
</tr>
</thead>
<tbody>
<tr>
<td>api-server</td>
<td>REST translation server</td>
<td>API/Web</td>
<td>Implemented</td>
<td>Wired</td>
<td>Gin HTTP server (:8080) proxying to gRPC backend; serves dashboard +
static files</td>
<td>Not-inventoried</td>
<td>Source-confirmed (cmd/api-server/main.go)</td>
<td>PENDING</td>
</tr>
<tr>
<td>api-server</td>
<td><code>-http-port</code> flag</td>
<td>API</td>
<td>Implemented</td>
<td>Wired</td>
<td>Override HTTP port (else <code>HTTP_PORT</code> env)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>api-server</td>
<td><code>-http-address</code> flag</td>
<td>API</td>
<td>Implemented</td>
<td>Wired</td>
<td>Override HTTP bind address (else <code>HTTP_ADDRESS</code> env)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>api-server</td>
<td><code>-grpc-address</code> flag</td>
<td>API</td>
<td>Implemented</td>
<td>Wired</td>
<td>Override gRPC backend address (else <code>GRPC_ADDRESS</code>
env)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>api-server</td>
<td><code>-debug</code> flag</td>
<td>API</td>
<td>Implemented</td>
<td>Wired</td>
<td>Enable debug / Gin debug mode</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
</tbody>
</table>
<h2 id="cmdchallenge-runner">cmd/challenge-runner</h2>
<table style="width:100%;">
<colgroup>
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
</colgroup>
<thead>
<tr>
<th>Component</th>
<th>Feature</th>
<th>Category</th>
<th>Implementation</th>
<th>Wiring</th>
<th>Real-use</th>
<th>Tests</th>
<th>Validation</th>
<th>Video-confirmation</th>
</tr>
</thead>
<tbody>
<tr>
<td>challenge-runner</td>
<td>Challenge orchestrator</td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Registers + runs all anti-bluff challenges, prints PASS/FAIL/SKIP,
writes results dir</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>PENDING</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-parallel</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Run challenges in parallel</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-max-concurrency</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Max concurrent challenges</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-stop-on-failure</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Stop on first failure</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-verbose</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Verbose output</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-timeout</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Per-challenge timeout</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-filter</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Comma-separated challenge IDs to run</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-category</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Limit to a category</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>challenge-runner</td>
<td><code>-results-dir</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Results output directory</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
</tbody>
</table>
<h2 id="cmdcli">cmd/cli</h2>
<table style="width:100%;">
<colgroup>
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
</colgroup>
<thead>
<tr>
<th>Component</th>
<th>Feature</th>
<th>Category</th>
<th>Implementation</th>
<th>Wiring</th>
<th>Real-use</th>
<th>Tests</th>
<th>Validation</th>
<th>Video-confirmation</th>
</tr>
</thead>
<tbody>
<tr>
<td>cli</td>
<td>Universal ebook translator</td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Parse ebook → translate → atomic-write EPUB/FB2/TXT;
multi-llm/distributed support</td>
<td>Not-inventoried</td>
<td><strong>PASS — real DeepSeek run captured</strong> (real Serbian TXT
output). Title path-leak FIXED (d53e085, sanitizeBookTitle).
Write-safety FIXED (87cd2be): format validated before any FS write,
written to temp sibling + atomic os.Rename only on full success — never
a partial/clobbered output. Guard: cmd/cli/no_partial_output_test.go (5
tests, mutation-proven)</td>
<td>Confirmed:/Volumes/T7/Downloads/Recordings/helixtranslate-cli-deepseek-translate_20260615-172211.mp4</td>
</tr>
<tr>
<td>cli</td>
<td><code>-i/-input</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Input ebook (FB2/EPUB/TXT/HTML/PDF/DOCX)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-o/-output</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Output file</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-f/-format</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Output format (epub, fb2, txt)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-p/-provider</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Translation provider</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-model</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>LLM model name</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-api-key</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Provider API key</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-base-url</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Provider base URL</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-script</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Output script (default/cyrillic/latin)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-locale</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Target language locale code</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-language</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Target language name</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-source</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Source language (auto-detect if unset)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-detect</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Detect source language and exit (LLM detector if API key)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-v/-version</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Show version</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-h/-help</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Show help</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-create-config</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Write a config-file template</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-disable-local-llms</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Use only distributed/API providers</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-prefer-distributed</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Prefer distributed workers</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-c/-config</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Config file path</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>cli</td>
<td><code>-hash-codebase</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Compute codebase hash and exit</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
</tbody>
</table>
<h2 id="cmddeployment">cmd/deployment</h2>
<table style="width:100%;">
<colgroup>
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
<col style="width: 11%" />
</colgroup>
<thead>
<tr>
<th>Component</th>
<th>Feature</th>
<th>Category</th>
<th>Implementation</th>
<th>Wiring</th>
<th>Real-use</th>
<th>Tests</th>
<th>Validation</th>
<th>Video-confirmation</th>
</tr>
</thead>
<tbody>
<tr>
<td>deployment</td>
<td>Distributed deployment manager</td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Orchestrates Docker-based main+worker deployment over SSH</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>PENDING</td>
</tr>
<tr>
<td>deployment</td>
<td><code>-config</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Config file (default config.distributed.json)</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>deployment</td>
<td><code>-action</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>deploy/status/stop/cleanup/update/restart/generate-plan</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>deployment</td>
<td><code>-service</code></td>
<td>CLI</td>
<td>Implemented</td>
<td>Wired</td>
<td>Service name for update/restart</td>
<td>Not-inventoried</td>
<td>Source-confirmed</td>
<td>N/A</td>
</tr>
<tr>
<td>deployment</td>