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.
Files changed (30) hide show
  1. package/docs/project-structure-overview.md +1 -0
  2. package/docs/superpowers/plans/2026-06-12-html-plan-approval.md +1000 -0
  3. package/docs/superpowers/specs/2026-06-12-html-plan-approval-design.md +85 -0
  4. package/package.json +1 -1
  5. package/runtime/BUILD.json +2 -2
  6. package/runtime/agents/SKILL.md +1 -1
  7. package/runtime/agents/workers/codex-worker.md +5 -5
  8. package/runtime/agents/workers/gemini-worker.md +5 -5
  9. package/runtime/prompts/profiles/_implementation-executor.md +1 -0
  10. package/runtime/prompts/profiles/_implementation-verifier.md +1 -0
  11. package/runtime/prompts/wizard/prompts.ko.json +11 -2
  12. package/runtime/python/okstra_ctl/clarification_items.py +6 -22
  13. package/runtime/python/okstra_ctl/md_table.py +56 -0
  14. package/runtime/python/okstra_ctl/render_final_report.py +8 -1
  15. package/runtime/python/okstra_ctl/report_views.py +155 -20
  16. package/runtime/python/okstra_ctl/user_response.py +55 -0
  17. package/runtime/python/okstra_ctl/wizard.py +116 -11
  18. package/runtime/python/okstra_token_usage/collect.py +5 -3
  19. package/runtime/skills/okstra-report-writer/SKILL.md +3 -2
  20. package/runtime/skills/okstra-run/SKILL.md +1 -1
  21. package/runtime/skills/okstra-team-contract/SKILL.md +1 -1
  22. package/runtime/templates/reports/final-report.template.md +55 -50
  23. package/runtime/templates/reports/report.css +21 -7
  24. package/runtime/templates/reports/report.js +34 -7
  25. package/runtime/templates/reports/user-response.template.md +15 -0
  26. package/runtime/validators/validate-implementation-plan-stages.py +9 -2
  27. package/runtime/validators/validate-report-views.py +2 -1
  28. package/runtime/validators/validate-run.py +6 -17
  29. package/runtime/validators/validate-schedule.py +9 -2
  30. 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.strip("|").split("|")]
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)