Commit 1842d2b
authored
* Fix four obvious bugs found in review of PR #230
- SKILL.md §6 Step 6: stale §5.4 cross-reference updated to §5.5 after
the Rollout status heading was renumbered (§5.4 is now Pie chart row)
- SKILL.md comp_req_cell(): trlc=True with both counts zero returned
"✅ Available (0/0 comp_req [TRLC])" instead of "❌ Open" because the
zero-guard only fired when parts was empty, but trlc forced a part entry;
fix: check ct==0 and at==0 unconditionally before building parts
- SKILL.md §6a.2: count_directives() was referenced but never defined;
replaced with count_directives_with_status(...)[1]
- quality_runners.py: zip() paired unit-test and coverage dicts by
position, silently dropping rust coverage exit codes beyond the first
module; replaced with a flat check over the merged dict
* style: collapse any() to single line to satisfy ruff
1 parent 12e734a commit 1842d2b
2 files changed
Lines changed: 6 additions & 9 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
807 | 807 | | |
808 | 808 | | |
809 | 809 | | |
| 810 | + | |
810 | 811 | | |
811 | 812 | | |
812 | 813 | | |
813 | | - | |
814 | 814 | | |
815 | 815 | | |
816 | | - | |
| 816 | + | |
817 | 817 | | |
818 | 818 | | |
819 | 819 | | |
| |||
885 | 885 | | |
886 | 886 | | |
887 | 887 | | |
888 | | - | |
| 888 | + | |
889 | 889 | | |
890 | 890 | | |
891 | 891 | | |
| |||
1040 | 1040 | | |
1041 | 1041 | | |
1042 | 1042 | | |
1043 | | - | |
1044 | | - | |
| 1043 | + | |
| 1044 | + | |
1045 | 1045 | | |
1046 | 1046 | | |
1047 | 1047 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
339 | 339 | | |
340 | 340 | | |
341 | 341 | | |
342 | | - | |
343 | | - | |
344 | | - | |
345 | | - | |
| 342 | + | |
346 | 343 | | |
347 | 344 | | |
348 | 345 | | |
| |||
0 commit comments