ai-objective-index 0.3.0a1__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 (418) hide show
  1. ai_objective_index-0.3.0a1/LICENSE +22 -0
  2. ai_objective_index-0.3.0a1/PKG-INFO +973 -0
  3. ai_objective_index-0.3.0a1/README.md +957 -0
  4. ai_objective_index-0.3.0a1/pyproject.toml +34 -0
  5. ai_objective_index-0.3.0a1/setup.cfg +4 -0
  6. ai_objective_index-0.3.0a1/src/ai_objective_index/__init__.py +27 -0
  7. ai_objective_index-0.3.0a1/src/ai_objective_index/action_boundary.py +104 -0
  8. ai_objective_index-0.3.0a1/src/ai_objective_index/ai_reviewer_simulation.py +309 -0
  9. ai_objective_index-0.3.0a1/src/ai_objective_index/api.py +265 -0
  10. ai_objective_index-0.3.0a1/src/ai_objective_index/api_models.py +55 -0
  11. ai_objective_index-0.3.0a1/src/ai_objective_index/beta_readiness.py +284 -0
  12. ai_objective_index-0.3.0a1/src/ai_objective_index/claim_ceiling.py +75 -0
  13. ai_objective_index-0.3.0a1/src/ai_objective_index/cli_demo.py +52 -0
  14. ai_objective_index-0.3.0a1/src/ai_objective_index/community_launch_manager.py +201 -0
  15. ai_objective_index-0.3.0a1/src/ai_objective_index/community_manual_queue.py +154 -0
  16. ai_objective_index-0.3.0a1/src/ai_objective_index/compare.py +84 -0
  17. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/__init__.py +6 -0
  18. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/crawl_plan.py +63 -0
  19. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/fetcher.py +41 -0
  20. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/github_readme_fetcher.py +28 -0
  21. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/rate_limiter.py +37 -0
  22. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/robots_policy.py +69 -0
  23. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/sitemap_parser.py +31 -0
  24. ai_objective_index-0.3.0a1/src/ai_objective_index/crawler/source_cache.py +60 -0
  25. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_eval.py +93 -0
  26. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_evidence_gate.py +123 -0
  27. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_index_export.py +80 -0
  28. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_loader.py +167 -0
  29. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_report_generator.py +93 -0
  30. ai_objective_index-0.3.0a1/src/ai_objective_index/curated_validator.py +156 -0
  31. ai_objective_index-0.3.0a1/src/ai_objective_index/datascope_qa.py +170 -0
  32. ai_objective_index-0.3.0a1/src/ai_objective_index/decision_packet.py +82 -0
  33. ai_objective_index-0.3.0a1/src/ai_objective_index/decision_receipt.py +104 -0
  34. ai_objective_index-0.3.0a1/src/ai_objective_index/deployment_link_sync.py +191 -0
  35. ai_objective_index-0.3.0a1/src/ai_objective_index/deployment_push_sync.py +256 -0
  36. ai_objective_index-0.3.0a1/src/ai_objective_index/dist_build_runner.py +194 -0
  37. ai_objective_index-0.3.0a1/src/ai_objective_index/eval_runner.py +226 -0
  38. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/__init__.py +2 -0
  39. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/action_object_builder.py +153 -0
  40. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/confidence.py +39 -0
  41. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/fixture_pipeline.py +199 -0
  42. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/html_text.py +66 -0
  43. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/page_classifier.py +26 -0
  44. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/rule_extractor.py +126 -0
  45. ai_objective_index-0.3.0a1/src/ai_objective_index/extractor/source_trace_mapper.py +71 -0
  46. ai_objective_index-0.3.0a1/src/ai_objective_index/final_preflight.py +226 -0
  47. ai_objective_index-0.3.0a1/src/ai_objective_index/final_public_dry_run.py +190 -0
  48. ai_objective_index-0.3.0a1/src/ai_objective_index/generated_loader.py +112 -0
  49. ai_objective_index-0.3.0a1/src/ai_objective_index/git_release_audit.py +198 -0
  50. ai_objective_index-0.3.0a1/src/ai_objective_index/github_issue_labels.py +214 -0
  51. ai_objective_index-0.3.0a1/src/ai_objective_index/github_link_binder.py +126 -0
  52. ai_objective_index-0.3.0a1/src/ai_objective_index/github_post_upload_qa.py +259 -0
  53. ai_objective_index-0.3.0a1/src/ai_objective_index/github_release_manager.py +286 -0
  54. ai_objective_index-0.3.0a1/src/ai_objective_index/github_staging.py +347 -0
  55. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_auth_check.py +174 -0
  56. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_github_crosslink_audit.py +163 -0
  57. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_post_upload_qa.py +109 -0
  58. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_private_upload.py +252 -0
  59. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_upload_audit.py +144 -0
  60. ai_objective_index-0.3.0a1/src/ai_objective_index/hf_upload_packager.py +434 -0
  61. ai_objective_index-0.3.0a1/src/ai_objective_index/integrated_eval.py +114 -0
  62. ai_objective_index-0.3.0a1/src/ai_objective_index/integrated_index_export.py +97 -0
  63. ai_objective_index-0.3.0a1/src/ai_objective_index/integrated_report_generator.py +139 -0
  64. ai_objective_index-0.3.0a1/src/ai_objective_index/integrated_store.py +184 -0
  65. ai_objective_index-0.3.0a1/src/ai_objective_index/issue_feedback_loop_packager.py +117 -0
  66. ai_objective_index-0.3.0a1/src/ai_objective_index/launch_claim_guard.py +94 -0
  67. ai_objective_index-0.3.0a1/src/ai_objective_index/launch_dry_run.py +104 -0
  68. ai_objective_index-0.3.0a1/src/ai_objective_index/launch_wave1_report.py +129 -0
  69. ai_objective_index-0.3.0a1/src/ai_objective_index/local_build_tools.py +124 -0
  70. ai_objective_index-0.3.0a1/src/ai_objective_index/local_install_smoke.py +200 -0
  71. ai_objective_index-0.3.0a1/src/ai_objective_index/manual_launch_packager.py +388 -0
  72. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_compat.py +117 -0
  73. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_manifest.py +541 -0
  74. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_registry_publish_readiness.py +143 -0
  75. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_registry_pypi_builder.py +134 -0
  76. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_registry_readiness_refresh.py +113 -0
  77. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_registry_server_json_builder.py +140 -0
  78. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_registry_submission_gate.py +189 -0
  79. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_runtime.py +292 -0
  80. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_server.py +194 -0
  81. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_smoke.py +67 -0
  82. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_stdio_entrypoint.py +11 -0
  83. ai_objective_index-0.3.0a1/src/ai_objective_index/mcp_tools.py +659 -0
  84. ai_objective_index-0.3.0a1/src/ai_objective_index/missing_fields.py +147 -0
  85. ai_objective_index-0.3.0a1/src/ai_objective_index/models.py +165 -0
  86. ai_objective_index-0.3.0a1/src/ai_objective_index/negative_control_runner.py +178 -0
  87. ai_objective_index-0.3.0a1/src/ai_objective_index/no_contact_launch_gate.py +283 -0
  88. ai_objective_index-0.3.0a1/src/ai_objective_index/no_secrets_audit.py +172 -0
  89. ai_objective_index-0.3.0a1/src/ai_objective_index/observation_decision_gate.py +124 -0
  90. ai_objective_index-0.3.0a1/src/ai_objective_index/observation_log.py +105 -0
  91. ai_objective_index-0.3.0a1/src/ai_objective_index/obstruction_certificate.py +173 -0
  92. ai_objective_index-0.3.0a1/src/ai_objective_index/openapi_export.py +28 -0
  93. ai_objective_index-0.3.0a1/src/ai_objective_index/package_metadata_audit.py +137 -0
  94. ai_objective_index-0.3.0a1/src/ai_objective_index/post_public_stabilization.py +207 -0
  95. ai_objective_index-0.3.0a1/src/ai_objective_index/post_public_state_report.py +91 -0
  96. ai_objective_index-0.3.0a1/src/ai_objective_index/prepublic_state_report.py +93 -0
  97. ai_objective_index-0.3.0a1/src/ai_objective_index/prepublic_sync.py +376 -0
  98. ai_objective_index-0.3.0a1/src/ai_objective_index/private_deployment_qa.py +168 -0
  99. ai_objective_index-0.3.0a1/src/ai_objective_index/private_reviewer_packager.py +94 -0
  100. ai_objective_index-0.3.0a1/src/ai_objective_index/public_beta_message_guard.py +153 -0
  101. ai_objective_index-0.3.0a1/src/ai_objective_index/public_beta_packager.py +307 -0
  102. ai_objective_index-0.3.0a1/src/ai_objective_index/public_beta_realdata_packager.py +415 -0
  103. ai_objective_index-0.3.0a1/src/ai_objective_index/public_issue_loop.py +313 -0
  104. ai_objective_index-0.3.0a1/src/ai_objective_index/public_launch_claim_audit.py +136 -0
  105. ai_objective_index-0.3.0a1/src/ai_objective_index/public_launch_execute.py +306 -0
  106. ai_objective_index-0.3.0a1/src/ai_objective_index/public_launch_gate.py +205 -0
  107. ai_objective_index-0.3.0a1/src/ai_objective_index/public_metrics_snapshot.py +233 -0
  108. ai_objective_index-0.3.0a1/src/ai_objective_index/public_observation_plan.py +120 -0
  109. ai_objective_index-0.3.0a1/src/ai_objective_index/public_observation_runner.py +152 -0
  110. ai_objective_index-0.3.0a1/src/ai_objective_index/public_ops_baseline.py +124 -0
  111. ai_objective_index-0.3.0a1/src/ai_objective_index/public_switch_preflight.py +169 -0
  112. ai_objective_index-0.3.0a1/src/ai_objective_index/public_url_qa.py +154 -0
  113. ai_objective_index-0.3.0a1/src/ai_objective_index/public_visibility_switch.py +198 -0
  114. ai_objective_index-0.3.0a1/src/ai_objective_index/pypi_publish_readiness.py +173 -0
  115. ai_objective_index-0.3.0a1/src/ai_objective_index/pypi_readiness_refresh.py +153 -0
  116. ai_objective_index-0.3.0a1/src/ai_objective_index/pypi_upload_instructions.py +111 -0
  117. ai_objective_index-0.3.0a1/src/ai_objective_index/realdata_claim_audit.py +161 -0
  118. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/__init__.py +6 -0
  119. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/live_registry_run.py +277 -0
  120. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_client.py +133 -0
  121. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_eval.py +98 -0
  122. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_evidence_gate.py +151 -0
  123. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_export.py +190 -0
  124. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_loader.py +93 -0
  125. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_mapper.py +268 -0
  126. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/mcp_registry_report_generator.py +121 -0
  127. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/real_payload_activation.py +182 -0
  128. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/real_payload_guard.py +165 -0
  129. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_beta_dataset_builder.py +217 -0
  130. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_beta_report_generator.py +131 -0
  131. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_candidate_gate.py +189 -0
  132. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_live_validation.py +90 -0
  133. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_payload_audit.py +132 -0
  134. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_quality_audit.py +114 -0
  135. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_reprocess_all.py +207 -0
  136. ai_objective_index-0.3.0a1/src/ai_objective_index/registry_intake/registry_run_receipt.py +69 -0
  137. ai_objective_index-0.3.0a1/src/ai_objective_index/release_archive_builder.py +185 -0
  138. ai_objective_index-0.3.0a1/src/ai_objective_index/release_candidate_matrix.py +95 -0
  139. ai_objective_index-0.3.0a1/src/ai_objective_index/release_claim_audit.py +133 -0
  140. ai_objective_index-0.3.0a1/src/ai_objective_index/release_next_decision_gate.py +101 -0
  141. ai_objective_index-0.3.0a1/src/ai_objective_index/release_readiness.py +189 -0
  142. ai_objective_index-0.3.0a1/src/ai_objective_index/report_generator.py +466 -0
  143. ai_objective_index-0.3.0a1/src/ai_objective_index/report_metrics.py +204 -0
  144. ai_objective_index-0.3.0a1/src/ai_objective_index/residual_worktree_review.py +294 -0
  145. ai_objective_index-0.3.0a1/src/ai_objective_index/residualops_alignment_audit.py +114 -0
  146. ai_objective_index-0.3.0a1/src/ai_objective_index/scoring.py +393 -0
  147. ai_objective_index-0.3.0a1/src/ai_objective_index/seed_loader.py +49 -0
  148. ai_objective_index-0.3.0a1/src/ai_objective_index/smoke_all.py +110 -0
  149. ai_objective_index-0.3.0a1/src/ai_objective_index/source_governance.py +138 -0
  150. ai_objective_index-0.3.0a1/src/ai_objective_index/source_trace.py +62 -0
  151. ai_objective_index-0.3.0a1/src/ai_objective_index/store.py +110 -0
  152. ai_objective_index-0.3.0a1/src/ai_objective_index/token_revocation_checklist.py +42 -0
  153. ai_objective_index-0.3.0a1/src/ai_objective_index/token_revocation_verify.py +89 -0
  154. ai_objective_index-0.3.0a1/src/ai_objective_index/use_rights.py +85 -0
  155. ai_objective_index-0.3.0a1/src/ai_objective_index/version_apply_gate.py +160 -0
  156. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/__init__.py +37 -0
  157. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/capability_adapter.py +247 -0
  158. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/capability_card.py +30 -0
  159. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/capability_graph.py +60 -0
  160. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/capability_trust.py +118 -0
  161. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/evidence_summary.py +123 -0
  162. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt.py +27 -0
  163. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_api.py +110 -0
  164. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_cli_demo.py +145 -0
  165. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_loop.py +202 -0
  166. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_mcp_tools.py +105 -0
  167. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_store.py +139 -0
  168. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_summary.py +83 -0
  169. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/execution_receipt_validation.py +214 -0
  170. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_card.py +24 -0
  171. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router.py +317 -0
  172. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router_api.py +43 -0
  173. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router_cli_demo.py +101 -0
  174. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router_mcp_tools.py +73 -0
  175. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router_models.py +90 -0
  176. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/objective_router_openapi.py +229 -0
  177. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_api.py +103 -0
  178. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_card.py +268 -0
  179. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_cli_demo.py +123 -0
  180. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_mcp_tools.py +141 -0
  181. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_negative_controls.py +62 -0
  182. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_plan.py +5 -0
  183. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_receipt_store.py +179 -0
  184. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_result.py +5 -0
  185. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_route_adapter.py +175 -0
  186. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/probe_runner.py +170 -0
  187. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/receipt_router_adapter.py +109 -0
  188. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/residual_credit.py +23 -0
  189. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/risk_boundary.py +153 -0
  190. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/route_decision.py +120 -0
  191. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/trust_cli.py +94 -0
  192. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext/trust_report.py +67 -0
  193. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_capability_trust_audit.py +112 -0
  194. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_claim_audit.py +149 -0
  195. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_distribution_gate.py +137 -0
  196. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_execution_receipt_audit.py +133 -0
  197. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_objective_router_audit.py +120 -0
  198. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_package_version_audit.py +135 -0
  199. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_probe_audit.py +140 -0
  200. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_pypi_resume_gate.py +90 -0
  201. ai_objective_index-0.3.0a1/src/ai_objective_index/vnext_surface_sync_audit.py +196 -0
  202. ai_objective_index-0.3.0a1/src/ai_objective_index/worktree_hygiene_audit.py +259 -0
  203. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/PKG-INFO +973 -0
  204. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/SOURCES.txt +416 -0
  205. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/dependency_links.txt +1 -0
  206. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/entry_points.txt +3 -0
  207. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/requires.txt +8 -0
  208. ai_objective_index-0.3.0a1/src/ai_objective_index.egg-info/top_level.txt +1 -0
  209. ai_objective_index-0.3.0a1/tests/test_action_boundary.py +18 -0
  210. ai_objective_index-0.3.0a1/tests/test_action_object_builder.py +41 -0
  211. ai_objective_index-0.3.0a1/tests/test_ai_reviewer_simulation.py +12 -0
  212. ai_objective_index-0.3.0a1/tests/test_api.py +141 -0
  213. ai_objective_index-0.3.0a1/tests/test_api_curated_datascope.py +37 -0
  214. ai_objective_index-0.3.0a1/tests/test_api_datascope.py +41 -0
  215. ai_objective_index-0.3.0a1/tests/test_api_mcp_registry_datascope.py +45 -0
  216. ai_objective_index-0.3.0a1/tests/test_api_public_beta_mcp_candidates.py +34 -0
  217. ai_objective_index-0.3.0a1/tests/test_beta_readiness.py +15 -0
  218. ai_objective_index-0.3.0a1/tests/test_capability_adapter.py +32 -0
  219. ai_objective_index-0.3.0a1/tests/test_capability_trust_card.py +48 -0
  220. ai_objective_index-0.3.0a1/tests/test_claim_ceiling.py +30 -0
  221. ai_objective_index-0.3.0a1/tests/test_community_launch_manager.py +30 -0
  222. ai_objective_index-0.3.0a1/tests/test_community_manual_queue.py +14 -0
  223. ai_objective_index-0.3.0a1/tests/test_compare.py +23 -0
  224. ai_objective_index-0.3.0a1/tests/test_crawler_policy.py +24 -0
  225. ai_objective_index-0.3.0a1/tests/test_curated_eval.py +12 -0
  226. ai_objective_index-0.3.0a1/tests/test_curated_evidence_gate.py +58 -0
  227. ai_objective_index-0.3.0a1/tests/test_curated_index_export.py +20 -0
  228. ai_objective_index-0.3.0a1/tests/test_curated_loader.py +50 -0
  229. ai_objective_index-0.3.0a1/tests/test_curated_report_generator.py +12 -0
  230. ai_objective_index-0.3.0a1/tests/test_curated_validator.py +76 -0
  231. ai_objective_index-0.3.0a1/tests/test_datascope_qa.py +30 -0
  232. ai_objective_index-0.3.0a1/tests/test_decision_packet.py +20 -0
  233. ai_objective_index-0.3.0a1/tests/test_decision_receipt.py +22 -0
  234. ai_objective_index-0.3.0a1/tests/test_deployment_link_sync.py +19 -0
  235. ai_objective_index-0.3.0a1/tests/test_deployment_push_sync.py +38 -0
  236. ai_objective_index-0.3.0a1/tests/test_dist_build_runner.py +58 -0
  237. ai_objective_index-0.3.0a1/tests/test_eval_runner.py +34 -0
  238. ai_objective_index-0.3.0a1/tests/test_evidence_summary.py +18 -0
  239. ai_objective_index-0.3.0a1/tests/test_examples_assets.py +23 -0
  240. ai_objective_index-0.3.0a1/tests/test_execution_receipt_api.py +53 -0
  241. ai_objective_index-0.3.0a1/tests/test_execution_receipt_cli_demo.py +17 -0
  242. ai_objective_index-0.3.0a1/tests/test_execution_receipt_loop.py +22 -0
  243. ai_objective_index-0.3.0a1/tests/test_execution_receipt_mcp_tools.py +38 -0
  244. ai_objective_index-0.3.0a1/tests/test_execution_receipt_store.py +51 -0
  245. ai_objective_index-0.3.0a1/tests/test_execution_receipt_summary.py +19 -0
  246. ai_objective_index-0.3.0a1/tests/test_execution_receipt_validation.py +54 -0
  247. ai_objective_index-0.3.0a1/tests/test_final_preflight.py +15 -0
  248. ai_objective_index-0.3.0a1/tests/test_final_public_dry_run.py +39 -0
  249. ai_objective_index-0.3.0a1/tests/test_fixture_pipeline.py +20 -0
  250. ai_objective_index-0.3.0a1/tests/test_generated_loader.py +29 -0
  251. ai_objective_index-0.3.0a1/tests/test_git_release_audit.py +30 -0
  252. ai_objective_index-0.3.0a1/tests/test_github_issue_labels.py +36 -0
  253. ai_objective_index-0.3.0a1/tests/test_github_link_binder.py +21 -0
  254. ai_objective_index-0.3.0a1/tests/test_github_post_upload_qa.py +19 -0
  255. ai_objective_index-0.3.0a1/tests/test_github_release_manager.py +37 -0
  256. ai_objective_index-0.3.0a1/tests/test_github_staging_docs.py +15 -0
  257. ai_objective_index-0.3.0a1/tests/test_github_upload_assets.py +13 -0
  258. ai_objective_index-0.3.0a1/tests/test_hf_auth_check.py +28 -0
  259. ai_objective_index-0.3.0a1/tests/test_hf_demo_assets.py +30 -0
  260. ai_objective_index-0.3.0a1/tests/test_hf_demo_datascope.py +32 -0
  261. ai_objective_index-0.3.0a1/tests/test_hf_demo_public_beta_mcp.py +20 -0
  262. ai_objective_index-0.3.0a1/tests/test_hf_github_crosslink_audit.py +57 -0
  263. ai_objective_index-0.3.0a1/tests/test_hf_post_upload_qa.py +38 -0
  264. ai_objective_index-0.3.0a1/tests/test_hf_private_upload.py +55 -0
  265. ai_objective_index-0.3.0a1/tests/test_hf_upload_assets.py +22 -0
  266. ai_objective_index-0.3.0a1/tests/test_hf_upload_audit.py +14 -0
  267. ai_objective_index-0.3.0a1/tests/test_hf_upload_docs.py +16 -0
  268. ai_objective_index-0.3.0a1/tests/test_hf_upload_packager.py +17 -0
  269. ai_objective_index-0.3.0a1/tests/test_integrated_eval.py +21 -0
  270. ai_objective_index-0.3.0a1/tests/test_integrated_index_export.py +27 -0
  271. ai_objective_index-0.3.0a1/tests/test_integrated_report_generator.py +17 -0
  272. ai_objective_index-0.3.0a1/tests/test_integrated_store.py +27 -0
  273. ai_objective_index-0.3.0a1/tests/test_issue_feedback_loop_packager.py +16 -0
  274. ai_objective_index-0.3.0a1/tests/test_launch_assets.py +18 -0
  275. ai_objective_index-0.3.0a1/tests/test_launch_claim_guard.py +29 -0
  276. ai_objective_index-0.3.0a1/tests/test_launch_dry_run.py +11 -0
  277. ai_objective_index-0.3.0a1/tests/test_launch_materials.py +34 -0
  278. ai_objective_index-0.3.0a1/tests/test_launch_wave1_report.py +23 -0
  279. ai_objective_index-0.3.0a1/tests/test_live_registry_run_offline.py +55 -0
  280. ai_objective_index-0.3.0a1/tests/test_local_build_tools.py +32 -0
  281. ai_objective_index-0.3.0a1/tests/test_local_install_smoke.py +25 -0
  282. ai_objective_index-0.3.0a1/tests/test_manual_launch_packager.py +25 -0
  283. ai_objective_index-0.3.0a1/tests/test_mcp_compat.py +41 -0
  284. ai_objective_index-0.3.0a1/tests/test_mcp_curated_datascope.py +20 -0
  285. ai_objective_index-0.3.0a1/tests/test_mcp_datascope.py +23 -0
  286. ai_objective_index-0.3.0a1/tests/test_mcp_manifest.py +53 -0
  287. ai_objective_index-0.3.0a1/tests/test_mcp_public_beta_mcp_candidates.py +18 -0
  288. ai_objective_index-0.3.0a1/tests/test_mcp_registry_client.py +21 -0
  289. ai_objective_index-0.3.0a1/tests/test_mcp_registry_datascope.py +26 -0
  290. ai_objective_index-0.3.0a1/tests/test_mcp_registry_eval.py +16 -0
  291. ai_objective_index-0.3.0a1/tests/test_mcp_registry_evidence_gate.py +64 -0
  292. ai_objective_index-0.3.0a1/tests/test_mcp_registry_export.py +28 -0
  293. ai_objective_index-0.3.0a1/tests/test_mcp_registry_loader.py +31 -0
  294. ai_objective_index-0.3.0a1/tests/test_mcp_registry_mapper.py +28 -0
  295. ai_objective_index-0.3.0a1/tests/test_mcp_registry_publish_readiness.py +35 -0
  296. ai_objective_index-0.3.0a1/tests/test_mcp_registry_pypi_builder.py +12 -0
  297. ai_objective_index-0.3.0a1/tests/test_mcp_registry_readiness_refresh.py +43 -0
  298. ai_objective_index-0.3.0a1/tests/test_mcp_registry_report_generator.py +15 -0
  299. ai_objective_index-0.3.0a1/tests/test_mcp_registry_server_json_builder.py +10 -0
  300. ai_objective_index-0.3.0a1/tests/test_mcp_registry_submission_gate.py +32 -0
  301. ai_objective_index-0.3.0a1/tests/test_mcp_runtime_import.py +20 -0
  302. ai_objective_index-0.3.0a1/tests/test_mcp_smoke.py +15 -0
  303. ai_objective_index-0.3.0a1/tests/test_mcp_stdio_entrypoint.py +15 -0
  304. ai_objective_index-0.3.0a1/tests/test_mcp_tools.py +98 -0
  305. ai_objective_index-0.3.0a1/tests/test_missing_fields.py +32 -0
  306. ai_objective_index-0.3.0a1/tests/test_models.py +28 -0
  307. ai_objective_index-0.3.0a1/tests/test_negative_control_runner.py +19 -0
  308. ai_objective_index-0.3.0a1/tests/test_no_contact_launch_gate.py +19 -0
  309. ai_objective_index-0.3.0a1/tests/test_no_contact_public_beta_assets.py +24 -0
  310. ai_objective_index-0.3.0a1/tests/test_no_secrets_audit.py +30 -0
  311. ai_objective_index-0.3.0a1/tests/test_objective_router.py +85 -0
  312. ai_objective_index-0.3.0a1/tests/test_objective_router_api.py +39 -0
  313. ai_objective_index-0.3.0a1/tests/test_objective_router_cli_demo.py +19 -0
  314. ai_objective_index-0.3.0a1/tests/test_objective_router_mcp_tools.py +25 -0
  315. ai_objective_index-0.3.0a1/tests/test_objective_router_models.py +25 -0
  316. ai_objective_index-0.3.0a1/tests/test_objective_router_openapi.py +14 -0
  317. ai_objective_index-0.3.0a1/tests/test_observation_decision_gate.py +41 -0
  318. ai_objective_index-0.3.0a1/tests/test_observation_log.py +12 -0
  319. ai_objective_index-0.3.0a1/tests/test_obstruction_certificate.py +36 -0
  320. ai_objective_index-0.3.0a1/tests/test_openapi_export.py +20 -0
  321. ai_objective_index-0.3.0a1/tests/test_package_8n_assets.py +15 -0
  322. ai_objective_index-0.3.0a1/tests/test_package_8o_assets.py +16 -0
  323. ai_objective_index-0.3.0a1/tests/test_package_8p_assets.py +17 -0
  324. ai_objective_index-0.3.0a1/tests/test_package_8q_a_assets.py +13 -0
  325. ai_objective_index-0.3.0a1/tests/test_package_8q_a_resumed_assets.py +14 -0
  326. ai_objective_index-0.3.0a1/tests/test_package_9a_vnext_assets.py +16 -0
  327. ai_objective_index-0.3.0a1/tests/test_package_9b_assets.py +32 -0
  328. ai_objective_index-0.3.0a1/tests/test_package_9c_assets.py +33 -0
  329. ai_objective_index-0.3.0a1/tests/test_package_9d_assets.py +32 -0
  330. ai_objective_index-0.3.0a1/tests/test_package_9e_assets.py +16 -0
  331. ai_objective_index-0.3.0a1/tests/test_package_9f_assets.py +13 -0
  332. ai_objective_index-0.3.0a1/tests/test_package_metadata_audit.py +23 -0
  333. ai_objective_index-0.3.0a1/tests/test_page_classifier.py +21 -0
  334. ai_objective_index-0.3.0a1/tests/test_post_public_assets.py +14 -0
  335. ai_objective_index-0.3.0a1/tests/test_post_public_stabilization.py +12 -0
  336. ai_objective_index-0.3.0a1/tests/test_post_public_state_report.py +13 -0
  337. ai_objective_index-0.3.0a1/tests/test_prepublic_assets.py +21 -0
  338. ai_objective_index-0.3.0a1/tests/test_prepublic_state_report.py +11 -0
  339. ai_objective_index-0.3.0a1/tests/test_prepublic_sync.py +60 -0
  340. ai_objective_index-0.3.0a1/tests/test_private_deployment_assets.py +17 -0
  341. ai_objective_index-0.3.0a1/tests/test_private_deployment_qa.py +38 -0
  342. ai_objective_index-0.3.0a1/tests/test_private_reviewer_packager.py +16 -0
  343. ai_objective_index-0.3.0a1/tests/test_probe_api.py +41 -0
  344. ai_objective_index-0.3.0a1/tests/test_probe_card.py +10 -0
  345. ai_objective_index-0.3.0a1/tests/test_probe_cli_demo.py +11 -0
  346. ai_objective_index-0.3.0a1/tests/test_probe_mcp_tools.py +24 -0
  347. ai_objective_index-0.3.0a1/tests/test_probe_negative_controls.py +8 -0
  348. ai_objective_index-0.3.0a1/tests/test_probe_plan.py +10 -0
  349. ai_objective_index-0.3.0a1/tests/test_probe_receipt_store.py +35 -0
  350. ai_objective_index-0.3.0a1/tests/test_probe_route_adapter.py +28 -0
  351. ai_objective_index-0.3.0a1/tests/test_probe_runner.py +53 -0
  352. ai_objective_index-0.3.0a1/tests/test_public_beta_message_guard.py +38 -0
  353. ai_objective_index-0.3.0a1/tests/test_public_beta_packager.py +21 -0
  354. ai_objective_index-0.3.0a1/tests/test_public_beta_realdata_packager.py +17 -0
  355. ai_objective_index-0.3.0a1/tests/test_public_beta_v0_2_assets.py +21 -0
  356. ai_objective_index-0.3.0a1/tests/test_public_issue_loop.py +16 -0
  357. ai_objective_index-0.3.0a1/tests/test_public_launch_assets.py +33 -0
  358. ai_objective_index-0.3.0a1/tests/test_public_launch_claim_audit.py +29 -0
  359. ai_objective_index-0.3.0a1/tests/test_public_launch_execute.py +67 -0
  360. ai_objective_index-0.3.0a1/tests/test_public_launch_gate.py +17 -0
  361. ai_objective_index-0.3.0a1/tests/test_public_metrics_snapshot.py +18 -0
  362. ai_objective_index-0.3.0a1/tests/test_public_observation_plan.py +14 -0
  363. ai_objective_index-0.3.0a1/tests/test_public_observation_runner.py +20 -0
  364. ai_objective_index-0.3.0a1/tests/test_public_ops_assets.py +16 -0
  365. ai_objective_index-0.3.0a1/tests/test_public_ops_baseline.py +12 -0
  366. ai_objective_index-0.3.0a1/tests/test_public_switch_preflight.py +27 -0
  367. ai_objective_index-0.3.0a1/tests/test_public_url_qa.py +38 -0
  368. ai_objective_index-0.3.0a1/tests/test_public_visibility_switch.py +52 -0
  369. ai_objective_index-0.3.0a1/tests/test_pypi_publish_readiness.py +24 -0
  370. ai_objective_index-0.3.0a1/tests/test_pypi_readiness_refresh.py +34 -0
  371. ai_objective_index-0.3.0a1/tests/test_real_payload_activation.py +71 -0
  372. ai_objective_index-0.3.0a1/tests/test_real_payload_guard.py +72 -0
  373. ai_objective_index-0.3.0a1/tests/test_realdata_claim_audit.py +24 -0
  374. ai_objective_index-0.3.0a1/tests/test_receipt_router_adapter.py +43 -0
  375. ai_objective_index-0.3.0a1/tests/test_registry_beta_dataset_builder.py +59 -0
  376. ai_objective_index-0.3.0a1/tests/test_registry_beta_report_generator.py +13 -0
  377. ai_objective_index-0.3.0a1/tests/test_registry_candidate_gate.py +100 -0
  378. ai_objective_index-0.3.0a1/tests/test_registry_live_validation.py +46 -0
  379. ai_objective_index-0.3.0a1/tests/test_registry_payload_audit.py +56 -0
  380. ai_objective_index-0.3.0a1/tests/test_registry_quality_audit.py +19 -0
  381. ai_objective_index-0.3.0a1/tests/test_registry_reprocess_all.py +71 -0
  382. ai_objective_index-0.3.0a1/tests/test_registry_run_receipt.py +21 -0
  383. ai_objective_index-0.3.0a1/tests/test_release_archive_builder.py +15 -0
  384. ai_objective_index-0.3.0a1/tests/test_release_assets.py +20 -0
  385. ai_objective_index-0.3.0a1/tests/test_release_candidate_matrix.py +27 -0
  386. ai_objective_index-0.3.0a1/tests/test_release_claim_audit.py +14 -0
  387. ai_objective_index-0.3.0a1/tests/test_release_next_decision_gate.py +33 -0
  388. ai_objective_index-0.3.0a1/tests/test_release_readiness.py +14 -0
  389. ai_objective_index-0.3.0a1/tests/test_report_generator.py +28 -0
  390. ai_objective_index-0.3.0a1/tests/test_report_metrics.py +51 -0
  391. ai_objective_index-0.3.0a1/tests/test_residual_worktree_review.py +25 -0
  392. ai_objective_index-0.3.0a1/tests/test_residualops_alignment_audit.py +16 -0
  393. ai_objective_index-0.3.0a1/tests/test_risk_boundary.py +31 -0
  394. ai_objective_index-0.3.0a1/tests/test_route_decision.py +48 -0
  395. ai_objective_index-0.3.0a1/tests/test_rule_extractor.py +42 -0
  396. ai_objective_index-0.3.0a1/tests/test_scoring.py +116 -0
  397. ai_objective_index-0.3.0a1/tests/test_seed_loader.py +27 -0
  398. ai_objective_index-0.3.0a1/tests/test_smoke_all.py +13 -0
  399. ai_objective_index-0.3.0a1/tests/test_source_cache.py +23 -0
  400. ai_objective_index-0.3.0a1/tests/test_source_governance.py +40 -0
  401. ai_objective_index-0.3.0a1/tests/test_source_trace.py +23 -0
  402. ai_objective_index-0.3.0a1/tests/test_token_revocation_checklist.py +11 -0
  403. ai_objective_index-0.3.0a1/tests/test_token_revocation_verify.py +14 -0
  404. ai_objective_index-0.3.0a1/tests/test_trust_cli.py +18 -0
  405. ai_objective_index-0.3.0a1/tests/test_trust_report.py +14 -0
  406. ai_objective_index-0.3.0a1/tests/test_use_rights.py +29 -0
  407. ai_objective_index-0.3.0a1/tests/test_version_apply_gate.py +55 -0
  408. ai_objective_index-0.3.0a1/tests/test_vnext_capability_card.py +18 -0
  409. ai_objective_index-0.3.0a1/tests/test_vnext_capability_graph.py +17 -0
  410. ai_objective_index-0.3.0a1/tests/test_vnext_distribution_gate.py +9 -0
  411. ai_objective_index-0.3.0a1/tests/test_vnext_execution_receipt.py +31 -0
  412. ai_objective_index-0.3.0a1/tests/test_vnext_objective_card.py +17 -0
  413. ai_objective_index-0.3.0a1/tests/test_vnext_package_version_audit.py +19 -0
  414. ai_objective_index-0.3.0a1/tests/test_vnext_probe_card.py +16 -0
  415. ai_objective_index-0.3.0a1/tests/test_vnext_pypi_resume_gate.py +12 -0
  416. ai_objective_index-0.3.0a1/tests/test_vnext_residual_credit.py +35 -0
  417. ai_objective_index-0.3.0a1/tests/test_vnext_surface_sync_audit.py +19 -0
  418. ai_objective_index-0.3.0a1/tests/test_worktree_hygiene_audit.py +21 -0
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 AI Objective Index contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+