witsoc 0.1.0__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 (384) hide show
  1. witsoc-0.1.0/.gitignore +31 -0
  2. witsoc-0.1.0/PKG-INFO +114 -0
  3. witsoc-0.1.0/README.md +97 -0
  4. witsoc-0.1.0/SKILL.md +551 -0
  5. witsoc-0.1.0/pyproject.toml +46 -0
  6. witsoc-0.1.0/references/core/algorithmic_strategy.md +149 -0
  7. witsoc-0.1.0/references/core/architecture.md +70 -0
  8. witsoc-0.1.0/references/core/artifact_policy.md +42 -0
  9. witsoc-0.1.0/references/core/capability_catalog.md +172 -0
  10. witsoc-0.1.0/references/core/claim_acceptance.md +64 -0
  11. witsoc-0.1.0/references/core/exploration_strategy.md +417 -0
  12. witsoc-0.1.0/references/core/failure_recovery.md +59 -0
  13. witsoc-0.1.0/references/core/generator_gate.md +41 -0
  14. witsoc-0.1.0/references/core/generator_harness.md +22 -0
  15. witsoc-0.1.0/references/core/goal_cache.md +29 -0
  16. witsoc-0.1.0/references/core/handoff.md +144 -0
  17. witsoc-0.1.0/references/core/harness_discipline.md +55 -0
  18. witsoc-0.1.0/references/core/intelligence_bus.md +82 -0
  19. witsoc-0.1.0/references/core/interactive_intake.md +158 -0
  20. witsoc-0.1.0/references/core/lean_verification.md +46 -0
  21. witsoc-0.1.0/references/core/open_problem.md +91 -0
  22. witsoc-0.1.0/references/core/orchestrator_fit.md +127 -0
  23. witsoc-0.1.0/references/core/plugin_integration.md +41 -0
  24. witsoc-0.1.0/references/core/production_gates.md +68 -0
  25. witsoc-0.1.0/references/core/repair.md +54 -0
  26. witsoc-0.1.0/references/core/research_machinery.md +227 -0
  27. witsoc-0.1.0/references/core/routing.md +63 -0
  28. witsoc-0.1.0/references/core/routing_tests.md +138 -0
  29. witsoc-0.1.0/references/core/safeverify.md +46 -0
  30. witsoc-0.1.0/references/core/services.md +110 -0
  31. witsoc-0.1.0/references/core/status.md +38 -0
  32. witsoc-0.1.0/references/core/strategy_doctrine.md +69 -0
  33. witsoc-0.1.0/references/core/target_freeze.md +71 -0
  34. witsoc-0.1.0/references/core/technique_discovery.md +148 -0
  35. witsoc-0.1.0/references/core/tooling.md +103 -0
  36. witsoc-0.1.0/references/examples/compactness_disjoint_union_reduction.wit +24 -0
  37. witsoc-0.1.0/references/examples/composite_block.wit +25 -0
  38. witsoc-0.1.0/references/examples/finite_chi_bounding_compactness_template.wit +25 -0
  39. witsoc-0.1.0/references/examples/grover_constant.wit +66 -0
  40. witsoc-0.1.0/references/examples/handoff_open_problem.json +283 -0
  41. witsoc-0.1.0/references/examples/handoff_solved_problem.json +244 -0
  42. witsoc-0.1.0/references/examples/handoff_v1_blueprint.json +65 -0
  43. witsoc-0.1.0/references/examples/sat_reduction.wit +39 -0
  44. witsoc-0.1.0/references/knowledge-stores.md +87 -0
  45. witsoc-0.1.0/references/schemas/handoff.schema.json +881 -0
  46. witsoc-0.1.0/references/schemas/lovasz-spawn-worker.schema.json +86 -0
  47. witsoc-0.1.0/references/schemas/lovasz-worker-result.schema.json +98 -0
  48. witsoc-0.1.0/references/schemas/route-spec.schema.json +33 -0
  49. witsoc-0.1.0/references/schemas/witsoc-handoff-schema.json +137 -0
  50. witsoc-0.1.0/references/soc.md +212 -0
  51. witsoc-0.1.0/references/wit.md +414 -0
  52. witsoc-0.1.0/scripts/.flywheel/closures.jsonl_dir.json +4604 -0
  53. witsoc-0.1.0/scripts/.flywheel/policy.json +268 -0
  54. witsoc-0.1.0/scripts/_common.sh +152 -0
  55. witsoc-0.1.0/scripts/allocate_portfolio.py +96 -0
  56. witsoc-0.1.0/scripts/analogical_transfer.py +223 -0
  57. witsoc-0.1.0/scripts/artifacts.py +194 -0
  58. witsoc-0.1.0/scripts/asymptotic_analyzer.py +140 -0
  59. witsoc-0.1.0/scripts/attackability.py +165 -0
  60. witsoc-0.1.0/scripts/audit.sh +66 -0
  61. witsoc-0.1.0/scripts/autonomous_campaign.py +177 -0
  62. witsoc-0.1.0/scripts/barrier_attack.py +406 -0
  63. witsoc-0.1.0/scripts/blueprint_campaign.py +358 -0
  64. witsoc-0.1.0/scripts/build_mathlib_atlas.py +142 -0
  65. witsoc-0.1.0/scripts/bus_apply_replies.py +804 -0
  66. witsoc-0.1.0/scripts/campaign_driver.py +456 -0
  67. witsoc-0.1.0/scripts/check.sh +38 -0
  68. witsoc-0.1.0/scripts/close_obligation.py +576 -0
  69. witsoc-0.1.0/scripts/cluster_campaign.py +166 -0
  70. witsoc-0.1.0/scripts/concept_generator.py +210 -0
  71. witsoc-0.1.0/scripts/conjecture_miner.py +185 -0
  72. witsoc-0.1.0/scripts/conjecture_to_lemma_pipeline.py +505 -0
  73. witsoc-0.1.0/scripts/construction_search.py +133 -0
  74. witsoc-0.1.0/scripts/context.sh +77 -0
  75. witsoc-0.1.0/scripts/core_lemma_atlas.json +25 -0
  76. witsoc-0.1.0/scripts/counterexample_search.py +229 -0
  77. witsoc-0.1.0/scripts/curriculum.py +132 -0
  78. witsoc-0.1.0/scripts/curriculum_portfolio.py +81 -0
  79. witsoc-0.1.0/scripts/cycle.sh +90 -0
  80. witsoc-0.1.0/scripts/decision_ledger.py +302 -0
  81. witsoc-0.1.0/scripts/decompose_problem.py +194 -0
  82. witsoc-0.1.0/scripts/definition_synthesis.py +304 -0
  83. witsoc-0.1.0/scripts/dialectic.py +150 -0
  84. witsoc-0.1.0/scripts/discovery_engine.py +555 -0
  85. witsoc-0.1.0/scripts/discovery_evaluators.py +629 -0
  86. witsoc-0.1.0/scripts/discovery_ledger.py +164 -0
  87. witsoc-0.1.0/scripts/discovery_lift.py +159 -0
  88. witsoc-0.1.0/scripts/discovery_sampler_example.py +79 -0
  89. witsoc-0.1.0/scripts/domain_barrier_lemmas.py +409 -0
  90. witsoc-0.1.0/scripts/empirical_miner.py +264 -0
  91. witsoc-0.1.0/scripts/engine_dispatch.py +425 -0
  92. witsoc-0.1.0/scripts/explorer_approach_tournament.py +68 -0
  93. witsoc-0.1.0/scripts/explorer_return_packet.py +119 -0
  94. witsoc-0.1.0/scripts/finite_graph_backend.py +239 -0
  95. witsoc-0.1.0/scripts/flag_algebra_backend.py +199 -0
  96. witsoc-0.1.0/scripts/flywheel.py +158 -0
  97. witsoc-0.1.0/scripts/formal_conjectures_ingest.py +204 -0
  98. witsoc-0.1.0/scripts/formalization_feasibility.py +186 -0
  99. witsoc-0.1.0/scripts/formalization_obligations.json +484 -0
  100. witsoc-0.1.0/scripts/formula_synthesis.py +132 -0
  101. witsoc-0.1.0/scripts/generator_manifest.py +92 -0
  102. witsoc-0.1.0/scripts/generator_package.py +235 -0
  103. witsoc-0.1.0/scripts/generator_preflight.py +97 -0
  104. witsoc-0.1.0/scripts/generator_receipt_gate.py +75 -0
  105. witsoc-0.1.0/scripts/generator_repair_packet.py +68 -0
  106. witsoc-0.1.0/scripts/goal_structure.py +212 -0
  107. witsoc-0.1.0/scripts/grade_witsoc_report.py +189 -0
  108. witsoc-0.1.0/scripts/ideate.py +471 -0
  109. witsoc-0.1.0/scripts/ideation.json +163 -0
  110. witsoc-0.1.0/scripts/informal_proof.py +200 -0
  111. witsoc-0.1.0/scripts/init.sh +96 -0
  112. witsoc-0.1.0/scripts/init_lovasz_run.py +180 -0
  113. witsoc-0.1.0/scripts/interestingness.py +138 -0
  114. witsoc-0.1.0/scripts/kernel_tools.py +152 -0
  115. witsoc-0.1.0/scripts/knowledge_store.py +342 -0
  116. witsoc-0.1.0/scripts/lean_check.py +183 -0
  117. witsoc-0.1.0/scripts/lean_tactic_scan.py +137 -0
  118. witsoc-0.1.0/scripts/lemma_library.py +240 -0
  119. witsoc-0.1.0/scripts/lemma_pool.py +239 -0
  120. witsoc-0.1.0/scripts/lemma_repair.py +291 -0
  121. witsoc-0.1.0/scripts/lint_wit_quality.py +107 -0
  122. witsoc-0.1.0/scripts/literature_atlas.py +128 -0
  123. witsoc-0.1.0/scripts/lovasz_agent_packets.py +132 -0
  124. witsoc-0.1.0/scripts/lovasz_campaign_template.py +374 -0
  125. witsoc-0.1.0/scripts/lovasz_mutation_ranker.py +11 -0
  126. witsoc-0.1.0/scripts/lovasz_next_action.py +98 -0
  127. witsoc-0.1.0/scripts/lovasz_orchestrator_packet.py +81 -0
  128. witsoc-0.1.0/scripts/lovasz_prover_dispatch.py +373 -0
  129. witsoc-0.1.0/scripts/lovasz_run_manifest.py +180 -0
  130. witsoc-0.1.0/scripts/lovasz_score.py +177 -0
  131. witsoc-0.1.0/scripts/lovasz_soc_memory.py +265 -0
  132. witsoc-0.1.0/scripts/lovasz_top_tier.py +315 -0
  133. witsoc-0.1.0/scripts/lovasz_worker_dispatch.py +93 -0
  134. witsoc-0.1.0/scripts/mathlib_atlas.py +167 -0
  135. witsoc-0.1.0/scripts/mathlib_autopsy.py +164 -0
  136. witsoc-0.1.0/scripts/mcts_lean.py +174 -0
  137. witsoc-0.1.0/scripts/next_action.py +128 -0
  138. witsoc-0.1.0/scripts/nexus_loop.py +238 -0
  139. witsoc-0.1.0/scripts/novelty_triage.py +155 -0
  140. witsoc-0.1.0/scripts/number_theory_backend.py +258 -0
  141. witsoc-0.1.0/scripts/olympiad.py +206 -0
  142. witsoc-0.1.0/scripts/ontology_pivot.py +263 -0
  143. witsoc-0.1.0/scripts/open_frontier.py +281 -0
  144. witsoc-0.1.0/scripts/open_problem_report.py +147 -0
  145. witsoc-0.1.0/scripts/open_rungs.py +156 -0
  146. witsoc-0.1.0/scripts/opt_backend.py +219 -0
  147. witsoc-0.1.0/scripts/orchestrator_plan.py +144 -0
  148. witsoc-0.1.0/scripts/portfolio.py +187 -0
  149. witsoc-0.1.0/scripts/predicate_registry.py +163 -0
  150. witsoc-0.1.0/scripts/premise_retrieval.py +118 -0
  151. witsoc-0.1.0/scripts/problem_theory.py +295 -0
  152. witsoc-0.1.0/scripts/program_evolve.py +346 -0
  153. witsoc-0.1.0/scripts/proof_autopsy.py +260 -0
  154. witsoc-0.1.0/scripts/proof_bank.py +143 -0
  155. witsoc-0.1.0/scripts/proof_gap_to_barrier_feedback.py +257 -0
  156. witsoc-0.1.0/scripts/proof_policy.py +147 -0
  157. witsoc-0.1.0/scripts/proof_search.py +925 -0
  158. witsoc-0.1.0/scripts/prover_battery.py +189 -0
  159. witsoc-0.1.0/scripts/prover_tiers.py +134 -0
  160. witsoc-0.1.0/scripts/rank_lovasz_dag.py +105 -0
  161. witsoc-0.1.0/scripts/rank_lovasz_results.py +97 -0
  162. witsoc-0.1.0/scripts/rank_mission_menu.py +81 -0
  163. witsoc-0.1.0/scripts/receipt.sh +88 -0
  164. witsoc-0.1.0/scripts/recheck_certificates.py +354 -0
  165. witsoc-0.1.0/scripts/rediscovery_benchmark.py +183 -0
  166. witsoc-0.1.0/scripts/reduction_hunt.py +236 -0
  167. witsoc-0.1.0/scripts/reduction_ledger.py +661 -0
  168. witsoc-0.1.0/scripts/refute_deterministic.py +120 -0
  169. witsoc-0.1.0/scripts/request_bus.py +470 -0
  170. witsoc-0.1.0/scripts/research_campaign.py +309 -0
  171. witsoc-0.1.0/scripts/research_search.py +114 -0
  172. witsoc-0.1.0/scripts/research_state.py +291 -0
  173. witsoc-0.1.0/scripts/result_ladder.py +123 -0
  174. witsoc-0.1.0/scripts/retrieval_v2.py +352 -0
  175. witsoc-0.1.0/scripts/route.py +558 -0
  176. witsoc-0.1.0/scripts/route.sh +5 -0
  177. witsoc-0.1.0/scripts/run_ledger.py +412 -0
  178. witsoc-0.1.0/scripts/run_tests.sh +22 -0
  179. witsoc-0.1.0/scripts/rung_saturation.py +226 -0
  180. witsoc-0.1.0/scripts/sampler_fleet.py +149 -0
  181. witsoc-0.1.0/scripts/sat_backend.py +544 -0
  182. witsoc-0.1.0/scripts/score_lovasz_results.py +99 -0
  183. witsoc-0.1.0/scripts/select_barrier.py +97 -0
  184. witsoc-0.1.0/scripts/select_best_product.py +123 -0
  185. witsoc-0.1.0/scripts/select_lovasz_mutation.py +115 -0
  186. witsoc-0.1.0/scripts/self_play.py +202 -0
  187. witsoc-0.1.0/scripts/setup_kernels.sh +44 -0
  188. witsoc-0.1.0/scripts/sketch_population.py +497 -0
  189. witsoc-0.1.0/scripts/sketch_tournament.py +501 -0
  190. witsoc-0.1.0/scripts/smt_synthesizer.py +125 -0
  191. witsoc-0.1.0/scripts/solve_claim_protocol.py +240 -0
  192. witsoc-0.1.0/scripts/spawn_workers_from_dag.py +104 -0
  193. witsoc-0.1.0/scripts/speculative_arena.py +176 -0
  194. witsoc-0.1.0/scripts/status.sh +88 -0
  195. witsoc-0.1.0/scripts/status_lattice.py +144 -0
  196. witsoc-0.1.0/scripts/status_vocab.py +71 -0
  197. witsoc-0.1.0/scripts/stop_continue.py +87 -0
  198. witsoc-0.1.0/scripts/strategy_score.py +195 -0
  199. witsoc-0.1.0/scripts/summarize_lovasz_run.py +98 -0
  200. witsoc-0.1.0/scripts/synthesize_open_ledgers.py +144 -0
  201. witsoc-0.1.0/scripts/tactic_ngrams.py +192 -0
  202. witsoc-0.1.0/scripts/test_analogical_transfer.py +70 -0
  203. witsoc-0.1.0/scripts/test_apex.py +173 -0
  204. witsoc-0.1.0/scripts/test_auto_discharge.py +86 -0
  205. witsoc-0.1.0/scripts/test_autonomous_campaign.py +91 -0
  206. witsoc-0.1.0/scripts/test_barrier_fixes.py +103 -0
  207. witsoc-0.1.0/scripts/test_blueprint_campaign.py +141 -0
  208. witsoc-0.1.0/scripts/test_bus_apply_replies.py +217 -0
  209. witsoc-0.1.0/scripts/test_compounding_reach.py +73 -0
  210. witsoc-0.1.0/scripts/test_concept_generator.py +98 -0
  211. witsoc-0.1.0/scripts/test_conjecture_mining_arm.py +60 -0
  212. witsoc-0.1.0/scripts/test_conjecture_to_lemma_pipeline.py +119 -0
  213. witsoc-0.1.0/scripts/test_construction_search.py +69 -0
  214. witsoc-0.1.0/scripts/test_controller_and_receipts.py +327 -0
  215. witsoc-0.1.0/scripts/test_curriculum_portfolio.py +73 -0
  216. witsoc-0.1.0/scripts/test_decide_options_quality.py +152 -0
  217. witsoc-0.1.0/scripts/test_decision_ledger.py +163 -0
  218. witsoc-0.1.0/scripts/test_decompose.py +56 -0
  219. witsoc-0.1.0/scripts/test_definition_synthesis.py +117 -0
  220. witsoc-0.1.0/scripts/test_discovery.py +141 -0
  221. witsoc-0.1.0/scripts/test_discovery_ledger.py +118 -0
  222. witsoc-0.1.0/scripts/test_dispatch_split_skeptic.py +151 -0
  223. witsoc-0.1.0/scripts/test_doctrine_invariants.py +99 -0
  224. witsoc-0.1.0/scripts/test_domain_barrier_lemmas.py +144 -0
  225. witsoc-0.1.0/scripts/test_domain_inference.py +81 -0
  226. witsoc-0.1.0/scripts/test_empirical_miner_depth.py +111 -0
  227. witsoc-0.1.0/scripts/test_engine_dispatch.py +95 -0
  228. witsoc-0.1.0/scripts/test_env_blocker.py +163 -0
  229. witsoc-0.1.0/scripts/test_error_guided_repair.py +113 -0
  230. witsoc-0.1.0/scripts/test_eval_trust.py +41 -0
  231. witsoc-0.1.0/scripts/test_explorer_packet_reduction.py +69 -0
  232. witsoc-0.1.0/scripts/test_faithfulness_gate.py +69 -0
  233. witsoc-0.1.0/scripts/test_fixtures.py +69 -0
  234. witsoc-0.1.0/scripts/test_flywheel_wiring.py +113 -0
  235. witsoc-0.1.0/scripts/test_formula_synthesis.py +70 -0
  236. witsoc-0.1.0/scripts/test_gap_feedback.py +147 -0
  237. witsoc-0.1.0/scripts/test_generalization_search.py +68 -0
  238. witsoc-0.1.0/scripts/test_generator_package.py +119 -0
  239. witsoc-0.1.0/scripts/test_goal_minimization.py +133 -0
  240. witsoc-0.1.0/scripts/test_grade_progress.py +145 -0
  241. witsoc-0.1.0/scripts/test_ideate.py +149 -0
  242. witsoc-0.1.0/scripts/test_knowledge_store.py +158 -0
  243. witsoc-0.1.0/scripts/test_lake_env.py +77 -0
  244. witsoc-0.1.0/scripts/test_lazy_cli.py +66 -0
  245. witsoc-0.1.0/scripts/test_lemma_repair.py +109 -0
  246. witsoc-0.1.0/scripts/test_literature_atlas.py +100 -0
  247. witsoc-0.1.0/scripts/test_literature_bootstrap.py +104 -0
  248. witsoc-0.1.0/scripts/test_literature_engine.py +205 -0
  249. witsoc-0.1.0/scripts/test_lovasz_algorithms.py +149 -0
  250. witsoc-0.1.0/scripts/test_lovasz_barrier_attack.py +116 -0
  251. witsoc-0.1.0/scripts/test_lovasz_drastic_gates.py +105 -0
  252. witsoc-0.1.0/scripts/test_lovasz_prover_dispatch.py +97 -0
  253. witsoc-0.1.0/scripts/test_lovasz_top_tier.py +76 -0
  254. witsoc-0.1.0/scripts/test_mathlib_atlas_wiring.py +118 -0
  255. witsoc-0.1.0/scripts/test_mcts_lean.py +77 -0
  256. witsoc-0.1.0/scripts/test_memory_and_driver.py +161 -0
  257. witsoc-0.1.0/scripts/test_next_action.py +79 -0
  258. witsoc-0.1.0/scripts/test_olympiad_fast_lane.py +61 -0
  259. witsoc-0.1.0/scripts/test_omega.py +240 -0
  260. witsoc-0.1.0/scripts/test_ontology_pivot.py +74 -0
  261. witsoc-0.1.0/scripts/test_open_frontier.py +123 -0
  262. witsoc-0.1.0/scripts/test_open_problem_corpus.py +107 -0
  263. witsoc-0.1.0/scripts/test_open_problem_rigor.py +174 -0
  264. witsoc-0.1.0/scripts/test_open_rungs_gate.py +73 -0
  265. witsoc-0.1.0/scripts/test_orchestrator_plan.py +68 -0
  266. witsoc-0.1.0/scripts/test_p3_constructor.py +125 -0
  267. witsoc-0.1.0/scripts/test_p4_compounding.py +149 -0
  268. witsoc-0.1.0/scripts/test_phase01.py +104 -0
  269. witsoc-0.1.0/scripts/test_phase24.py +69 -0
  270. witsoc-0.1.0/scripts/test_portfolio.py +84 -0
  271. witsoc-0.1.0/scripts/test_pose_variants.py +106 -0
  272. witsoc-0.1.0/scripts/test_premise_retrieval.py +85 -0
  273. witsoc-0.1.0/scripts/test_premise_retrieval_packet.py +63 -0
  274. witsoc-0.1.0/scripts/test_proof_autopsy.py +117 -0
  275. witsoc-0.1.0/scripts/test_proof_search_induction.py +97 -0
  276. witsoc-0.1.0/scripts/test_prover.py +75 -0
  277. witsoc-0.1.0/scripts/test_reach_unlock_lemma_premise.py +102 -0
  278. witsoc-0.1.0/scripts/test_reduction_ledger.py +182 -0
  279. witsoc-0.1.0/scripts/test_reduction_phase1.py +149 -0
  280. witsoc-0.1.0/scripts/test_refute_deterministic.py +61 -0
  281. witsoc-0.1.0/scripts/test_request_bus.py +190 -0
  282. witsoc-0.1.0/scripts/test_research_campaign.py +159 -0
  283. witsoc-0.1.0/scripts/test_research_state.py +105 -0
  284. witsoc-0.1.0/scripts/test_retrieval_and_pool.py +185 -0
  285. witsoc-0.1.0/scripts/test_route.py +181 -0
  286. witsoc-0.1.0/scripts/test_run_ledger.py +195 -0
  287. witsoc-0.1.0/scripts/test_sampler_fleet.py +178 -0
  288. witsoc-0.1.0/scripts/test_sat_backend.py +182 -0
  289. witsoc-0.1.0/scripts/test_search_frontier.py +167 -0
  290. witsoc-0.1.0/scripts/test_seed_lemmas_bus.py +152 -0
  291. witsoc-0.1.0/scripts/test_skeptic_bus.py +123 -0
  292. witsoc-0.1.0/scripts/test_sketch_tournament.py +261 -0
  293. witsoc-0.1.0/scripts/test_solve_claim.py +215 -0
  294. witsoc-0.1.0/scripts/test_speculative_arena.py +86 -0
  295. witsoc-0.1.0/scripts/test_strategy_algorithms.py +163 -0
  296. witsoc-0.1.0/scripts/test_structural_induction.py +65 -0
  297. witsoc-0.1.0/scripts/test_theorem_extract.py +146 -0
  298. witsoc-0.1.0/scripts/test_theory_and_nexus.py +168 -0
  299. witsoc-0.1.0/scripts/test_validate_generator_handoff.py +89 -0
  300. witsoc-0.1.0/scripts/test_validate_premises.py +50 -0
  301. witsoc-0.1.0/scripts/test_value_function.py +95 -0
  302. witsoc-0.1.0/scripts/test_w3_w4.py +107 -0
  303. witsoc-0.1.0/scripts/test_wit_to_lean_obligation.py +83 -0
  304. witsoc-0.1.0/scripts/theorem_atlas.py +388 -0
  305. witsoc-0.1.0/scripts/toolchain_check.py +93 -0
  306. witsoc-0.1.0/scripts/trace_harvester.py +200 -0
  307. witsoc-0.1.0/scripts/validate_explorer_review.py +183 -0
  308. witsoc-0.1.0/scripts/validate_generator_handoff.py +113 -0
  309. witsoc-0.1.0/scripts/validate_handoff.py +728 -0
  310. witsoc-0.1.0/scripts/validate_lean_receipt.py +141 -0
  311. witsoc-0.1.0/scripts/validate_lovasz_phase.py +56 -0
  312. witsoc-0.1.0/scripts/validate_lovasz_run.py +184 -0
  313. witsoc-0.1.0/scripts/validate_open_problem_run.py +292 -0
  314. witsoc-0.1.0/scripts/validate_premises.py +84 -0
  315. witsoc-0.1.0/scripts/validate_proof_dag_integrity.py +108 -0
  316. witsoc-0.1.0/scripts/validate_prover_result.py +159 -0
  317. witsoc-0.1.0/scripts/validate_route_state.py +95 -0
  318. witsoc-0.1.0/scripts/validate_spawn_packet.py +99 -0
  319. witsoc-0.1.0/scripts/value_function.py +191 -0
  320. witsoc-0.1.0/scripts/verify.sh +51 -0
  321. witsoc-0.1.0/scripts/wit_to_lean_obligation.py +266 -0
  322. witsoc-0.1.0/scripts/witsoc.py +20 -0
  323. witsoc-0.1.0/scripts/witsoc_controller.py +304 -0
  324. witsoc-0.1.0/scripts/witsoc_narrate.py +606 -0
  325. witsoc-0.1.0/scripts/witsoc_ui.py +156 -0
  326. witsoc-0.1.0/src/witsoc/__init__.py +13 -0
  327. witsoc-0.1.0/src/witsoc/__main__.py +10 -0
  328. witsoc-0.1.0/src/witsoc/cli.py +129 -0
  329. witsoc-0.1.0/src/witsoc/legacy.py +46 -0
  330. witsoc-0.1.0/src/witsoc/registry.py +96 -0
  331. witsoc-0.1.0/witsoc-explorer/SKILL.md +769 -0
  332. witsoc-0.1.0/witsoc-explorer/references/examples/composite_block.wit +25 -0
  333. witsoc-0.1.0/witsoc-explorer/references/examples/grover_constant.wit +66 -0
  334. witsoc-0.1.0/witsoc-explorer/references/examples/sat_reduction.wit +39 -0
  335. witsoc-0.1.0/witsoc-explorer/references/open_problems.md +186 -0
  336. witsoc-0.1.0/witsoc-generator/SKILL.md +761 -0
  337. witsoc-0.1.0/witsoc-generator/references/examples/compactness_disjoint_union_reduction.wit +24 -0
  338. witsoc-0.1.0/witsoc-generator/references/examples/composite_block.wit +25 -0
  339. witsoc-0.1.0/witsoc-generator/references/examples/finite_chi_bounding_compactness_template.wit +25 -0
  340. witsoc-0.1.0/witsoc-generator/references/examples/grover_constant.wit +66 -0
  341. witsoc-0.1.0/witsoc-generator/references/examples/sat_reduction.wit +39 -0
  342. witsoc-0.1.0/witsoc-generator/scripts/_common.sh +152 -0
  343. witsoc-0.1.0/witsoc-generator/scripts/audit.sh +66 -0
  344. witsoc-0.1.0/witsoc-generator/scripts/check.sh +38 -0
  345. witsoc-0.1.0/witsoc-generator/scripts/context.sh +77 -0
  346. witsoc-0.1.0/witsoc-generator/scripts/cycle.sh +90 -0
  347. witsoc-0.1.0/witsoc-generator/scripts/init.sh +96 -0
  348. witsoc-0.1.0/witsoc-generator/scripts/receipt.sh +88 -0
  349. witsoc-0.1.0/witsoc-generator/scripts/status.sh +88 -0
  350. witsoc-0.1.0/witsoc-generator/scripts/verify.sh +51 -0
  351. witsoc-0.1.0/witsoc-research-lovasz/SKILL.md +548 -0
  352. witsoc-0.1.0/witsoc-research-lovasz/agents/openai.yaml +4 -0
  353. witsoc-0.1.0/witsoc-research-lovasz/references/algorithmic_research.md +114 -0
  354. witsoc-0.1.0/witsoc-research-lovasz/references/barrier_taxonomy.md +86 -0
  355. witsoc-0.1.0/witsoc-research-lovasz/references/claim_demotion.md +49 -0
  356. witsoc-0.1.0/witsoc-research-lovasz/references/computation_backends.md +33 -0
  357. witsoc-0.1.0/witsoc-research-lovasz/references/conjecture_mining.md +59 -0
  358. witsoc-0.1.0/witsoc-research-lovasz/references/conjecture_to_lemma_pipeline.md +37 -0
  359. witsoc-0.1.0/witsoc-research-lovasz/references/counterexample_certificate.md +51 -0
  360. witsoc-0.1.0/witsoc-research-lovasz/references/counterexample_search_library.md +64 -0
  361. witsoc-0.1.0/witsoc-research-lovasz/references/cross_run_memory.md +51 -0
  362. witsoc-0.1.0/witsoc-research-lovasz/references/disproof_first_protocol.md +36 -0
  363. witsoc-0.1.0/witsoc-research-lovasz/references/domain_additive_combinatorics.md +46 -0
  364. witsoc-0.1.0/witsoc-research-lovasz/references/domain_extremal_graph_theory.md +122 -0
  365. witsoc-0.1.0/witsoc-research-lovasz/references/domain_multiplicative_number_theory.md +50 -0
  366. witsoc-0.1.0/witsoc-research-lovasz/references/domain_playbooks.md +35 -0
  367. witsoc-0.1.0/witsoc-research-lovasz/references/domain_ramsey_theory.md +48 -0
  368. witsoc-0.1.0/witsoc-research-lovasz/references/erdos_level_playbook.md +122 -0
  369. witsoc-0.1.0/witsoc-research-lovasz/references/experiment_design.md +67 -0
  370. witsoc-0.1.0/witsoc-research-lovasz/references/full_proof_campaign.md +56 -0
  371. witsoc-0.1.0/witsoc-research-lovasz/references/full_proof_escalation.md +44 -0
  372. witsoc-0.1.0/witsoc-research-lovasz/references/historical_benchmark_suite.md +68 -0
  373. witsoc-0.1.0/witsoc-research-lovasz/references/lean_mathlib_integration.md +36 -0
  374. witsoc-0.1.0/witsoc-research-lovasz/references/literature_triage.md +38 -0
  375. witsoc-0.1.0/witsoc-research-lovasz/references/problem_selection.md +64 -0
  376. witsoc-0.1.0/witsoc-research-lovasz/references/proof_gap_ledger.md +43 -0
  377. witsoc-0.1.0/witsoc-research-lovasz/references/proof_strategy_agents.md +58 -0
  378. witsoc-0.1.0/witsoc-research-lovasz/references/research_protocol.md +374 -0
  379. witsoc-0.1.0/witsoc-research-lovasz/references/skeptic_pass.md +42 -0
  380. witsoc-0.1.0/witsoc-research-lovasz/references/soc_memory.md +119 -0
  381. witsoc-0.1.0/witsoc-research-lovasz/references/theorem_retrieval_engine.md +42 -0
  382. witsoc-0.1.0/witsoc-research-lovasz/scripts/experiments/finite_model_search.py +110 -0
  383. witsoc-0.1.0/witsoc-research-lovasz/scripts/experiments/graph_search.py +73 -0
  384. witsoc-0.1.0/witsoc-research-lovasz/scripts/experiments/number_theory_search.py +87 -0
