sdetkit 1.0.3__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 (611) hide show
  1. sdetkit-1.0.3/LICENSE +160 -0
  2. sdetkit-1.0.3/MANIFEST.in +1 -0
  3. sdetkit-1.0.3/PKG-INFO +314 -0
  4. sdetkit-1.0.3/README.md +257 -0
  5. sdetkit-1.0.3/pyproject.toml +151 -0
  6. sdetkit-1.0.3/setup.cfg +4 -0
  7. sdetkit-1.0.3/src/sdetkit/__init__.py +122 -0
  8. sdetkit-1.0.3/src/sdetkit/__main__.py +136 -0
  9. sdetkit-1.0.3/src/sdetkit/_entrypoints.py +14 -0
  10. sdetkit-1.0.3/src/sdetkit/_legacy_lane.py +86 -0
  11. sdetkit-1.0.3/src/sdetkit/_toml.py +14 -0
  12. sdetkit-1.0.3/src/sdetkit/acceleration_closeout_43.py +462 -0
  13. sdetkit-1.0.3/src/sdetkit/agent/__init__.py +3 -0
  14. sdetkit-1.0.3/src/sdetkit/agent/actions.py +402 -0
  15. sdetkit-1.0.3/src/sdetkit/agent/cli.py +434 -0
  16. sdetkit-1.0.3/src/sdetkit/agent/core.py +538 -0
  17. sdetkit-1.0.3/src/sdetkit/agent/dashboard.py +346 -0
  18. sdetkit-1.0.3/src/sdetkit/agent/demo.py +87 -0
  19. sdetkit-1.0.3/src/sdetkit/agent/omnichannel.py +431 -0
  20. sdetkit-1.0.3/src/sdetkit/agent/providers.py +90 -0
  21. sdetkit-1.0.3/src/sdetkit/agent/templates.py +595 -0
  22. sdetkit-1.0.3/src/sdetkit/apiclient.py +601 -0
  23. sdetkit-1.0.3/src/sdetkit/apiget.py +834 -0
  24. sdetkit-1.0.3/src/sdetkit/apiget_dispatch.py +50 -0
  25. sdetkit-1.0.3/src/sdetkit/argv_flags.py +15 -0
  26. sdetkit-1.0.3/src/sdetkit/artifact_contract_index.py +114 -0
  27. sdetkit-1.0.3/src/sdetkit/atomicio.py +93 -0
  28. sdetkit-1.0.3/src/sdetkit/author_problem.py +2211 -0
  29. sdetkit-1.0.3/src/sdetkit/baseline_dispatch.py +75 -0
  30. sdetkit-1.0.3/src/sdetkit/bools.py +66 -0
  31. sdetkit-1.0.3/src/sdetkit/case_study_launch_closeout_73.py +398 -0
  32. sdetkit-1.0.3/src/sdetkit/case_study_prep1_closeout_69.py +392 -0
  33. sdetkit-1.0.3/src/sdetkit/case_study_prep2_closeout_70.py +394 -0
  34. sdetkit-1.0.3/src/sdetkit/case_study_prep3_closeout_71.py +400 -0
  35. sdetkit-1.0.3/src/sdetkit/case_study_prep4_closeout_72.py +411 -0
  36. sdetkit-1.0.3/src/sdetkit/cassette.py +291 -0
  37. sdetkit-1.0.3/src/sdetkit/checks/__init__.py +60 -0
  38. sdetkit-1.0.3/src/sdetkit/checks/__main__.py +6 -0
  39. sdetkit-1.0.3/src/sdetkit/checks/artifacts.py +694 -0
  40. sdetkit-1.0.3/src/sdetkit/checks/base.py +154 -0
  41. sdetkit-1.0.3/src/sdetkit/checks/builtin.py +398 -0
  42. sdetkit-1.0.3/src/sdetkit/checks/cache.py +117 -0
  43. sdetkit-1.0.3/src/sdetkit/checks/main.py +268 -0
  44. sdetkit-1.0.3/src/sdetkit/checks/planner.py +351 -0
  45. sdetkit-1.0.3/src/sdetkit/checks/registry.py +132 -0
  46. sdetkit-1.0.3/src/sdetkit/checks/results.py +195 -0
  47. sdetkit-1.0.3/src/sdetkit/checks/runner.py +293 -0
  48. sdetkit-1.0.3/src/sdetkit/ci.py +139 -0
  49. sdetkit-1.0.3/src/sdetkit/cli.py +813 -0
  50. sdetkit-1.0.3/src/sdetkit/cli_shortcuts.py +86 -0
  51. sdetkit-1.0.3/src/sdetkit/cli_timing.py +26 -0
  52. sdetkit-1.0.3/src/sdetkit/community_activation.py +411 -0
  53. sdetkit-1.0.3/src/sdetkit/community_program_closeout_62.py +33 -0
  54. sdetkit-1.0.3/src/sdetkit/community_touchpoint_closeout_77.py +411 -0
  55. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_1.py +18 -0
  56. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_10.py +18 -0
  57. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_11.py +18 -0
  58. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_2.py +18 -0
  59. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_3.py +18 -0
  60. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_4.py +18 -0
  61. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_5.py +18 -0
  62. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_6.py +18 -0
  63. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_7.py +18 -0
  64. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_8.py +18 -0
  65. sdetkit-1.0.3/src/sdetkit/continuous_upgrade_closeout_9.py +18 -0
  66. sdetkit-1.0.3/src/sdetkit/contract.py +126 -0
  67. sdetkit-1.0.3/src/sdetkit/contributor_activation_closeout_55.py +467 -0
  68. sdetkit-1.0.3/src/sdetkit/contributor_funnel.py +281 -0
  69. sdetkit-1.0.3/src/sdetkit/contributor_recognition_closeout_76.py +398 -0
  70. sdetkit-1.0.3/src/sdetkit/core_preparse_dispatch.py +35 -0
  71. sdetkit-1.0.3/src/sdetkit/demo.py +276 -0
  72. sdetkit-1.0.3/src/sdetkit/demo_asset2_34.py +25 -0
  73. sdetkit-1.0.3/src/sdetkit/demo_asset_33.py +25 -0
  74. sdetkit-1.0.3/src/sdetkit/distribution_batch_38.py +27 -0
  75. sdetkit-1.0.3/src/sdetkit/distribution_closeout_36.py +26 -0
  76. sdetkit-1.0.3/src/sdetkit/distribution_scaling_closeout_74.py +399 -0
  77. sdetkit-1.0.3/src/sdetkit/docs_loop_closeout_53.py +514 -0
  78. sdetkit-1.0.3/src/sdetkit/docs_navigation.py +281 -0
  79. sdetkit-1.0.3/src/sdetkit/docs_qa.py +260 -0
  80. sdetkit-1.0.3/src/sdetkit/doctor.py +3451 -0
  81. sdetkit-1.0.3/src/sdetkit/ecosystem_priorities_closeout_78.py +405 -0
  82. sdetkit-1.0.3/src/sdetkit/enterprise_assessment.py +686 -0
  83. sdetkit-1.0.3/src/sdetkit/enterprise_readiness.py +503 -0
  84. sdetkit-1.0.3/src/sdetkit/entrypoints.py +15 -0
  85. sdetkit-1.0.3/src/sdetkit/evidence.py +261 -0
  86. sdetkit-1.0.3/src/sdetkit/evidence_narrative_closeout_84.py +411 -0
  87. sdetkit-1.0.3/src/sdetkit/evidence_workspace.py +184 -0
  88. sdetkit-1.0.3/src/sdetkit/execution_prioritization_closeout_50.py +31 -0
  89. sdetkit-1.0.3/src/sdetkit/expansion_automation_41.py +27 -0
  90. sdetkit-1.0.3/src/sdetkit/expansion_closeout_45.py +441 -0
  91. sdetkit-1.0.3/src/sdetkit/experiment_lane_37.py +29 -0
  92. sdetkit-1.0.3/src/sdetkit/external_contribution.py +463 -0
  93. sdetkit-1.0.3/src/sdetkit/feature_registry.py +173 -0
  94. sdetkit-1.0.3/src/sdetkit/feature_registry_cli.py +182 -0
  95. sdetkit-1.0.3/src/sdetkit/first_contribution.py +388 -0
  96. sdetkit-1.0.3/src/sdetkit/forensics.py +183 -0
  97. sdetkit-1.0.3/src/sdetkit/gate.py +838 -0
  98. sdetkit-1.0.3/src/sdetkit/github_actions_quickstart.py +572 -0
  99. sdetkit-1.0.3/src/sdetkit/gitlab_ci_quickstart.py +603 -0
  100. sdetkit-1.0.3/src/sdetkit/governance_handoff_closeout_87.py +409 -0
  101. sdetkit-1.0.3/src/sdetkit/governance_priorities_closeout_88.py +409 -0
  102. sdetkit-1.0.3/src/sdetkit/governance_scale_closeout_89.py +411 -0
  103. sdetkit-1.0.3/src/sdetkit/growth_campaign_closeout_81.py +395 -0
  104. sdetkit-1.0.3/src/sdetkit/help_surface.py +57 -0
  105. sdetkit-1.0.3/src/sdetkit/import_hazards.py +38 -0
  106. sdetkit-1.0.3/src/sdetkit/inspect_compare.py +581 -0
  107. sdetkit-1.0.3/src/sdetkit/inspect_compare_forwarding.py +33 -0
  108. sdetkit-1.0.3/src/sdetkit/inspect_data.py +954 -0
  109. sdetkit-1.0.3/src/sdetkit/inspect_forwarding.py +15 -0
  110. sdetkit-1.0.3/src/sdetkit/inspect_project.py +641 -0
  111. sdetkit-1.0.3/src/sdetkit/inspect_project_forwarding.py +18 -0
  112. sdetkit-1.0.3/src/sdetkit/integration.py +642 -0
  113. sdetkit-1.0.3/src/sdetkit/integration_expansion2_closeout_66.py +405 -0
  114. sdetkit-1.0.3/src/sdetkit/integration_expansion3_closeout_67.py +411 -0
  115. sdetkit-1.0.3/src/sdetkit/integration_expansion4_closeout_68.py +416 -0
  116. sdetkit-1.0.3/src/sdetkit/integration_feedback_closeout_82.py +411 -0
  117. sdetkit-1.0.3/src/sdetkit/intelligence.py +388 -0
  118. sdetkit-1.0.3/src/sdetkit/judgment.py +268 -0
  119. sdetkit-1.0.3/src/sdetkit/kits.py +385 -0
  120. sdetkit-1.0.3/src/sdetkit/kpi_audit.py +29 -0
  121. sdetkit-1.0.3/src/sdetkit/kpi_deep_audit_closeout_57.py +31 -0
  122. sdetkit-1.0.3/src/sdetkit/kpi_instrumentation_35.py +25 -0
  123. sdetkit-1.0.3/src/sdetkit/kpi_report.py +152 -0
  124. sdetkit-1.0.3/src/sdetkit/kvcli.py +171 -0
  125. sdetkit-1.0.3/src/sdetkit/launch_readiness_closeout_86.py +409 -0
  126. sdetkit-1.0.3/src/sdetkit/legacy_adapters/__init__.py +16 -0
  127. sdetkit-1.0.3/src/sdetkit/legacy_adapters/closeout.py +51 -0
  128. sdetkit-1.0.3/src/sdetkit/legacy_adapters/continuous_upgrade.py +15 -0
  129. sdetkit-1.0.3/src/sdetkit/legacy_adapters/foundation.py +36 -0
  130. sdetkit-1.0.3/src/sdetkit/legacy_cli.py +54 -0
  131. sdetkit-1.0.3/src/sdetkit/legacy_commands.py +55 -0
  132. sdetkit-1.0.3/src/sdetkit/legacy_namespace.py +21 -0
  133. sdetkit-1.0.3/src/sdetkit/main_.py +3 -0
  134. sdetkit-1.0.3/src/sdetkit/maintenance/__init__.py +5 -0
  135. sdetkit-1.0.3/src/sdetkit/maintenance/__main__.py +6 -0
  136. sdetkit-1.0.3/src/sdetkit/maintenance/checks/__init__.py +1 -0
  137. sdetkit-1.0.3/src/sdetkit/maintenance/checks/clean_tree_check.py +76 -0
  138. sdetkit-1.0.3/src/sdetkit/maintenance/checks/custom_example_check.py +27 -0
  139. sdetkit-1.0.3/src/sdetkit/maintenance/checks/deps_check.py +59 -0
  140. sdetkit-1.0.3/src/sdetkit/maintenance/checks/doctor_check.py +115 -0
  141. sdetkit-1.0.3/src/sdetkit/maintenance/checks/github_automation_check.py +341 -0
  142. sdetkit-1.0.3/src/sdetkit/maintenance/checks/lint_check.py +85 -0
  143. sdetkit-1.0.3/src/sdetkit/maintenance/checks/security_check.py +243 -0
  144. sdetkit-1.0.3/src/sdetkit/maintenance/checks/tests_check.py +55 -0
  145. sdetkit-1.0.3/src/sdetkit/maintenance/cli.py +360 -0
  146. sdetkit-1.0.3/src/sdetkit/maintenance/main.py +6 -0
  147. sdetkit-1.0.3/src/sdetkit/maintenance/registry.py +42 -0
  148. sdetkit-1.0.3/src/sdetkit/maintenance/types.py +47 -0
  149. sdetkit-1.0.3/src/sdetkit/maintenance/utils.py +8 -0
  150. sdetkit-1.0.3/src/sdetkit/netclient.py +1042 -0
  151. sdetkit-1.0.3/src/sdetkit/notify.py +83 -0
  152. sdetkit-1.0.3/src/sdetkit/notify_plugins.py +54 -0
  153. sdetkit-1.0.3/src/sdetkit/objection_closeout_48.py +29 -0
  154. sdetkit-1.0.3/src/sdetkit/objection_handling.py +534 -0
  155. sdetkit-1.0.3/src/sdetkit/onboarding.py +293 -0
  156. sdetkit-1.0.3/src/sdetkit/onboarding_optimization.py +458 -0
  157. sdetkit-1.0.3/src/sdetkit/ops.py +980 -0
  158. sdetkit-1.0.3/src/sdetkit/ops_control.py +371 -0
  159. sdetkit-1.0.3/src/sdetkit/optimization_closeout_42.py +477 -0
  160. sdetkit-1.0.3/src/sdetkit/optimization_closeout_46.py +444 -0
  161. sdetkit-1.0.3/src/sdetkit/optional_httpx.py +65 -0
  162. sdetkit-1.0.3/src/sdetkit/parsed_shortcuts.py +63 -0
  163. sdetkit-1.0.3/src/sdetkit/parser_helpers.py +23 -0
  164. sdetkit-1.0.3/src/sdetkit/partner_outreach_closeout_80.py +458 -0
  165. sdetkit-1.0.3/src/sdetkit/patch.py +959 -0
  166. sdetkit-1.0.3/src/sdetkit/phase1_hardening_29.py +342 -0
  167. sdetkit-1.0.3/src/sdetkit/phase1_wrap_30.py +28 -0
  168. sdetkit-1.0.3/src/sdetkit/phase2_hardening_closeout_58.py +388 -0
  169. sdetkit-1.0.3/src/sdetkit/phase2_kickoff_31.py +27 -0
  170. sdetkit-1.0.3/src/sdetkit/phase2_wrap_handoff_closeout_60.py +383 -0
  171. sdetkit-1.0.3/src/sdetkit/phase3_kickoff_closeout_61.py +438 -0
  172. sdetkit-1.0.3/src/sdetkit/phase3_preplan_closeout_59.py +378 -0
  173. sdetkit-1.0.3/src/sdetkit/phase3_wrap_publication_closeout_90.py +418 -0
  174. sdetkit-1.0.3/src/sdetkit/phase_boost.py +48 -0
  175. sdetkit-1.0.3/src/sdetkit/playbook_aliases.py +20 -0
  176. sdetkit-1.0.3/src/sdetkit/playbook_post_39.py +27 -0
  177. sdetkit-1.0.3/src/sdetkit/playbooks_cli.py +523 -0
  178. sdetkit-1.0.3/src/sdetkit/plugin_system.py +114 -0
  179. sdetkit-1.0.3/src/sdetkit/plugins.py +870 -0
  180. sdetkit-1.0.3/src/sdetkit/policy.py +274 -0
  181. sdetkit-1.0.3/src/sdetkit/portfolio_readiness.py +159 -0
  182. sdetkit-1.0.3/src/sdetkit/premium_gate_engine.py +1915 -0
  183. sdetkit-1.0.3/src/sdetkit/production_readiness.py +357 -0
  184. sdetkit-1.0.3/src/sdetkit/projects.py +553 -0
  185. sdetkit-1.0.3/src/sdetkit/proof.py +214 -0
  186. sdetkit-1.0.3/src/sdetkit/public_command_surface.json +41 -0
  187. sdetkit-1.0.3/src/sdetkit/public_surface_contract.py +151 -0
  188. sdetkit-1.0.3/src/sdetkit/quality_contribution_delta.py +488 -0
  189. sdetkit-1.0.3/src/sdetkit/readiness.py +403 -0
  190. sdetkit-1.0.3/src/sdetkit/release_cadence_32.py +25 -0
  191. sdetkit-1.0.3/src/sdetkit/release_communications.py +488 -0
  192. sdetkit-1.0.3/src/sdetkit/release_dispatch.py +32 -0
  193. sdetkit-1.0.3/src/sdetkit/release_prioritization_closeout_85.py +412 -0
  194. sdetkit-1.0.3/src/sdetkit/release_readiness.py +423 -0
  195. sdetkit-1.0.3/src/sdetkit/reliability_closeout_47.py +29 -0
  196. sdetkit-1.0.3/src/sdetkit/reliability_evidence_pack.py +500 -0
  197. sdetkit-1.0.3/src/sdetkit/repo.py +4807 -0
  198. sdetkit-1.0.3/src/sdetkit/repo_adoption.py +166 -0
  199. sdetkit-1.0.3/src/sdetkit/repo_init_forwarding.py +24 -0
  200. sdetkit-1.0.3/src/sdetkit/report.py +1095 -0
  201. sdetkit-1.0.3/src/sdetkit/review.py +2555 -0
  202. sdetkit-1.0.3/src/sdetkit/review_engine.py +1052 -0
  203. sdetkit-1.0.3/src/sdetkit/review_forwarding.py +26 -0
  204. sdetkit-1.0.3/src/sdetkit/roadmap.py +147 -0
  205. sdetkit-1.0.3/src/sdetkit/roadmap_manifest.py +298 -0
  206. sdetkit-1.0.3/src/sdetkit/scale_closeout_44.py +458 -0
  207. sdetkit-1.0.3/src/sdetkit/scale_lane_40.py +27 -0
  208. sdetkit-1.0.3/src/sdetkit/scale_upgrade_closeout_79.py +396 -0
  209. sdetkit-1.0.3/src/sdetkit/sdet_package.py +318 -0
  210. sdetkit-1.0.3/src/sdetkit/security.py +176 -0
  211. sdetkit-1.0.3/src/sdetkit/security_gate.py +1460 -0
  212. sdetkit-1.0.3/src/sdetkit/serve.py +391 -0
  213. sdetkit-1.0.3/src/sdetkit/serve_forwarding.py +12 -0
  214. sdetkit-1.0.3/src/sdetkit/ship_readiness.py +230 -0
  215. sdetkit-1.0.3/src/sdetkit/sqlite_scalar.py +196 -0
  216. sdetkit-1.0.3/src/sdetkit/stabilization_closeout_56.py +451 -0
  217. sdetkit-1.0.3/src/sdetkit/startup_readiness.py +352 -0
  218. sdetkit-1.0.3/src/sdetkit/templates/__init__.py +0 -0
  219. sdetkit-1.0.3/src/sdetkit/templates/enterprise_python/__init__.py +0 -0
  220. sdetkit-1.0.3/src/sdetkit/test_bootstrap.py +33 -0
  221. sdetkit-1.0.3/src/sdetkit/test_bootstrap_contract.py +126 -0
  222. sdetkit-1.0.3/src/sdetkit/test_bootstrap_validate.py +66 -0
  223. sdetkit-1.0.3/src/sdetkit/textutil.py +47 -0
  224. sdetkit-1.0.3/src/sdetkit/triage_templates.py +449 -0
  225. sdetkit-1.0.3/src/sdetkit/trust_assets.py +523 -0
  226. sdetkit-1.0.3/src/sdetkit/trust_assets_refresh_closeout_75.py +398 -0
  227. sdetkit-1.0.3/src/sdetkit/trust_faq_expansion_closeout_83.py +417 -0
  228. sdetkit-1.0.3/src/sdetkit/upgrade_audit.py +2439 -0
  229. sdetkit-1.0.3/src/sdetkit/upgrade_hub.py +148 -0
  230. sdetkit-1.0.3/src/sdetkit/versioning.py +10 -0
  231. sdetkit-1.0.3/src/sdetkit/weekly_review.py +161 -0
  232. sdetkit-1.0.3/src/sdetkit/weekly_review_28.py +24 -0
  233. sdetkit-1.0.3/src/sdetkit/weekly_review_closeout_49.py +27 -0
  234. sdetkit-1.0.3/src/sdetkit/weekly_review_closeout_65.py +405 -0
  235. sdetkit-1.0.3/src/sdetkit.egg-info/PKG-INFO +314 -0
  236. sdetkit-1.0.3/src/sdetkit.egg-info/SOURCES.txt +609 -0
  237. sdetkit-1.0.3/src/sdetkit.egg-info/dependency_links.txt +1 -0
  238. sdetkit-1.0.3/src/sdetkit.egg-info/entry_points.txt +12 -0
  239. sdetkit-1.0.3/src/sdetkit.egg-info/requires.txt +31 -0
  240. sdetkit-1.0.3/src/sdetkit.egg-info/top_level.txt +2 -0
  241. sdetkit-1.0.3/src/sdkit/__init__.py +3 -0
  242. sdetkit-1.0.3/src/sdkit/__main__.py +6 -0
  243. sdetkit-1.0.3/tests/test_acceleration_closeout.py +133 -0
  244. sdetkit-1.0.3/tests/test_adaptive_postcheck.py +155 -0
  245. sdetkit-1.0.3/tests/test_adaptive_scenario_database_expansion.py +31 -0
  246. sdetkit-1.0.3/tests/test_adoption_scorecard_contract_v2.py +66 -0
  247. sdetkit-1.0.3/tests/test_adoption_scorecard_script.py +149 -0
  248. sdetkit-1.0.3/tests/test_agent_actions_extra.py +257 -0
  249. sdetkit-1.0.3/tests/test_agent_cli_ux.py +82 -0
  250. sdetkit-1.0.3/tests/test_agent_core_extra.py +67 -0
  251. sdetkit-1.0.3/tests/test_agent_dashboard_escaping.py +30 -0
  252. sdetkit-1.0.3/tests/test_agent_foundation.py +392 -0
  253. sdetkit-1.0.3/tests/test_agent_omnichannel.py +146 -0
  254. sdetkit-1.0.3/tests/test_agent_omnichannel_extra.py +86 -0
  255. sdetkit-1.0.3/tests/test_agent_productization.py +129 -0
  256. sdetkit-1.0.3/tests/test_agent_providers_extra.py +69 -0
  257. sdetkit-1.0.3/tests/test_agent_templates_cli.py +79 -0
  258. sdetkit-1.0.3/tests/test_agent_templates_engine.py +243 -0
  259. sdetkit-1.0.3/tests/test_apiclient.py +222 -0
  260. sdetkit-1.0.3/tests/test_apiclient_advanced.py +88 -0
  261. sdetkit-1.0.3/tests/test_apiclient_async.py +305 -0
  262. sdetkit-1.0.3/tests/test_apiclient_async_advanced.py +74 -0
  263. sdetkit-1.0.3/tests/test_apiclient_async_list.py +33 -0
  264. sdetkit-1.0.3/tests/test_apiclient_async_pagination.py +40 -0
  265. sdetkit-1.0.3/tests/test_apiclient_async_timeout.py +36 -0
  266. sdetkit-1.0.3/tests/test_apiclient_branches_wave7.py +172 -0
  267. sdetkit-1.0.3/tests/test_apiclient_list.py +29 -0
  268. sdetkit-1.0.3/tests/test_apiclient_mutmut_killers.py +132 -0
  269. sdetkit-1.0.3/tests/test_apiclient_pagination.py +55 -0
  270. sdetkit-1.0.3/tests/test_apiclient_retry_helpers_extra.py +27 -0
  271. sdetkit-1.0.3/tests/test_apiclient_timeout.py +48 -0
  272. sdetkit-1.0.3/tests/test_apiget_at_file.py +368 -0
  273. sdetkit-1.0.3/tests/test_apiget_auth_dump_headers.py +248 -0
  274. sdetkit-1.0.3/tests/test_apiget_dispatch.py +50 -0
  275. sdetkit-1.0.3/tests/test_apiget_fail_flags.py +53 -0
  276. sdetkit-1.0.3/tests/test_apiget_query_header_stdin.py +101 -0
  277. sdetkit-1.0.3/tests/test_apiget_raw_path_corner_cases.py +190 -0
  278. sdetkit-1.0.3/tests/test_apiget_request_builder.py +88 -0
  279. sdetkit-1.0.3/tests/test_apiget_verbose_debug.py +212 -0
  280. sdetkit-1.0.3/tests/test_argv_flags.py +15 -0
  281. sdetkit-1.0.3/tests/test_artifact_contract_index.py +57 -0
  282. sdetkit-1.0.3/tests/test_atomicio.py +106 -0
  283. sdetkit-1.0.3/tests/test_atomicio_bytes_branches_wave1.py +65 -0
  284. sdetkit-1.0.3/tests/test_atomicio_mutmut_killers.py +192 -0
  285. sdetkit-1.0.3/tests/test_author_problem.py +715 -0
  286. sdetkit-1.0.3/tests/test_baseline_dispatch.py +30 -0
  287. sdetkit-1.0.3/tests/test_baseline_umbrella.py +50 -0
  288. sdetkit-1.0.3/tests/test_bool_coercion.py +118 -0
  289. sdetkit-1.0.3/tests/test_bootstrap_idempotency.py +55 -0
  290. sdetkit-1.0.3/tests/test_build_ci_summary.py +76 -0
  291. sdetkit-1.0.3/tests/test_build_kpi_weekly_snapshot.py +47 -0
  292. sdetkit-1.0.3/tests/test_build_portfolio_scorecard.py +106 -0
  293. sdetkit-1.0.3/tests/test_build_top_tier_reporting_bundle.py +42 -0
  294. sdetkit-1.0.3/tests/test_canonical_path_drift_script.py +26 -0
  295. sdetkit-1.0.3/tests/test_case_study_launch_closeout.py +168 -0
  296. sdetkit-1.0.3/tests/test_case_study_prep1_closeout.py +128 -0
  297. sdetkit-1.0.3/tests/test_case_study_prep2_closeout.py +117 -0
  298. sdetkit-1.0.3/tests/test_case_study_prep3_closeout.py +162 -0
  299. sdetkit-1.0.3/tests/test_case_study_prep4_closeout.py +166 -0
  300. sdetkit-1.0.3/tests/test_cassette.py +145 -0
  301. sdetkit-1.0.3/tests/test_cassette_branches_extra.py +180 -0
  302. sdetkit-1.0.3/tests/test_check_installed_wheel_contract.py +93 -0
  303. sdetkit-1.0.3/tests/test_check_kpi_weekly_contract.py +30 -0
  304. sdetkit-1.0.3/tests/test_check_reporting_freshness.py +96 -0
  305. sdetkit-1.0.3/tests/test_check_test_bootstrap_contract.py +75 -0
  306. sdetkit-1.0.3/tests/test_check_top_tier_artifact_set.py +110 -0
  307. sdetkit-1.0.3/tests/test_check_top_tier_bundle_manifest.py +45 -0
  308. sdetkit-1.0.3/tests/test_check_top_tier_reporting_contract.py +29 -0
  309. sdetkit-1.0.3/tests/test_checks_artifacts.py +245 -0
  310. sdetkit-1.0.3/tests/test_checks_registry.py +366 -0
  311. sdetkit-1.0.3/tests/test_ci_sh_contract_gate_fast.py +22 -0
  312. sdetkit-1.0.3/tests/test_ci_templates_bootstrap.py +22 -0
  313. sdetkit-1.0.3/tests/test_ci_templates_cli.py +86 -0
  314. sdetkit-1.0.3/tests/test_ci_validate_templates.py +108 -0
  315. sdetkit-1.0.3/tests/test_ci_workflow_premerge_gate.py +22 -0
  316. sdetkit-1.0.3/tests/test_cli_apiget_cassette.py +148 -0
  317. sdetkit-1.0.3/tests/test_cli_cassette_get.py +77 -0
  318. sdetkit-1.0.3/tests/test_cli_doctor.py +110 -0
  319. sdetkit-1.0.3/tests/test_cli_e2e_subprocess.py +79 -0
  320. sdetkit-1.0.3/tests/test_cli_help_discoverability_contract.py +138 -0
  321. sdetkit-1.0.3/tests/test_cli_help_lists_subcommands.py +122 -0
  322. sdetkit-1.0.3/tests/test_cli_hidden_surface.py +28 -0
  323. sdetkit-1.0.3/tests/test_cli_import_minimal.py +33 -0
  324. sdetkit-1.0.3/tests/test_cli_lazy_loading.py +48 -0
  325. sdetkit-1.0.3/tests/test_cli_patch.py +47 -0
  326. sdetkit-1.0.3/tests/test_cli_productized_closeout_aliases.py +98 -0
  327. sdetkit-1.0.3/tests/test_cli_sdetkit.py +171 -0
  328. sdetkit-1.0.3/tests/test_cli_shortcuts.py +44 -0
  329. sdetkit-1.0.3/tests/test_cli_smoke_coverage.py +130 -0
  330. sdetkit-1.0.3/tests/test_cli_timing.py +31 -0
  331. sdetkit-1.0.3/tests/test_cli_timing_observability.py +38 -0
  332. sdetkit-1.0.3/tests/test_cli_umbrella_surface.py +69 -0
  333. sdetkit-1.0.3/tests/test_collect_git_changed_files_flags.py +84 -0
  334. sdetkit-1.0.3/tests/test_community_activation.py +90 -0
  335. sdetkit-1.0.3/tests/test_community_program_closeout.py +156 -0
  336. sdetkit-1.0.3/tests/test_community_touchpoint_closeout.py +162 -0
  337. sdetkit-1.0.3/tests/test_contract_runtime_cli.py +39 -0
  338. sdetkit-1.0.3/tests/test_contributor_activation_closeout.py +143 -0
  339. sdetkit-1.0.3/tests/test_contributor_funnel.py +72 -0
  340. sdetkit-1.0.3/tests/test_contributor_funnel_extra.py +28 -0
  341. sdetkit-1.0.3/tests/test_contributor_recognition_closeout.py +119 -0
  342. sdetkit-1.0.3/tests/test_control_plane_ops.py +93 -0
  343. sdetkit-1.0.3/tests/test_core_preparse_dispatch.py +35 -0
  344. sdetkit-1.0.3/tests/test_coverage_boost_targets.py +178 -0
  345. sdetkit-1.0.3/tests/test_demo_asset.py +126 -0
  346. sdetkit-1.0.3/tests/test_demo_asset2.py +128 -0
  347. sdetkit-1.0.3/tests/test_demo_cli.py +106 -0
  348. sdetkit-1.0.3/tests/test_dev_entrypoint.py +25 -0
  349. sdetkit-1.0.3/tests/test_distribution_batch.py +128 -0
  350. sdetkit-1.0.3/tests/test_distribution_closeout.py +133 -0
  351. sdetkit-1.0.3/tests/test_distribution_scaling_closeout.py +172 -0
  352. sdetkit-1.0.3/tests/test_docs_loop_closeout.py +123 -0
  353. sdetkit-1.0.3/tests/test_docs_navigation.py +133 -0
  354. sdetkit-1.0.3/tests/test_docs_qa.py +283 -0
  355. sdetkit-1.0.3/tests/test_doctor_ascii.py +80 -0
  356. sdetkit-1.0.3/tests/test_doctor_baseline.py +79 -0
  357. sdetkit-1.0.3/tests/test_doctor_contract_upgrade.py +21 -0
  358. sdetkit-1.0.3/tests/test_doctor_devx.py +66 -0
  359. sdetkit-1.0.3/tests/test_doctor_diagnostics.py +150 -0
  360. sdetkit-1.0.3/tests/test_doctor_enterprise_profile.py +595 -0
  361. sdetkit-1.0.3/tests/test_doctor_explain.py +25 -0
  362. sdetkit-1.0.3/tests/test_doctor_md_and_out.py +57 -0
  363. sdetkit-1.0.3/tests/test_doctor_next_pass_contract.py +65 -0
  364. sdetkit-1.0.3/tests/test_doctor_next_pass_markdown_contract.py +41 -0
  365. sdetkit-1.0.3/tests/test_doctor_plan.py +65 -0
  366. sdetkit-1.0.3/tests/test_doctor_policy_gate.py +140 -0
  367. sdetkit-1.0.3/tests/test_doctor_release_meta.py +114 -0
  368. sdetkit-1.0.3/tests/test_doctor_release_meta_edges_wave9.py +180 -0
  369. sdetkit-1.0.3/tests/test_doctor_repo_readiness.py +103 -0
  370. sdetkit-1.0.3/tests/test_doctor_score_and_recommendations.py +42 -0
  371. sdetkit-1.0.3/tests/test_doctor_snapshot.py +52 -0
  372. sdetkit-1.0.3/tests/test_doctor_surgical.py +62 -0
  373. sdetkit-1.0.3/tests/test_doctor_treat.py +52 -0
  374. sdetkit-1.0.3/tests/test_doctor_upgrade_audit.py +670 -0
  375. sdetkit-1.0.3/tests/test_doctor_upgrade_audit_fallback.py +15 -0
  376. sdetkit-1.0.3/tests/test_ecosystem_priorities_closeout.py +127 -0
  377. sdetkit-1.0.3/tests/test_enterprise_assessment.py +182 -0
  378. sdetkit-1.0.3/tests/test_enterprise_assessment_cli.py +22 -0
  379. sdetkit-1.0.3/tests/test_enterprise_assessment_contract_script.py +44 -0
  380. sdetkit-1.0.3/tests/test_enterprise_execution_tracker_plan.py +23 -0
  381. sdetkit-1.0.3/tests/test_enterprise_next_pass_template.py +18 -0
  382. sdetkit-1.0.3/tests/test_enterprise_readiness.py +154 -0
  383. sdetkit-1.0.3/tests/test_enterprise_readiness_extra.py +55 -0
  384. sdetkit-1.0.3/tests/test_entrypoints_cassette_get.py +63 -0
  385. sdetkit-1.0.3/tests/test_entrypoints_smoke.py +60 -0
  386. sdetkit-1.0.3/tests/test_evidence_narrative_closeout.py +169 -0
  387. sdetkit-1.0.3/tests/test_evidence_pack.py +48 -0
  388. sdetkit-1.0.3/tests/test_evidence_workspace.py +70 -0
  389. sdetkit-1.0.3/tests/test_example_goldens.py +69 -0
  390. sdetkit-1.0.3/tests/test_execution_prioritization_closeout.py +153 -0
  391. sdetkit-1.0.3/tests/test_expansion_automation.py +125 -0
  392. sdetkit-1.0.3/tests/test_expansion_closeout.py +127 -0
  393. sdetkit-1.0.3/tests/test_experiment_lane.py +130 -0
  394. sdetkit-1.0.3/tests/test_external_contribution.py +98 -0
  395. sdetkit-1.0.3/tests/test_external_first_run_contract.py +156 -0
  396. sdetkit-1.0.3/tests/test_feature_registry.py +104 -0
  397. sdetkit-1.0.3/tests/test_feature_registry_cli.py +144 -0
  398. sdetkit-1.0.3/tests/test_file_inventory_cache.py +346 -0
  399. sdetkit-1.0.3/tests/test_first_contribution.py +87 -0
  400. sdetkit-1.0.3/tests/test_first_contribution_extra.py +87 -0
  401. sdetkit-1.0.3/tests/test_gate_baseline.py +92 -0
  402. sdetkit-1.0.3/tests/test_gate_branches_extra.py +70 -0
  403. sdetkit-1.0.3/tests/test_gate_branches_wave11.py +139 -0
  404. sdetkit-1.0.3/tests/test_gate_coverage_wave11.py +78 -0
  405. sdetkit-1.0.3/tests/test_gate_extra.py +38 -0
  406. sdetkit-1.0.3/tests/test_gate_fast.py +289 -0
  407. sdetkit-1.0.3/tests/test_gate_fast_stable_json_contract.py +37 -0
  408. sdetkit-1.0.3/tests/test_gate_more_coverage_wave2.py +149 -0
  409. sdetkit-1.0.3/tests/test_gate_more_extra.py +52 -0
  410. sdetkit-1.0.3/tests/test_gate_release.py +187 -0
  411. sdetkit-1.0.3/tests/test_gate_scripts_auto_bootstrap.py +14 -0
  412. sdetkit-1.0.3/tests/test_gate_trend.py +46 -0
  413. sdetkit-1.0.3/tests/test_gate_wave11_coverage.py +139 -0
  414. sdetkit-1.0.3/tests/test_generated_artifacts_freshness.py +54 -0
  415. sdetkit-1.0.3/tests/test_github_actions_quickstart.py +163 -0
  416. sdetkit-1.0.3/tests/test_gitlab_ci_quickstart.py +190 -0
  417. sdetkit-1.0.3/tests/test_golden_path_health_script.py +64 -0
  418. sdetkit-1.0.3/tests/test_governance_handoff_closeout.py +168 -0
  419. sdetkit-1.0.3/tests/test_governance_priorities_closeout.py +173 -0
  420. sdetkit-1.0.3/tests/test_governance_scale_closeout.py +165 -0
  421. sdetkit-1.0.3/tests/test_growth_campaign_closeout.py +157 -0
  422. sdetkit-1.0.3/tests/test_help_surface.py +13 -0
  423. sdetkit-1.0.3/tests/test_import_hazards_stdlib_shadowing.py +42 -0
  424. sdetkit-1.0.3/tests/test_init_alias.py +54 -0
  425. sdetkit-1.0.3/tests/test_inspect_compare.py +140 -0
  426. sdetkit-1.0.3/tests/test_inspect_compare_forwarding.py +62 -0
  427. sdetkit-1.0.3/tests/test_inspect_data.py +306 -0
  428. sdetkit-1.0.3/tests/test_inspect_forwarding.py +20 -0
  429. sdetkit-1.0.3/tests/test_inspect_project.py +141 -0
  430. sdetkit-1.0.3/tests/test_inspect_project_forwarding.py +40 -0
  431. sdetkit-1.0.3/tests/test_integration_expansion2_closeout.py +178 -0
  432. sdetkit-1.0.3/tests/test_integration_expansion3_closeout.py +183 -0
  433. sdetkit-1.0.3/tests/test_integration_expansion4_closeout.py +136 -0
  434. sdetkit-1.0.3/tests/test_integration_feedback_closeout.py +164 -0
  435. sdetkit-1.0.3/tests/test_integration_topology_check.py +114 -0
  436. sdetkit-1.0.3/tests/test_judgment.py +139 -0
  437. sdetkit-1.0.3/tests/test_kits_blueprint.py +275 -0
  438. sdetkit-1.0.3/tests/test_kits_intelligence_integration_forensics.py +278 -0
  439. sdetkit-1.0.3/tests/test_kits_umbrella_cli.py +161 -0
  440. sdetkit-1.0.3/tests/test_kpi_audit.py +93 -0
  441. sdetkit-1.0.3/tests/test_kpi_deep_audit_closeout.py +139 -0
  442. sdetkit-1.0.3/tests/test_kpi_instrumentation.py +133 -0
  443. sdetkit-1.0.3/tests/test_kpi_report.py +72 -0
  444. sdetkit-1.0.3/tests/test_kpi_weekly_workflow.py +30 -0
  445. sdetkit-1.0.3/tests/test_kvcli.py +313 -0
  446. sdetkit-1.0.3/tests/test_kvcli_mutmut_killers.py +398 -0
  447. sdetkit-1.0.3/tests/test_launch_readiness_closeout.py +165 -0
  448. sdetkit-1.0.3/tests/test_legacy_adapters.py +20 -0
  449. sdetkit-1.0.3/tests/test_legacy_burndown_script.py +122 -0
  450. sdetkit-1.0.3/tests/test_legacy_cli.py +22 -0
  451. sdetkit-1.0.3/tests/test_legacy_command_analyzer_script.py +29 -0
  452. sdetkit-1.0.3/tests/test_legacy_commands.py +34 -0
  453. sdetkit-1.0.3/tests/test_legacy_namespace.py +21 -0
  454. sdetkit-1.0.3/tests/test_main_cassette_get_extra.py +300 -0
  455. sdetkit-1.0.3/tests/test_maintenance_cli.py +817 -0
  456. sdetkit-1.0.3/tests/test_maintenance_cli_extra.py +139 -0
  457. sdetkit-1.0.3/tests/test_maintenance_utils.py +12 -0
  458. sdetkit-1.0.3/tests/test_makefile_targets.py +73 -0
  459. sdetkit-1.0.3/tests/test_netclient_apiclient_more_extra.py +44 -0
  460. sdetkit-1.0.3/tests/test_netclient_async_extra.py +27 -0
  461. sdetkit-1.0.3/tests/test_netclient_branches_wave6.py +219 -0
  462. sdetkit-1.0.3/tests/test_netclient_breaker.py +42 -0
  463. sdetkit-1.0.3/tests/test_netclient_observability.py +76 -0
  464. sdetkit-1.0.3/tests/test_no_hidden_unicode.py +51 -0
  465. sdetkit-1.0.3/tests/test_notify_core_extra.py +119 -0
  466. sdetkit-1.0.3/tests/test_notify_plugins.py +57 -0
  467. sdetkit-1.0.3/tests/test_notify_plugins_control_plane.py +38 -0
  468. sdetkit-1.0.3/tests/test_notify_plugins_extra.py +35 -0
  469. sdetkit-1.0.3/tests/test_objection_closeout.py +121 -0
  470. sdetkit-1.0.3/tests/test_objection_handling.py +89 -0
  471. sdetkit-1.0.3/tests/test_observability_contract_v2.py +74 -0
  472. sdetkit-1.0.3/tests/test_onboarding_cli.py +95 -0
  473. sdetkit-1.0.3/tests/test_onboarding_optimization.py +97 -0
  474. sdetkit-1.0.3/tests/test_operator_onboarding_wizard_script.py +47 -0
  475. sdetkit-1.0.3/tests/test_ops_cli_extra.py +86 -0
  476. sdetkit-1.0.3/tests/test_ops_control_branches_wave1.py +196 -0
  477. sdetkit-1.0.3/tests/test_ops_policy.py +34 -0
  478. sdetkit-1.0.3/tests/test_ops_server.py +85 -0
  479. sdetkit-1.0.3/tests/test_optimization_closeout.py +136 -0
  480. sdetkit-1.0.3/tests/test_optimization_closeout_foundation.py +141 -0
  481. sdetkit-1.0.3/tests/test_optional_httpx.py +33 -0
  482. sdetkit-1.0.3/tests/test_parsed_shortcuts.py +76 -0
  483. sdetkit-1.0.3/tests/test_parser_helpers.py +16 -0
  484. sdetkit-1.0.3/tests/test_partner_outreach_closeout.py +156 -0
  485. sdetkit-1.0.3/tests/test_patch_harness.py +198 -0
  486. sdetkit-1.0.3/tests/test_patch_module_extra.py +264 -0
  487. sdetkit-1.0.3/tests/test_patch_ops_branches_wave8.py +129 -0
  488. sdetkit-1.0.3/tests/test_patch_security_and_schema.py +355 -0
  489. sdetkit-1.0.3/tests/test_phase1_hardening.py +96 -0
  490. sdetkit-1.0.3/tests/test_phase1_wrap.py +99 -0
  491. sdetkit-1.0.3/tests/test_phase2_hardening_closeout.py +143 -0
  492. sdetkit-1.0.3/tests/test_phase2_kickoff.py +134 -0
  493. sdetkit-1.0.3/tests/test_phase2_wrap_handoff_closeout.py +148 -0
  494. sdetkit-1.0.3/tests/test_phase3_kickoff_closeout.py +146 -0
  495. sdetkit-1.0.3/tests/test_phase3_preplan_closeout.py +143 -0
  496. sdetkit-1.0.3/tests/test_phase3_wrap_publication_closeout.py +175 -0
  497. sdetkit-1.0.3/tests/test_phase_boost.py +48 -0
  498. sdetkit-1.0.3/tests/test_playbook_aliases.py +37 -0
  499. sdetkit-1.0.3/tests/test_playbook_post.py +119 -0
  500. sdetkit-1.0.3/tests/test_playbooks_cli_extra.py +96 -0
  501. sdetkit-1.0.3/tests/test_playbooks_help_ux.py +38 -0
  502. sdetkit-1.0.3/tests/test_playbooks_validate.py +100 -0
  503. sdetkit-1.0.3/tests/test_plugin_system_extra.py +114 -0
  504. sdetkit-1.0.3/tests/test_policy_control_plane.py +87 -0
  505. sdetkit-1.0.3/tests/test_policy_fail_on.py +80 -0
  506. sdetkit-1.0.3/tests/test_portfolio_readiness.py +59 -0
  507. sdetkit-1.0.3/tests/test_portfolio_readiness_cli.py +50 -0
  508. sdetkit-1.0.3/tests/test_pr_clean.py +49 -0
  509. sdetkit-1.0.3/tests/test_premerge_release_room_gate.py +69 -0
  510. sdetkit-1.0.3/tests/test_premium_gate_engine.py +708 -0
  511. sdetkit-1.0.3/tests/test_premium_gate_engine_extra.py +44 -0
  512. sdetkit-1.0.3/tests/test_primary_docs_map_script.py +21 -0
  513. sdetkit-1.0.3/tests/test_production_readiness.py +39 -0
  514. sdetkit-1.0.3/tests/test_production_readiness_extra.py +70 -0
  515. sdetkit-1.0.3/tests/test_projects_autodiscover.py +461 -0
  516. sdetkit-1.0.3/tests/test_projects_manifest_edges_wave5.py +253 -0
  517. sdetkit-1.0.3/tests/test_promote_top_tier_bundle.py +46 -0
  518. sdetkit-1.0.3/tests/test_proof_cli.py +38 -0
  519. sdetkit-1.0.3/tests/test_public_front_door_alignment.py +66 -0
  520. sdetkit-1.0.3/tests/test_public_surface_alignment.py +91 -0
  521. sdetkit-1.0.3/tests/test_quality_contribution_delta.py +187 -0
  522. sdetkit-1.0.3/tests/test_quality_script.py +96 -0
  523. sdetkit-1.0.3/tests/test_readiness.py +103 -0
  524. sdetkit-1.0.3/tests/test_real_repo_adoption_contracts.py +234 -0
  525. sdetkit-1.0.3/tests/test_real_repo_adoption_regen_helper.py +163 -0
  526. sdetkit-1.0.3/tests/test_release_cadence.py +128 -0
  527. sdetkit-1.0.3/tests/test_release_communications.py +174 -0
  528. sdetkit-1.0.3/tests/test_release_dispatch.py +33 -0
  529. sdetkit-1.0.3/tests/test_release_preflight.py +53 -0
  530. sdetkit-1.0.3/tests/test_release_prioritization_closeout.py +174 -0
  531. sdetkit-1.0.3/tests/test_release_readiness.py +137 -0
  532. sdetkit-1.0.3/tests/test_reliability_closeout.py +125 -0
  533. sdetkit-1.0.3/tests/test_reliability_evidence_pack.py +296 -0
  534. sdetkit-1.0.3/tests/test_render_release_room_summary.py +73 -0
  535. sdetkit-1.0.3/tests/test_repo_audit.py +377 -0
  536. sdetkit-1.0.3/tests/test_repo_audit_cli.py +161 -0
  537. sdetkit-1.0.3/tests/test_repo_audit_exporters_determinism.py +90 -0
  538. sdetkit-1.0.3/tests/test_repo_audit_performance.py +203 -0
  539. sdetkit-1.0.3/tests/test_repo_audit_policy_baseline.py +229 -0
  540. sdetkit-1.0.3/tests/test_repo_check_cli.py +136 -0
  541. sdetkit-1.0.3/tests/test_repo_dev_ide_precommit.py +220 -0
  542. sdetkit-1.0.3/tests/test_repo_enterprise.py +168 -0
  543. sdetkit-1.0.3/tests/test_repo_init_adoption.py +70 -0
  544. sdetkit-1.0.3/tests/test_repo_init_cli.py +95 -0
  545. sdetkit-1.0.3/tests/test_repo_init_forwarding.py +53 -0
  546. sdetkit-1.0.3/tests/test_repo_monorepo_projects.py +258 -0
  547. sdetkit-1.0.3/tests/test_repo_ops.py +78 -0
  548. sdetkit-1.0.3/tests/test_repo_plugins_fix_audit.py +179 -0
  549. sdetkit-1.0.3/tests/test_repo_policy_governance.py +288 -0
  550. sdetkit-1.0.3/tests/test_repo_pr_fix.py +319 -0
  551. sdetkit-1.0.3/tests/test_repo_security_suite.py +201 -0
  552. sdetkit-1.0.3/tests/test_report_branches_wave10.py +178 -0
  553. sdetkit-1.0.3/tests/test_report_build_determinism.py +135 -0
  554. sdetkit-1.0.3/tests/test_report_cli_contracts.py +1116 -0
  555. sdetkit-1.0.3/tests/test_report_trends.py +287 -0
  556. sdetkit-1.0.3/tests/test_review.py +821 -0
  557. sdetkit-1.0.3/tests/test_review_error_assistant.py +36 -0
  558. sdetkit-1.0.3/tests/test_review_forwarding.py +56 -0
  559. sdetkit-1.0.3/tests/test_roadmap_cli.py +129 -0
  560. sdetkit-1.0.3/tests/test_roadmap_manifest_edges_wave12.py +149 -0
  561. sdetkit-1.0.3/tests/test_roadmap_manifest_tooling.py +29 -0
  562. sdetkit-1.0.3/tests/test_runtime_container_contract.py +12 -0
  563. sdetkit-1.0.3/tests/test_scale_closeout.py +123 -0
  564. sdetkit-1.0.3/tests/test_scale_lane.py +119 -0
  565. sdetkit-1.0.3/tests/test_scale_upgrade_closeout.py +149 -0
  566. sdetkit-1.0.3/tests/test_sdet_package.py +55 -0
  567. sdetkit-1.0.3/tests/test_sdkit_alias.py +15 -0
  568. sdetkit-1.0.3/tests/test_security_baseline_stability.py +64 -0
  569. sdetkit-1.0.3/tests/test_security_control_tower.py +171 -0
  570. sdetkit-1.0.3/tests/test_security_enforce.py +88 -0
  571. sdetkit-1.0.3/tests/test_security_extra.py +44 -0
  572. sdetkit-1.0.3/tests/test_security_gate_cli.py +328 -0
  573. sdetkit-1.0.3/tests/test_security_gate_helpers_extra.py +216 -0
  574. sdetkit-1.0.3/tests/test_security_hardening.py +87 -0
  575. sdetkit-1.0.3/tests/test_security_info_default.py +267 -0
  576. sdetkit-1.0.3/tests/test_security_quality_review_guard.py +29 -0
  577. sdetkit-1.0.3/tests/test_security_scan_json_reuse.py +99 -0
  578. sdetkit-1.0.3/tests/test_serve_api.py +272 -0
  579. sdetkit-1.0.3/tests/test_serve_forwarding.py +15 -0
  580. sdetkit-1.0.3/tests/test_ship_readiness.py +96 -0
  581. sdetkit-1.0.3/tests/test_ship_readiness_cli.py +23 -0
  582. sdetkit-1.0.3/tests/test_ship_readiness_contract_script.py +56 -0
  583. sdetkit-1.0.3/tests/test_sqlite_scalar.py +210 -0
  584. sdetkit-1.0.3/tests/test_sqlite_scalar_branches_wave1.py +76 -0
  585. sdetkit-1.0.3/tests/test_stabilization_closeout.py +144 -0
  586. sdetkit-1.0.3/tests/test_start_session.py +18 -0
  587. sdetkit-1.0.3/tests/test_startup_readiness.py +98 -0
  588. sdetkit-1.0.3/tests/test_startup_readiness_extra.py +40 -0
  589. sdetkit-1.0.3/tests/test_textutil.py +119 -0
  590. sdetkit-1.0.3/tests/test_textutil_mutmut_killers.py +31 -0
  591. sdetkit-1.0.3/tests/test_toml_compat.py +38 -0
  592. sdetkit-1.0.3/tests/test_tomllib_shadowing.py +29 -0
  593. sdetkit-1.0.3/tests/test_top_tier_reporting_docs_index.py +19 -0
  594. sdetkit-1.0.3/tests/test_top_tier_reporting_makefile.py +27 -0
  595. sdetkit-1.0.3/tests/test_top_tier_reporting_readme.py +15 -0
  596. sdetkit-1.0.3/tests/test_top_tier_reporting_workflow.py +27 -0
  597. sdetkit-1.0.3/tests/test_triage_templates.py +112 -0
  598. sdetkit-1.0.3/tests/test_triage_tool.py +297 -0
  599. sdetkit-1.0.3/tests/test_trust_assets.py +131 -0
  600. sdetkit-1.0.3/tests/test_trust_assets_refresh_closeout.py +173 -0
  601. sdetkit-1.0.3/tests/test_trust_faq_expansion_closeout.py +168 -0
  602. sdetkit-1.0.3/tests/test_upgrade_audit_script.py +1537 -0
  603. sdetkit-1.0.3/tests/test_upgrade_hub.py +61 -0
  604. sdetkit-1.0.3/tests/test_validate_test_bootstrap.py +89 -0
  605. sdetkit-1.0.3/tests/test_versioning.py +18 -0
  606. sdetkit-1.0.3/tests/test_weekly_review.py +155 -0
  607. sdetkit-1.0.3/tests/test_weekly_review_closeout.py +149 -0
  608. sdetkit-1.0.3/tests/test_weekly_review_closeout_2.py +162 -0
  609. sdetkit-1.0.3/tests/test_weekly_review_extra.py +69 -0
  610. sdetkit-1.0.3/tests/test_weekly_review_lane.py +102 -0
  611. sdetkit-1.0.3/tests/test_workflow_contract.py +24 -0
