okstra 0.73.0 → 0.74.0
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/docs/project-structure-overview.md +1 -0
- package/docs/superpowers/plans/2026-06-12-html-plan-approval.md +1000 -0
- package/docs/superpowers/specs/2026-06-12-html-plan-approval-design.md +85 -0
- package/package.json +1 -1
- package/runtime/BUILD.json +2 -2
- package/runtime/agents/SKILL.md +1 -1
- package/runtime/agents/workers/codex-worker.md +5 -5
- package/runtime/agents/workers/gemini-worker.md +5 -5
- package/runtime/prompts/profiles/_implementation-executor.md +1 -0
- package/runtime/prompts/profiles/_implementation-verifier.md +1 -0
- package/runtime/prompts/wizard/prompts.ko.json +11 -2
- package/runtime/python/okstra_ctl/clarification_items.py +6 -22
- package/runtime/python/okstra_ctl/md_table.py +56 -0
- package/runtime/python/okstra_ctl/render_final_report.py +8 -1
- package/runtime/python/okstra_ctl/report_views.py +155 -20
- package/runtime/python/okstra_ctl/user_response.py +55 -0
- package/runtime/python/okstra_ctl/wizard.py +116 -11
- package/runtime/python/okstra_token_usage/collect.py +5 -3
- package/runtime/skills/okstra-report-writer/SKILL.md +3 -2
- package/runtime/skills/okstra-run/SKILL.md +1 -1
- package/runtime/skills/okstra-team-contract/SKILL.md +1 -1
- package/runtime/templates/reports/final-report.template.md +55 -50
- package/runtime/templates/reports/report.css +21 -7
- package/runtime/templates/reports/report.js +34 -7
- package/runtime/templates/reports/user-response.template.md +15 -0
- package/runtime/validators/validate-implementation-plan-stages.py +9 -2
- package/runtime/validators/validate-report-views.py +2 -1
- package/runtime/validators/validate-run.py +6 -17
- package/runtime/validators/validate-schedule.py +9 -2
- package/runtime/validators/validate_improvement_report.py +2 -1
|
@@ -23,6 +23,7 @@ from okstra_ctl.improvement_lenses import (
|
|
|
23
23
|
ABSOLUTE_CANDIDATE_CAP,
|
|
24
24
|
SOURCE_WORKERS,
|
|
25
25
|
)
|
|
26
|
+
from okstra_ctl.md_table import split_pipe_row
|
|
26
27
|
|
|
27
28
|
|
|
28
29
|
_VERDICT_TOKENS = ("candidates-ready", "no-candidates", "blocked")
|
|
@@ -57,7 +58,7 @@ def _read_section_table(body: str, heading: str) -> list[list[str]]:
|
|
|
57
58
|
s = line.strip()
|
|
58
59
|
if not s.startswith("|") or not s.endswith("|"):
|
|
59
60
|
continue
|
|
60
|
-
cells = [_CELL_ANCHOR_RE.sub("", c).strip() for c in s
|
|
61
|
+
cells = [_CELL_ANCHOR_RE.sub("", c).strip() for c in split_pipe_row(s)]
|
|
61
62
|
if all(set(c) <= set("-: ") for c in cells):
|
|
62
63
|
continue
|
|
63
64
|
rows.append(cells)
|