@@ -0,0 +1,31 @@
1
+ /plugins/
2
+
3
+ # Python
4
+ __pycache__/
5
+ *.py[cod]
6
+ *.egg-info/
7
+ .eggs/
8
+ .pytest_cache/
9
+ .ruff_cache/
10
+ .mypy_cache/
11
+ .ipynb_checkpoints/
12
+
13
+ # Virtual environments
14
+ .venv/
15
+ venv/
16
+ env/
17
+
18
+ # OS / editor cruft
19
+ .DS_Store
20
+ Thumbs.db
21
+ desktop.ini
22
+ *.swp
23
+ *.swo
24
+ *~
25
+
26
+ # Logs / temp
27
+ *.log
28
+ *.tmp
29
+ *.bak
30
+ *.orig
31
+ *.rej
witsoc-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,114 @@
1
+ Metadata-Version: 2.4
2
+ Name: witsoc
3
+ Version: 0.1.0
4
+ Summary: Witsoc mathematical research orchestration utilities
5
+ Author: Witsoc contributors
6
+ License: Proprietary
7
+ Keywords: lean,mathematics,orchestration,proof,research
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3 :: Only
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Witsoc
19
+
20
+ Witsoc is a collection of mathematical research orchestration utilities used by
21
+ the Witsoc skill. The package exposes the same command surface as the local
22
+ `scripts/witsoc.py` entrypoint while making the tools installable with `pip`.
23
+
24
+ Initial package scope:
25
+
26
+ - stable `witsoc` console command;
27
+ - compatibility with existing script names and orchestrator calls;
28
+ - packaged references, schemas, and subskill files needed by the scripts;
29
+ - gradual migration path from standalone scripts to importable modules.
30
+
31
+ Example:
32
+
33
+ ```bash
34
+ witsoc route "deep run prove or disprove this open conjecture"
35
+ witsoc lovasz-packet runs/example
36
+ witsoc orchestrator-plan route "prove a theorem"
37
+ ```
38
+
39
+ Nested aliases are also available:
40
+
41
+ ```bash
42
+ witsoc strategy rank-lanes --prompt "deep run prove or disprove this open conjecture"
43
+ witsoc lovasz packet runs/example
44
+ ```
45
+
46
+ ## Lazy Surface
47
+
48
+ Witsoc is intentionally lazy at the package boundary. The default command
49
+ surface exposes cheap routing and decision packets first; heavy research engines
50
+ remain callable by explicit command name or by the orchestrator after it chooses
51
+ a plan.
52
+
53
+ Cheap boundary calls:
54
+
55
+ ```bash
56
+ witsoc route "..."
57
+ witsoc orchestrator-plan route "..."
58
+ witsoc strategy rank-lanes --prompt "..."
59
+ witsoc lovasz packet runs/example
60
+ ```
61
+
62
+ Discover commands by tier:
63
+
64
+ ```bash
65
+ witsoc commands
66
+ witsoc commands --tier core
67
+ witsoc commands --tier heavy --json
68
+ ```
69
+
70
+ Old direct aliases still work for compatibility, for example:
71
+
72
+ ```bash
73
+ witsoc counterexample-search runs/example
74
+ witsoc worker-dispatch runs/example --write
75
+ ```
76
+
77
+ Those commands are not imported or loaded until invoked.
78
+
79
+ ## Build
80
+
81
+ From this directory:
82
+
83
+ ```bash
84
+ uv build
85
+ ```
86
+
87
+ This produces:
88
+
89
+ ```text
90
+ dist/witsoc-0.1.0.tar.gz
91
+ dist/witsoc-0.1.0-py3-none-any.whl
92
+ ```
93
+
94
+ Local wheel smoke test:
95
+
96
+ ```bash
97
+ python3 -m venv /tmp/witsoc-venv
98
+ /tmp/witsoc-venv/bin/pip install --no-deps dist/witsoc-0.1.0-py3-none-any.whl
99
+ /tmp/witsoc-venv/bin/witsoc route --field route "deep run prove or disprove this open conjecture"
100
+ ```
101
+
102
+ Publish, after configuring PyPI credentials:
103
+
104
+ ```bash
105
+ uv publish
106
+ ```
107
+
108
+ ## Migration Model
109
+
110
+ Version `0.1.0` packages the existing `scripts/` tree as the compatibility
111
+ surface. The stable entrypoint is `witsoc.cli:main`; old calls through
112
+ `scripts/witsoc.py` delegate to the package CLI. Future releases can move
113
+ individual scripts into importable package modules while keeping the same
114
+ console commands.
witsoc-0.1.0/README.md ADDED
@@ -0,0 +1,97 @@
1
+ # Witsoc
2
+
3
+ Witsoc is a collection of mathematical research orchestration utilities used by
4
+ the Witsoc skill. The package exposes the same command surface as the local
5
+ `scripts/witsoc.py` entrypoint while making the tools installable with `pip`.
6
+
7
+ Initial package scope:
8
+
9
+ - stable `witsoc` console command;
10
+ - compatibility with existing script names and orchestrator calls;
11
+ - packaged references, schemas, and subskill files needed by the scripts;
12
+ - gradual migration path from standalone scripts to importable modules.
13
+
14
+ Example:
15
+
16
+ ```bash
17
+ witsoc route "deep run prove or disprove this open conjecture"
18
+ witsoc lovasz-packet runs/example
19
+ witsoc orchestrator-plan route "prove a theorem"
20
+ ```
21
+
22
+ Nested aliases are also available:
23
+
24
+ ```bash
25
+ witsoc strategy rank-lanes --prompt "deep run prove or disprove this open conjecture"
26
+ witsoc lovasz packet runs/example
27
+ ```
28
+
29
+ ## Lazy Surface
30
+
31
+ Witsoc is intentionally lazy at the package boundary. The default command
32
+ surface exposes cheap routing and decision packets first; heavy research engines
33
+ remain callable by explicit command name or by the orchestrator after it chooses
34
+ a plan.
35
+
36
+ Cheap boundary calls:
37
+
38
+ ```bash
39
+ witsoc route "..."
40
+ witsoc orchestrator-plan route "..."
41
+ witsoc strategy rank-lanes --prompt "..."
42
+ witsoc lovasz packet runs/example
43
+ ```
44
+
45
+ Discover commands by tier:
46
+
47
+ ```bash
48
+ witsoc commands
49
+ witsoc commands --tier core
50
+ witsoc commands --tier heavy --json
51
+ ```
52
+
53
+ Old direct aliases still work for compatibility, for example:
54
+
55
+ ```bash
56
+ witsoc counterexample-search runs/example
57
+ witsoc worker-dispatch runs/example --write
58
+ ```
59
+
60
+ Those commands are not imported or loaded until invoked.
61
+
62
+ ## Build
63
+
64
+ From this directory:
65
+
66
+ ```bash
67
+ uv build
68
+ ```
69
+
70
+ This produces:
71
+
72
+ ```text
73
+ dist/witsoc-0.1.0.tar.gz
74
+ dist/witsoc-0.1.0-py3-none-any.whl
75
+ ```
76
+
77
+ Local wheel smoke test:
78
+
79
+ ```bash
80
+ python3 -m venv /tmp/witsoc-venv
81
+ /tmp/witsoc-venv/bin/pip install --no-deps dist/witsoc-0.1.0-py3-none-any.whl
82
+ /tmp/witsoc-venv/bin/witsoc route --field route "deep run prove or disprove this open conjecture"
83
+ ```
84
+
85
+ Publish, after configuring PyPI credentials:
86
+
87
+ ```bash
88
+ uv publish
89
+ ```
90
+
91
+ ## Migration Model
92
+
93
+ Version `0.1.0` packages the existing `scripts/` tree as the compatibility
94
+ surface. The stable entrypoint is `witsoc.cli:main`; old calls through
95
+ `scripts/witsoc.py` delegate to the package CLI. Future releases can move
96
+ individual scripts into importable package modules while keeping the same
97
+ console commands.