sdetkit-1.0.3/LICENSE ADDED
@@ -0,0 +1,160 @@
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, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
+ owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities
16
+ that control, are controlled by, or are under common control with that entity.
17
+ For the purposes of this definition, "control" means (i) the power, direct or
18
+ indirect, to cause the direction or management of such entity, whether by
19
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including
26
+ but not limited to software source code, documentation source, and configuration
27
+ files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object code,
31
+ generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made
34
+ available under the License, as indicated by a copyright notice that is included
35
+ in or attached to the work.
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
38
+ is based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version
45
+ of the Work and any modifications or additions to that Work or Derivative Works
46
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
+ by the copyright owner or by an individual or Legal Entity authorized to submit
48
+ on behalf of the copyright owner. For the purposes of this definition,
49
+ "submitted" means any form of electronic, verbal, or written communication sent
50
+ to the Licensor or its representatives, including but not limited to
51
+ communication on electronic mailing lists, source code control systems, and
52
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
53
+ the purpose of discussing and improving the Work, but excluding communication
54
+ that is conspicuously marked or otherwise designated in writing by the copyright
55
+ owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
58
+ of whom a Contribution has been received by Licensor and subsequently
59
+ incorporated within the Work.
60
+
61
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
62
+ License, each Contributor hereby grants to You a perpetual, worldwide,
63
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
64
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
65
+ sublicense, and distribute the Work and such Derivative Works in Source or
66
+ Object form.
67
+
68
+ 3. Grant of Patent License. Subject to the terms and conditions of this License,
69
+ each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
70
+ no-charge, royalty-free, irrevocable (except as stated in this section) patent
71
+ license to make, have made, use, offer to sell, sell, import, and otherwise
72
+ transfer the Work, where such license applies only to those patent claims
73
+ licensable by such Contributor that are necessarily infringed by their
74
+ Contribution(s) alone or by combination of their Contribution(s) with the Work
75
+ to which such Contribution(s) was submitted. If You institute patent litigation
76
+ against any entity (including a cross-claim or counterclaim in a lawsuit)
77
+ alleging that the Work or a Contribution incorporated within the Work constitutes
78
+ direct or contributory patent infringement, then any patent licenses granted to
79
+ You under this License for that Work shall terminate as of the date such
80
+ litigation is filed.
81
+
82
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
83
+ Derivative Works thereof in any medium, with or without modifications, and in
84
+ Source or Object form, provided that You meet the following conditions:
85
+
86
+ (a) You must give any other recipients of the Work or Derivative Works a copy of
87
+ this License; and
88
+
89
+ (b) You must cause any modified files to carry prominent notices stating that You
90
+ changed the files; and
91
+
92
+ (c) You must retain, in the Source form of any Derivative Works that You
93
+ distribute, all copyright, patent, trademark, and attribution notices from the
94
+ Source form of the Work, excluding those notices that do not pertain to any part
95
+ of the Derivative Works; and
96
+
97
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then
98
+ any Derivative Works that You distribute must include a readable copy of the
99
+ attribution notices contained within such NOTICE file, excluding those notices
100
+ that do not pertain to any part of the Derivative Works, in at least one of the
101
+ following places: within a NOTICE text file distributed as part of the
102
+ Derivative Works; within the Source form or documentation, if provided along with
103
+ the Derivative Works; or, within a display generated by the Derivative Works, if
104
+ and wherever such third-party notices normally appear. The contents of the
105
+ NOTICE file are for informational purposes only and do not modify the License.
106
+
107
+ You may add Your own attribution notices within Derivative Works that You
108
+ distribute, alongside or as an addendum to the NOTICE text from the Work,
109
+ provided that such additional attribution notices cannot be construed as
110
+ modifying the License.
111
+
112
+ You may add Your own copyright statement to Your modifications and may provide
113
+ additional or different license terms and conditions for use, reproduction, or
114
+ distribution of Your modifications, or for any such Derivative Works as a whole,
115
+ provided Your use, reproduction, and distribution of the Work otherwise complies
116
+ with the conditions stated in this License.
117
+
118
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
119
+ Contribution intentionally submitted for inclusion in the Work by You to the
120
+ Licensor shall be under the terms and conditions of this License, without any
121
+ additional terms or conditions. Notwithstanding the above, nothing herein shall
122
+ supersede or modify the terms of any separate license agreement you may have
123
+ executed with Licensor regarding such Contributions.
124
+
125
+ 6. Trademarks. This License does not grant permission to use the trade names,
126
+ trademarks, service marks, or product names of the Licensor, except as required
127
+ for reasonable and customary use in describing the origin of the Work and
128
+ reproducing the content of the NOTICE file.
129
+
130
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
131
+ writing, Licensor provides the Work (and each Contributor provides its
132
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
133
+ KIND, either express or implied, including, without limitation, any warranties
134
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
135
+ PARTICULAR PURPOSE. You are solely responsible for determining the
136
+ appropriateness of using or redistributing the Work and assume any risks
137
+ associated with Your exercise of permissions under this License.
138
+
139
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
140
+ tort (including negligence), contract, or otherwise, unless required by
141
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in
142
+ writing, shall any Contributor be liable to You for damages, including any
143
+ direct, indirect, special, incidental, or consequential damages of any character
144
+ arising as a result of this License or out of the use or inability to use the
145
+ Work (including but not limited to damages for loss of goodwill, work stoppage,
146
+ computer failure or malfunction, or any and all other commercial damages or
147
+ losses), even if such Contributor has been advised of the possibility of such
148
+ damages.
149
+
150
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or
151
+ Derivative Works thereof, You may choose to offer, and charge a fee for,
152
+ acceptance of support, warranty, indemnity, or other liability obligations
153
+ and/or rights consistent with this License. However, in accepting such
154
+ obligations, You may act only on Your own behalf and on Your sole responsibility,
155
+ not on behalf of any other Contributor, and only if You agree to indemnify,
156
+ defend, and hold each Contributor harmless for any liability incurred by, or
157
+ claims asserted against, such Contributor by reason of your accepting any such
158
+ warranty or additional liability.
159
+
160
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1 @@
1
+ include src/sdetkit/public_command_surface.json
sdetkit-1.0.3/PKG-INFO ADDED
@@ -0,0 +1,314 @@
1
+ Metadata-Version: 2.4
2
+ Name: sdetkit
3
+ Version: 1.0.3
4
+ Summary: Operator-grade release confidence and test intelligence platform: deterministic gates, evidence, integration assurance, and failure forensics.
5
+ Author: DevS69 contributors
6
+ Maintainer: DevS69 maintainers
7
+ License-Expression: Apache-2.0
8
+ Project-URL: Homepage, https://github.com/sherif69-sa/DevS69-sdetkit
9
+ Project-URL: Repository, https://github.com/sherif69-sa/DevS69-sdetkit
10
+ Project-URL: Documentation, https://sherif69-sa.github.io/DevS69-sdetkit/
11
+ Project-URL: Issues, https://github.com/sherif69-sa/DevS69-sdetkit/issues
12
+ Project-URL: Releases, https://github.com/sherif69-sa/DevS69-sdetkit/releases
13
+ Project-URL: Changelog, https://github.com/sherif69-sa/DevS69-sdetkit/blob/main/CHANGELOG.md
14
+ Project-URL: Release Process, https://github.com/sherif69-sa/DevS69-sdetkit/blob/main/RELEASE.md
15
+ Project-URL: Trust and Support Policy, https://github.com/sherif69-sa/DevS69-sdetkit/blob/main/docs/versioning-and-support.md
16
+ Keywords: sdet,testing,qa,automation,cli,devtools,quality-gates
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: Operating System :: OS Independent
20
+ Classifier: Programming Language :: Python
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Topic :: Software Development :: Testing
26
+ Classifier: Topic :: Software Development :: Quality Assurance
27
+ Classifier: Topic :: Utilities
28
+ Requires-Python: >=3.11
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: httpx<1,>=0.28.1
32
+ Provides-Extra: dev
33
+ Requires-Dist: build==1.4.3; extra == "dev"
34
+ Requires-Dist: mypy==1.20.1; extra == "dev"
35
+ Requires-Dist: pre-commit==4.5.1; extra == "dev"
36
+ Requires-Dist: ruff==0.15.11; extra == "dev"
37
+ Requires-Dist: twine==6.2.0; extra == "dev"
38
+ Provides-Extra: test
39
+ Requires-Dist: hypothesis; extra == "test"
40
+ Requires-Dist: PyYAML; extra == "test"
41
+ Requires-Dist: pytest; extra == "test"
42
+ Requires-Dist: pytest-asyncio; extra == "test"
43
+ Requires-Dist: pytest-cov; extra == "test"
44
+ Requires-Dist: pytest-xdist[psutil]; extra == "test"
45
+ Provides-Extra: docs
46
+ Requires-Dist: mkdocs==1.6.1; extra == "docs"
47
+ Requires-Dist: mkdocs-material==9.7.6; extra == "docs"
48
+ Provides-Extra: packaging
49
+ Requires-Dist: build==1.4.3; extra == "packaging"
50
+ Requires-Dist: check-wheel-contents==0.6.3; extra == "packaging"
51
+ Requires-Dist: twine==6.2.0; extra == "packaging"
52
+ Provides-Extra: telegram
53
+ Requires-Dist: python-telegram-bot<23,>=22.7; extra == "telegram"
54
+ Provides-Extra: whatsapp
55
+ Requires-Dist: twilio<10,>=9.10.4; extra == "whatsapp"
56
+ Dynamic: license-file
57
+
58
+ # DevS69 SDETKit
59
+
60
+ DevS69 SDETKit is a release-confidence CLI: it gives engineering teams deterministic ship/no-ship decisions with machine-readable evidence, using one repeatable command path from local to CI.
61
+
62
+ **Primary outcome:** know if a change is ready to ship.
63
+
64
+ **Canonical first path:** `python -m sdetkit gate fast` → `python -m sdetkit gate release` → `python -m sdetkit doctor`.
65
+
66
+ ## Product promise (30-second view)
67
+
68
+ SDETKit's primary user outcome is **shipping readiness confidence**: a team can decide go/no-go from explicit JSON evidence instead of ad hoc interpretation.
69
+
70
+ In plain terms: one clear product identity, one primary outcome, one canonical first path.
71
+
72
+ The primary path is always:
73
+
74
+ `python -m sdetkit gate fast` → `python -m sdetkit gate release` → `python -m sdetkit doctor`
75
+
76
+ Everything else (umbrella kits, utilities, historical/transition-era lanes) stays available, but is intentionally secondary to first-time adoption.
77
+
78
+ ## Canonical first proof lane (start here)
79
+
80
+ Run this exact command path first in a brand-new repository (not this repo):
81
+
82
+ ```bash
83
+ mkdir my-repo && cd my-repo
84
+ git init
85
+ python -m pip install "git+https://github.com/sherif69-sa/DevS69-sdetkit.git"
86
+ python -m sdetkit gate fast --format json --stable-json --out build/gate-fast.json
87
+ python -m sdetkit gate release --format json --out build/release-preflight.json
88
+ python -m sdetkit doctor
89
+ ```
90
+
91
+ Expected first artifacts:
92
+
93
+ ```text
94
+ build/
95
+ ├── gate-fast.json
96
+ └── release-preflight.json
97
+ ```
98
+
99
+ Inspect order:
100
+ 1. `build/release-preflight.json` (`ok`, `failed_steps`, `profile`)
101
+ 2. If `failed_steps` includes `gate_fast`, open `build/gate-fast.json` (`ok`, `failed_steps`, `profile`)
102
+ 3. Use raw logs only after artifact triage
103
+
104
+ What success means:
105
+ - `release-preflight.json` has `ok: true`
106
+ - `gate-fast.json` has `ok: true`
107
+
108
+ What failure means:
109
+ - `ok: false` and/or non-empty `failed_steps` gives the first deterministic remediation target.
110
+ - A non-zero exit code with JSON artifacts present is still a trustworthy first run: inspect `failed_steps` instead of treating it as a hidden crash.
111
+
112
+ External first-run contract proof (automated):
113
+
114
+ ```bash
115
+ python -m pytest -q tests/test_external_first_run_contract.py
116
+ ```
117
+
118
+ This acceptance test creates a truly fresh temporary repo, installs SDETKit into a clean virtual environment, executes the canonical commands, and verifies artifact contracts.
119
+
120
+ ```text
121
+ $ cd examples/adoption/real-repo
122
+ $ python -m sdetkit gate fast
123
+ exit 2 -> build/gate-fast.json: ok=false (fixture triage)
124
+ $ python -m sdetkit gate release
125
+ exit 2 -> build/release-preflight.json: ok=false (fixture triage)
126
+ $ python -m sdetkit doctor
127
+ exit 0 -> build/doctor.json: ok=true
128
+ ```
129
+
130
+ Real fixture-oriented canonical flow; any failing gate result shown here is expected triage for the adoption fixture, not a product failure.
131
+
132
+ Context: [`docs/real-repo-adoption.md`](docs/real-repo-adoption.md)
133
+
134
+ ## Canonical local-to-CI journey
135
+
136
+ ## Top-tier reporting sample pipeline
137
+
138
+ Run the end-to-end seeded reporting flow (portfolio scorecard -> KPI snapshot -> contract checks -> bundle promotion):
139
+
140
+ ```bash
141
+ make top-tier-reporting
142
+ ```
143
+
144
+ Optional date/window overrides:
145
+
146
+ ```bash
147
+ make top-tier-reporting DATE_TAG=2026-04-17 WINDOW_START=2026-04-11 WINDOW_END=2026-04-17 GENERATED_AT=2026-04-17T10:00:00Z
148
+ ```
149
+
150
+ Primary artifacts produced under `docs/artifacts/`:
151
+
152
+ - `portfolio-scorecard-sample-<date>.json`
153
+ - `kpi-weekly-from-portfolio-<date>.json`
154
+ - `kpi-weekly-contract-check-<date>.json`
155
+ - `top-tier-contract-check-<date>.json`
156
+ - `top-tier-bundle-manifest-<date>.json`
157
+ - `top-tier-bundle-manifest-check-<date>.json`
158
+
159
+ See: [`docs/portfolio-reporting-recipe.md`](docs/portfolio-reporting-recipe.md) and [`docs/kpi-schema.md`](docs/kpi-schema.md).
160
+
161
+ ## Production-readiness snapshot (investor/leadership brief)
162
+
163
+ Generate a deterministic readiness scorecard that summarizes governance, CI, quality, and release evidence surfaces.
164
+ The scorecard is content-aware (checks policy keywords and CI steps), so it is useful for real production triage:
165
+
166
+ ```bash
167
+ python -m sdetkit readiness . --format text
168
+ python -m sdetkit readiness . --format json
169
+ ```
170
+
171
+ Use this output in due-diligence decks, internal operating reviews, or go-to-production checkpoint meetings.
172
+ For repo targets, `sdetkit review` also publishes this snapshot into the review adaptive database (`adaptive_database.readiness_snapshot`).
173
+ Readiness output includes pass/miss scorecards and achievement tiers so reviewers can track quality progression over time.
174
+ Remediation recommendations are adaptive from scan evidence (lane/priority/rationale), not fixed static text.
175
+ The readiness snapshot also tracks test scenario capacity against a 250-scenario target for scale readiness planning.
176
+ For top-tier decisions, use `top_tier_ready` and `operational_tier` from readiness JSON.
177
+ Review adaptive database also includes large-scale analytics blocks (`quality_matrix`, `findings_analytics`, `action_analytics`, `scalability_posture`) to power richer dashboards.
178
+ For near-term launch operations, use `adaptive_database.release_readiness_contract` (`gate_decision`, blockers, next_24h_actions, next_72h_actions).
179
+ `sdetkit review` now also emits a standalone `adaptive-database.json` artifact for direct dashboard ingestion.
180
+ It also emits `release-readiness.json` and `release-readiness.md` for final launch call workflows.
181
+ Release readiness contract now includes `contract_id`, `generated_at_utc`, and `next_review_due_at_utc` for traceable handoffs.
182
+ It also includes a `trend` block so each run can compare decision/blocker movement vs the previous review.
183
+ `release_readiness_contract` now includes `risk_score`, `risk_band`, and `sla_review_hours` for release-room prioritization.
184
+ It also includes `blocker_catalog` for structured blocker triage (id/kind/severity/priority/next_action).
185
+ Blocker catalog now includes `owner_team` and per-blocker `response_sla_hours` for clear routing.
186
+ `release_readiness_contract.owner_summary` aggregates blocker workload by team for standup planning.
187
+ `release_readiness_contract.recommendation_engine` now provides structured now/next/watchlist + owner-route recommendations.
188
+ Review emits `recommendation-backlog.json` with scored recommendation backlog (`priority_index`) for execution sequencing.
189
+ `release_readiness_contract.agent_orchestration` now suggests which specialist agents/playbooks to run based on current blockers and risk.
190
+ Agent entries include `engine_signals` so orchestration decisions stay aligned with adaptive review outcomes.
191
+ Review also emits `review-contract-check.json` with machine-readable reviewer contract consistency checks.
192
+
193
+
194
+ - Canonical first proof: [`docs/blank-repo-to-value-60-seconds.md`](docs/blank-repo-to-value-60-seconds.md)
195
+ - Canonical real-repo fixture proof: [`docs/real-repo-adoption.md`](docs/real-repo-adoption.md)
196
+ - Canonical CI rollout path: [`docs/recommended-ci-flow.md`](docs/recommended-ci-flow.md)
197
+ - Canonical artifact decoder: [`docs/ci-artifact-walkthrough.md`](docs/ci-artifact-walkthrough.md)
198
+
199
+ ## Review command format quick guide (operator adoption)
200
+
201
+ Use `sdetkit review` when you need one front-door decision pass over doctor/inspect/compare/project/history.
202
+
203
+ - Use `--format json` when you need the **full review payload** (deep debugging, custom analytics, or internal tooling that consumes all sections).
204
+ - Use `--format operator-json` when you need the **stable operator-facing integration contract** for CI jobs, dashboards, and operator automations.
205
+ - For operator integrations, prefer `operator-json` as the long-lived parsing surface.
206
+
207
+ Short deterministic examples:
208
+
209
+ ```bash
210
+ python -m sdetkit review . --no-workspace --format json
211
+ python -m sdetkit review . --no-workspace --format operator-json
212
+ ```
213
+
214
+ Practical machine-consumption examples:
215
+
216
+ ```bash
217
+ # Full payload: inspect status + top-level counts for deeper triage scripts
218
+ python -m sdetkit review . --no-workspace --format json | jq '{status, severity, findings: (.top_matters | length)}'
219
+
220
+ # Stable operator contract: gate on operator-facing situation/actions fields
221
+ python -m sdetkit review . --no-workspace --format operator-json | jq '{status: .situation.status, severity: .situation.severity, now_actions: (.actions.now | length)}'
222
+ ```
223
+
224
+ ## Who this is for / not for
225
+
226
+ **Best fit**
227
+ - Teams that want deterministic release decisions instead of ad hoc interpretation.
228
+ - Engineers who need machine-readable evidence for PR/release review.
229
+ - Repos standardizing the same release checks in local and CI runs.
230
+
231
+ **Probably not a fit (yet)**
232
+ - Very low-risk repos that do not need structured release evidence.
233
+ - Teams that only want raw tool invocations with fully custom orchestration.
234
+
235
+ ## Start here (canonical first path)
236
+
237
+ - Install (canonical): [`docs/install.md`](docs/install.md)
238
+ - Container runtime adoption: [`docs/container-runtime.md`](docs/container-runtime.md)
239
+ - Blank repo proof in 60 seconds (recommended first run): [`docs/blank-repo-to-value-60-seconds.md`](docs/blank-repo-to-value-60-seconds.md)
240
+ - Guided run (same canonical path): [`docs/ready-to-use.md`](docs/ready-to-use.md)
241
+ - Release-confidence model (why this product exists): [`docs/release-confidence.md`](docs/release-confidence.md)
242
+ - Root CLI grouping and canonical path view: `python -m sdetkit --help`
243
+ - Machine-readable public command contract: [`src/sdetkit/public_command_surface.json`](src/sdetkit/public_command_surface.json)
244
+ - Stability levels (policy boundary): [`docs/stability-levels.md`](docs/stability-levels.md) — understand what is stable vs advanced vs experimental
245
+ - Before/after evidence behavior: [`docs/before-after-evidence-example.md`](docs/before-after-evidence-example.md)
246
+ - Real evidence artifacts from this repo: [`docs/evidence-showcase.md`](docs/evidence-showcase.md)
247
+
248
+ ## Secondary surfaces (after canonical confidence path)
249
+
250
+ These remain available and supported after the core release-confidence lane is trusted, but they are intentionally not the front-door recommendation.
251
+
252
+ ### Extended repo lanes
253
+
254
+ ```bash
255
+ make bootstrap
256
+ bash quality.sh ci
257
+ python -m sdetkit kits list
258
+ python -m sdetkit legacy list
259
+ python -m sdetkit legacy <historical-command>
260
+ python -m sdetkit --help --show-hidden
261
+ ```
262
+
263
+ ### Repo health snapshot
264
+
265
+ ```bash
266
+ python -m pip install -r requirements-test.txt
267
+ # tests require Python >= 3.11
268
+ PYTHONPATH=src python -m sdetkit.test_bootstrap_contract --strict
269
+ PYTHONPATH=src python -m sdetkit.test_bootstrap_validate --strict
270
+ # optional CI-style evidence outputs:
271
+ ./ci.sh quick --artifact-dir .sdetkit/out
272
+ make merge-ready
273
+ PYTHONPATH=src pytest -q
274
+ bash quality.sh cov
275
+ ruff check .
276
+ mutmut results
277
+ ```
278
+
279
+ For a focused preflight playbook (checks, artifact outputs, exit codes), see [`docs/test-bootstrap.md`](docs/test-bootstrap.md).
280
+
281
+ ### Coverage hardening migration (staged)
282
+
283
+ - **Previous default:** `bash quality.sh cov` used `COV_FAIL_UNDER=80` when unset.
284
+ - **New default (effective now):** `bash quality.sh cov` uses `COV_MODE=standard` (fail-under `85`).
285
+ - **Temporary compatibility override:** `COV_FAIL_UNDER=80 bash quality.sh cov` (or `COV_MODE=legacy bash quality.sh cov`).
286
+ - **Stricter enforcement target:** use `COV_MODE=strict` (fail-under `95`) for merge/release truth lanes by **July 1, 2026**.
287
+
288
+ ### Project layout
289
+
290
+ ```text
291
+ src/sdetkit/ # product code + CLI
292
+ tests/ # automated tests
293
+ docs/ # user and maintainer docs
294
+ examples/ # runnable examples
295
+ scripts/ # repo helper scripts
296
+ .sdetkit/ # local generated outputs
297
+ artifacts/ # generated evidence packs
298
+ ```
299
+
300
+ ## Documentation and references
301
+
302
+ - Docs hub: [`docs/index.md`](docs/index.md)
303
+ - Architecture quick map for contributors: [`ARCHITECTURE.md`](ARCHITECTURE.md)
304
+ - Contributing: [`CONTRIBUTING.md`](CONTRIBUTING.md)
305
+ - Release process: [`RELEASE.md`](RELEASE.md)
306
+ - Git workflow (branch tracking + ahead/behind): [`docs/git-workflow.md`](docs/git-workflow.md)
307
+ - Enterprise readiness audit: [`docs/enterprise-readiness-audit-2026-04.md`](docs/enterprise-readiness-audit-2026-04.md)
308
+
309
+ ### Historical and transition-era references (secondary)
310
+
311
+ - Compare against ad hoc workflows: [`docs/sdetkit-vs-ad-hoc.md`](docs/sdetkit-vs-ad-hoc.md)
312
+ - Repo hygiene boundaries: [`docs/repo-cleanup-plan.md`](docs/repo-cleanup-plan.md)
313
+ - Ongoing repo status view: [`docs/repo-health-dashboard.md`](docs/repo-health-dashboard.md)
314
+ - Historical archive index: [`docs/archive/index.md`](docs/archive/index.md)