flywheel-verify 0.3.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 (650) hide show
  1. flywheel_verify-0.3.0/LICENSE +110 -0
  2. flywheel_verify-0.3.0/PKG-INFO +142 -0
  3. flywheel_verify-0.3.0/README.md +131 -0
  4. flywheel_verify-0.3.0/flywheel_verify.egg-info/PKG-INFO +142 -0
  5. flywheel_verify-0.3.0/flywheel_verify.egg-info/SOURCES.txt +648 -0
  6. flywheel_verify-0.3.0/flywheel_verify.egg-info/dependency_links.txt +1 -0
  7. flywheel_verify-0.3.0/flywheel_verify.egg-info/entry_points.txt +2 -0
  8. flywheel_verify-0.3.0/flywheel_verify.egg-info/top_level.txt +1 -0
  9. flywheel_verify-0.3.0/harness/__init__.py +10 -0
  10. flywheel_verify-0.3.0/harness/academy_pipeline.py +163 -0
  11. flywheel_verify-0.3.0/harness/acceptance_criteria.py +119 -0
  12. flywheel_verify-0.3.0/harness/accountability_bench.py +185 -0
  13. flywheel_verify-0.3.0/harness/adapter_runtime_matrix.py +244 -0
  14. flywheel_verify-0.3.0/harness/adaptive_select.py +130 -0
  15. flywheel_verify-0.3.0/harness/advantages.py +49 -0
  16. flywheel_verify-0.3.0/harness/adversarial_corpus.py +155 -0
  17. flywheel_verify-0.3.0/harness/agent_recovery_bench.py +684 -0
  18. flywheel_verify-0.3.0/harness/agentic_task_manifest.py +269 -0
  19. flywheel_verify-0.3.0/harness/arc_agi3.py +148 -0
  20. flywheel_verify-0.3.0/harness/asymmetry.py +183 -0
  21. flywheel_verify-0.3.0/harness/attestation.py +89 -0
  22. flywheel_verify-0.3.0/harness/authorization_cost.py +71 -0
  23. flywheel_verify-0.3.0/harness/backflow.py +105 -0
  24. flywheel_verify-0.3.0/harness/behavioral_monitor.py +74 -0
  25. flywheel_verify-0.3.0/harness/benchmark_hygiene.py +67 -0
  26. flywheel_verify-0.3.0/harness/benchmark_receipts.py +54 -0
  27. flywheel_verify-0.3.0/harness/bm25_retrieval.py +109 -0
  28. flywheel_verify-0.3.0/harness/boot.py +242 -0
  29. flywheel_verify-0.3.0/harness/brand_kit.py +131 -0
  30. flywheel_verify-0.3.0/harness/budget_control.py +78 -0
  31. flywheel_verify-0.3.0/harness/buildc_receipt_bridge.py +281 -0
  32. flywheel_verify-0.3.0/harness/bundle.py +276 -0
  33. flywheel_verify-0.3.0/harness/cache.py +116 -0
  34. flywheel_verify-0.3.0/harness/calibration.py +105 -0
  35. flywheel_verify-0.3.0/harness/canary_tripwire.py +70 -0
  36. flywheel_verify-0.3.0/harness/certificates/__init__.py +14 -0
  37. flywheel_verify-0.3.0/harness/certificates/base.py +290 -0
  38. flywheel_verify-0.3.0/harness/certificates/crossing.py +237 -0
  39. flywheel_verify-0.3.0/harness/certificates/crossing_generator.py +126 -0
  40. flywheel_verify-0.3.0/harness/certificates/crossing_independent.py +168 -0
  41. flywheel_verify-0.3.0/harness/certificates/generators.py +102 -0
  42. flywheel_verify-0.3.0/harness/certificates/independent.py +160 -0
  43. flywheel_verify-0.3.0/harness/certificates/zarankiewicz.py +158 -0
  44. flywheel_verify-0.3.0/harness/chain.py +126 -0
  45. flywheel_verify-0.3.0/harness/chorus_bridge.py +138 -0
  46. flywheel_verify-0.3.0/harness/classifier_friction_bench.py +454 -0
  47. flywheel_verify-0.3.0/harness/cli.py +72 -0
  48. flywheel_verify-0.3.0/harness/cli_entry.py +261 -0
  49. flywheel_verify-0.3.0/harness/compaction.py +221 -0
  50. flywheel_verify-0.3.0/harness/companion.py +125 -0
  51. flywheel_verify-0.3.0/harness/comprehension_ledger.py +107 -0
  52. flywheel_verify-0.3.0/harness/conjecture_forge.py +194 -0
  53. flywheel_verify-0.3.0/harness/consensus.py +127 -0
  54. flywheel_verify-0.3.0/harness/contest.py +214 -0
  55. flywheel_verify-0.3.0/harness/context_envelope.py +107 -0
  56. flywheel_verify-0.3.0/harness/context_forge.py +147 -0
  57. flywheel_verify-0.3.0/harness/context_governor.py +119 -0
  58. flywheel_verify-0.3.0/harness/context_manifest.py +74 -0
  59. flywheel_verify-0.3.0/harness/corpus_export.py +106 -0
  60. flywheel_verify-0.3.0/harness/creative_graph.py +216 -0
  61. flywheel_verify-0.3.0/harness/creative_pipeline.py +180 -0
  62. flywheel_verify-0.3.0/harness/credo.py +45 -0
  63. flywheel_verify-0.3.0/harness/criteria/__init__.py +15 -0
  64. flywheel_verify-0.3.0/harness/criteria/registry.py +219 -0
  65. flywheel_verify-0.3.0/harness/criteria/spec.py +152 -0
  66. flywheel_verify-0.3.0/harness/cross_domain.py +129 -0
  67. flywheel_verify-0.3.0/harness/cross_harness_manifest.py +342 -0
  68. flywheel_verify-0.3.0/harness/crypto/__init__.py +5 -0
  69. flywheel_verify-0.3.0/harness/crypto/signatures.py +221 -0
  70. flywheel_verify-0.3.0/harness/data_flywheel.py +98 -0
  71. flywheel_verify-0.3.0/harness/design_studio.py +237 -0
  72. flywheel_verify-0.3.0/harness/developmental.py +77 -0
  73. flywheel_verify-0.3.0/harness/discovery_flywheel.py +192 -0
  74. flywheel_verify-0.3.0/harness/ed25519_verify.py +186 -0
  75. flywheel_verify-0.3.0/harness/effort.py +40 -0
  76. flywheel_verify-0.3.0/harness/endpoint.py +217 -0
  77. flywheel_verify-0.3.0/harness/endpoint_registry.py +199 -0
  78. flywheel_verify-0.3.0/harness/endpoints.py +492 -0
  79. flywheel_verify-0.3.0/harness/envelope.py +159 -0
  80. flywheel_verify-0.3.0/harness/escalation.py +106 -0
  81. flywheel_verify-0.3.0/harness/eval.py +178 -0
  82. flywheel_verify-0.3.0/harness/eval_engineering.py +201 -0
  83. flywheel_verify-0.3.0/harness/eval_store.py +185 -0
  84. flywheel_verify-0.3.0/harness/evolutionary_flywheel.py +87 -0
  85. flywheel_verify-0.3.0/harness/evolve.py +142 -0
  86. flywheel_verify-0.3.0/harness/exec_oracle.py +126 -0
  87. flywheel_verify-0.3.0/harness/explanation_gate.py +116 -0
  88. flywheel_verify-0.3.0/harness/externalization_ablation.py +114 -0
  89. flywheel_verify-0.3.0/harness/extract.py +31 -0
  90. flywheel_verify-0.3.0/harness/failure_corpus.py +103 -0
  91. flywheel_verify-0.3.0/harness/faithfulness_gate.py +48 -0
  92. flywheel_verify-0.3.0/harness/fan_out.py +57 -0
  93. flywheel_verify-0.3.0/harness/feeds.py +169 -0
  94. flywheel_verify-0.3.0/harness/field_studio.py +146 -0
  95. flywheel_verify-0.3.0/harness/file_backed_store.py +228 -0
  96. flywheel_verify-0.3.0/harness/film_media.py +84 -0
  97. flywheel_verify-0.3.0/harness/findings.py +246 -0
  98. flywheel_verify-0.3.0/harness/findings_stats.py +91 -0
  99. flywheel_verify-0.3.0/harness/fluid_router.py +142 -0
  100. flywheel_verify-0.3.0/harness/flywheel.py +102 -0
  101. flywheel_verify-0.3.0/harness/fold_index.py +141 -0
  102. flywheel_verify-0.3.0/harness/forecast_bootstrap.py +110 -0
  103. flywheel_verify-0.3.0/harness/forecast_shrinkage.py +54 -0
  104. flywheel_verify-0.3.0/harness/frontier.py +124 -0
  105. flywheel_verify-0.3.0/harness/gate.py +157 -0
  106. flywheel_verify-0.3.0/harness/gateway.py +2560 -0
  107. flywheel_verify-0.3.0/harness/gateway_auth.py +69 -0
  108. flywheel_verify-0.3.0/harness/governance/__init__.py +6 -0
  109. flywheel_verify-0.3.0/harness/governance/control_baseline.py +227 -0
  110. flywheel_verify-0.3.0/harness/governance/tadr_interop.py +93 -0
  111. flywheel_verify-0.3.0/harness/governance/tadr_receipt.py +227 -0
  112. flywheel_verify-0.3.0/harness/governance/tadr_tier.py +269 -0
  113. flywheel_verify-0.3.0/harness/governance_envelope.py +178 -0
  114. flywheel_verify-0.3.0/harness/governed_agent_bench.py +734 -0
  115. flywheel_verify-0.3.0/harness/grounding.py +102 -0
  116. flywheel_verify-0.3.0/harness/hard_lane.py +116 -0
  117. flywheel_verify-0.3.0/harness/import_adapters.py +128 -0
  118. flywheel_verify-0.3.0/harness/index_bridge.py +104 -0
  119. flywheel_verify-0.3.0/harness/infra/__init__.py +1 -0
  120. flywheel_verify-0.3.0/harness/infra/acquisition.py +148 -0
  121. flywheel_verify-0.3.0/harness/infra/cloud_iam.py +290 -0
  122. flywheel_verify-0.3.0/harness/infra/correlator.py +233 -0
  123. flywheel_verify-0.3.0/harness/infra/credential_scanner.py +168 -0
  124. flywheel_verify-0.3.0/harness/infra/egress.py +206 -0
  125. flywheel_verify-0.3.0/harness/infra/egress_matrix.py +114 -0
  126. flywheel_verify-0.3.0/harness/infra/incident_sheet.py +126 -0
  127. flywheel_verify-0.3.0/harness/infra/isolation_test.py +181 -0
  128. flywheel_verify-0.3.0/harness/infra/kill_switch.py +186 -0
  129. flywheel_verify-0.3.0/harness/infra/lean_adapter.py +161 -0
  130. flywheel_verify-0.3.0/harness/infra/native_detect.py +460 -0
  131. flywheel_verify-0.3.0/harness/infra/partner_assurance.py +95 -0
  132. flywheel_verify-0.3.0/harness/infra/reality_contract.py +136 -0
  133. flywheel_verify-0.3.0/harness/infra/run_bom.py +159 -0
  134. flywheel_verify-0.3.0/harness/infra/trust_model.py +253 -0
  135. flywheel_verify-0.3.0/harness/injection_probe.py +122 -0
  136. flywheel_verify-0.3.0/harness/intake.py +178 -0
  137. flywheel_verify-0.3.0/harness/integrity.py +230 -0
  138. flywheel_verify-0.3.0/harness/inversion_flywheel.py +103 -0
  139. flywheel_verify-0.3.0/harness/kernel_oracle.py +91 -0
  140. flywheel_verify-0.3.0/harness/keychain.py +114 -0
  141. flywheel_verify-0.3.0/harness/knowledge_graph.py +213 -0
  142. flywheel_verify-0.3.0/harness/knowledge_monitor.py +102 -0
  143. flywheel_verify-0.3.0/harness/lane_caller.py +100 -0
  144. flywheel_verify-0.3.0/harness/lanes.py +361 -0
  145. flywheel_verify-0.3.0/harness/lean_export.py +198 -0
  146. flywheel_verify-0.3.0/harness/lean_oracle.py +247 -0
  147. flywheel_verify-0.3.0/harness/ledger.py +300 -0
  148. flywheel_verify-0.3.0/harness/lesson.py +356 -0
  149. flywheel_verify-0.3.0/harness/lesson_interop.py +165 -0
  150. flywheel_verify-0.3.0/harness/lesson_mappers.py +340 -0
  151. flywheel_verify-0.3.0/harness/lesson_store.py +495 -0
  152. flywheel_verify-0.3.0/harness/linter.py +193 -0
  153. flywheel_verify-0.3.0/harness/live_feeds.py +107 -0
  154. flywheel_verify-0.3.0/harness/local_agent.py +360 -0
  155. flywheel_verify-0.3.0/harness/local_agent_cli.py +190 -0
  156. flywheel_verify-0.3.0/harness/local_git.py +56 -0
  157. flywheel_verify-0.3.0/harness/local_loop.py +294 -0
  158. flywheel_verify-0.3.0/harness/local_mcp.py +119 -0
  159. flywheel_verify-0.3.0/harness/local_repomap.py +144 -0
  160. flywheel_verify-0.3.0/harness/local_session.py +89 -0
  161. flywheel_verify-0.3.0/harness/local_tools.py +493 -0
  162. flywheel_verify-0.3.0/harness/loop.py +231 -0
  163. flywheel_verify-0.3.0/harness/loop_closure.py +162 -0
  164. flywheel_verify-0.3.0/harness/loops.py +315 -0
  165. flywheel_verify-0.3.0/harness/lsp_bridge.py +203 -0
  166. flywheel_verify-0.3.0/harness/lsp_diagnostics.py +42 -0
  167. flywheel_verify-0.3.0/harness/manim_lesson.py +119 -0
  168. flywheel_verify-0.3.0/harness/map_elites.py +89 -0
  169. flywheel_verify-0.3.0/harness/marketplace.py +213 -0
  170. flywheel_verify-0.3.0/harness/matmul_oracle.py +176 -0
  171. flywheel_verify-0.3.0/harness/mcp_client.py +223 -0
  172. flywheel_verify-0.3.0/harness/mcts.py +137 -0
  173. flywheel_verify-0.3.0/harness/measurement_oracle.py +231 -0
  174. flywheel_verify-0.3.0/harness/membudget.py +109 -0
  175. flywheel_verify-0.3.0/harness/memory_api.py +55 -0
  176. flywheel_verify-0.3.0/harness/merkle.py +208 -0
  177. flywheel_verify-0.3.0/harness/messages_api.py +131 -0
  178. flywheel_verify-0.3.0/harness/model_card_claims.py +311 -0
  179. flywheel_verify-0.3.0/harness/model_profiles.py +96 -0
  180. flywheel_verify-0.3.0/harness/model_router.py +214 -0
  181. flywheel_verify-0.3.0/harness/model_shim.py +215 -0
  182. flywheel_verify-0.3.0/harness/oracle.py +262 -0
  183. flywheel_verify-0.3.0/harness/oracle_qa.py +248 -0
  184. flywheel_verify-0.3.0/harness/oracle_registry.py +165 -0
  185. flywheel_verify-0.3.0/harness/parity.py +161 -0
  186. flywheel_verify-0.3.0/harness/perception_probe.py +168 -0
  187. flywheel_verify-0.3.0/harness/pipeline.py +68 -0
  188. flywheel_verify-0.3.0/harness/plugins.py +199 -0
  189. flywheel_verify-0.3.0/harness/policy.py +147 -0
  190. flywheel_verify-0.3.0/harness/pool.py +224 -0
  191. flywheel_verify-0.3.0/harness/pool_arms.py +281 -0
  192. flywheel_verify-0.3.0/harness/profiles.py +150 -0
  193. flywheel_verify-0.3.0/harness/projects.py +101 -0
  194. flywheel_verify-0.3.0/harness/prompt_forge.py +194 -0
  195. flywheel_verify-0.3.0/harness/proof_cache.py +83 -0
  196. flywheel_verify-0.3.0/harness/proposer.py +159 -0
  197. flywheel_verify-0.3.0/harness/provenance_trace.py +90 -0
  198. flywheel_verify-0.3.0/harness/provider_roles.py +92 -0
  199. flywheel_verify-0.3.0/harness/providers.py +104 -0
  200. flywheel_verify-0.3.0/harness/publish_lint.py +243 -0
  201. flywheel_verify-0.3.0/harness/qa_mutations.py +231 -0
  202. flywheel_verify-0.3.0/harness/quality_duel.py +108 -0
  203. flywheel_verify-0.3.0/harness/quant_dither.py +104 -0
  204. flywheel_verify-0.3.0/harness/quorum.py +132 -0
  205. flywheel_verify-0.3.0/harness/raster_fx.py +129 -0
  206. flywheel_verify-0.3.0/harness/receipt.py +287 -0
  207. flywheel_verify-0.3.0/harness/receipt_fields.py +245 -0
  208. flywheel_verify-0.3.0/harness/receipt_sign.py +170 -0
  209. flywheel_verify-0.3.0/harness/reheater.py +148 -0
  210. flywheel_verify-0.3.0/harness/release_readiness.py +96 -0
  211. flywheel_verify-0.3.0/harness/render.py +158 -0
  212. flywheel_verify-0.3.0/harness/retention.py +97 -0
  213. flywheel_verify-0.3.0/harness/retro_cgi.py +123 -0
  214. flywheel_verify-0.3.0/harness/risk_review.py +112 -0
  215. flywheel_verify-0.3.0/harness/rl_from_oracle.py +283 -0
  216. flywheel_verify-0.3.0/harness/router.py +108 -0
  217. flywheel_verify-0.3.0/harness/router_agent.py +182 -0
  218. flywheel_verify-0.3.0/harness/router_stats.py +147 -0
  219. flywheel_verify-0.3.0/harness/run_paths.py +36 -0
  220. flywheel_verify-0.3.0/harness/run_review.py +116 -0
  221. flywheel_verify-0.3.0/harness/scaffold.py +123 -0
  222. flywheel_verify-0.3.0/harness/schema_trace_intake.py +185 -0
  223. flywheel_verify-0.3.0/harness/schematic_drift.py +177 -0
  224. flywheel_verify-0.3.0/harness/science_bench.py +150 -0
  225. flywheel_verify-0.3.0/harness/scout.py +137 -0
  226. flywheel_verify-0.3.0/harness/search.py +110 -0
  227. flywheel_verify-0.3.0/harness/second_brain.py +71 -0
  228. flywheel_verify-0.3.0/harness/selector.py +300 -0
  229. flywheel_verify-0.3.0/harness/selector_probe.py +293 -0
  230. flywheel_verify-0.3.0/harness/serve.py +420 -0
  231. flywheel_verify-0.3.0/harness/session_tools.py +219 -0
  232. flywheel_verify-0.3.0/harness/shell_admission.py +138 -0
  233. flywheel_verify-0.3.0/harness/shell_parse.py +262 -0
  234. flywheel_verify-0.3.0/harness/silhouette.py +171 -0
  235. flywheel_verify-0.3.0/harness/sound_studio.py +133 -0
  236. flywheel_verify-0.3.0/harness/source_mined_bench.py +974 -0
  237. flywheel_verify-0.3.0/harness/spacing_scheduler.py +56 -0
  238. flywheel_verify-0.3.0/harness/statistics.py +188 -0
  239. flywheel_verify-0.3.0/harness/store.py +257 -0
  240. flywheel_verify-0.3.0/harness/structure_mapping.py +79 -0
  241. flywheel_verify-0.3.0/harness/subscription_auth.py +228 -0
  242. flywheel_verify-0.3.0/harness/suite_audit.py +135 -0
  243. flywheel_verify-0.3.0/harness/superproject.py +143 -0
  244. flywheel_verify-0.3.0/harness/task.py +70 -0
  245. flywheel_verify-0.3.0/harness/task_curator.py +292 -0
  246. flywheel_verify-0.3.0/harness/tasks_expert.py +169 -0
  247. flywheel_verify-0.3.0/harness/tasks_hard.py +230 -0
  248. flywheel_verify-0.3.0/harness/tasks_lib.py +156 -0
  249. flywheel_verify-0.3.0/harness/tasks_physics.py +461 -0
  250. flywheel_verify-0.3.0/harness/telemetry.py +115 -0
  251. flywheel_verify-0.3.0/harness/telos_kernels.py +75 -0
  252. flywheel_verify-0.3.0/harness/tension_ledger.py +93 -0
  253. flywheel_verify-0.3.0/harness/tool_call_receipt.py +339 -0
  254. flywheel_verify-0.3.0/harness/tool_receipts.py +57 -0
  255. flywheel_verify-0.3.0/harness/tool_rescue.py +80 -0
  256. flywheel_verify-0.3.0/harness/train_surface.py +102 -0
  257. flywheel_verify-0.3.0/harness/trainer_diagnostics.py +187 -0
  258. flywheel_verify-0.3.0/harness/training_lane.py +216 -0
  259. flywheel_verify-0.3.0/harness/trajectory_curator.py +197 -0
  260. flywheel_verify-0.3.0/harness/trajectory_intake.py +168 -0
  261. flywheel_verify-0.3.0/harness/transitive_witness.py +243 -0
  262. flywheel_verify-0.3.0/harness/transparency_log.py +85 -0
  263. flywheel_verify-0.3.0/harness/transpile.py +131 -0
  264. flywheel_verify-0.3.0/harness/tree_head.py +165 -0
  265. flywheel_verify-0.3.0/harness/trustcard.py +83 -0
  266. flywheel_verify-0.3.0/harness/turbulence.py +112 -0
  267. flywheel_verify-0.3.0/harness/typeface_family.py +120 -0
  268. flywheel_verify-0.3.0/harness/typeface_forge.py +259 -0
  269. flywheel_verify-0.3.0/harness/typeface_gallery.py +79 -0
  270. flywheel_verify-0.3.0/harness/typeface_skeletons.py +504 -0
  271. flywheel_verify-0.3.0/harness/typeface_ttf.py +209 -0
  272. flywheel_verify-0.3.0/harness/typeface_variable.py +250 -0
  273. flywheel_verify-0.3.0/harness/unicode_guard.py +216 -0
  274. flywheel_verify-0.3.0/harness/unisonai_stateful_bench.py +559 -0
  275. flywheel_verify-0.3.0/harness/uplift_bench.py +268 -0
  276. flywheel_verify-0.3.0/harness/valve_flywheel.py +91 -0
  277. flywheel_verify-0.3.0/harness/verdict.py +89 -0
  278. flywheel_verify-0.3.0/harness/verify_receipt.py +51 -0
  279. flywheel_verify-0.3.0/harness/web_snapshot.py +188 -0
  280. flywheel_verify-0.3.0/harness/why.py +216 -0
  281. flywheel_verify-0.3.0/harness/wiki.py +274 -0
  282. flywheel_verify-0.3.0/harness/witness.py +53 -0
  283. flywheel_verify-0.3.0/harness/workflows.py +271 -0
  284. flywheel_verify-0.3.0/harness/workspace_lens.py +71 -0
  285. flywheel_verify-0.3.0/harness/workspace_state.py +54 -0
  286. flywheel_verify-0.3.0/harness/worktree_preflight.py +101 -0
  287. flywheel_verify-0.3.0/harness/world.py +150 -0
  288. flywheel_verify-0.3.0/pyproject.toml +52 -0
  289. flywheel_verify-0.3.0/setup.cfg +4 -0
  290. flywheel_verify-0.3.0/tests/test_academy_pipeline.py +99 -0
  291. flywheel_verify-0.3.0/tests/test_accept_path_purity.py +75 -0
  292. flywheel_verify-0.3.0/tests/test_acceptance_criteria.py +125 -0
  293. flywheel_verify-0.3.0/tests/test_accountability_bench.py +52 -0
  294. flywheel_verify-0.3.0/tests/test_adapter_runtime_matrix.py +106 -0
  295. flywheel_verify-0.3.0/tests/test_adaptive_select.py +222 -0
  296. flywheel_verify-0.3.0/tests/test_adjudicate_k5_forecast.py +59 -0
  297. flywheel_verify-0.3.0/tests/test_advantages.py +49 -0
  298. flywheel_verify-0.3.0/tests/test_adversarial_corpus.py +63 -0
  299. flywheel_verify-0.3.0/tests/test_agent_tools.py +144 -0
  300. flywheel_verify-0.3.0/tests/test_agentic_task_set_manifest.py +76 -0
  301. flywheel_verify-0.3.0/tests/test_anchor_confirmatory.py +153 -0
  302. flywheel_verify-0.3.0/tests/test_arc_agi3.py +100 -0
  303. flywheel_verify-0.3.0/tests/test_asymmetry.py +55 -0
  304. flywheel_verify-0.3.0/tests/test_attestation.py +105 -0
  305. flywheel_verify-0.3.0/tests/test_audit_checkers.py +159 -0
  306. flywheel_verify-0.3.0/tests/test_audit_fixes.py +109 -0
  307. flywheel_verify-0.3.0/tests/test_authorization_cost.py +57 -0
  308. flywheel_verify-0.3.0/tests/test_backflow.py +42 -0
  309. flywheel_verify-0.3.0/tests/test_behavioral_monitor.py +62 -0
  310. flywheel_verify-0.3.0/tests/test_benchmark_ci.py +81 -0
  311. flywheel_verify-0.3.0/tests/test_benchmark_execution_matrix.py +92 -0
  312. flywheel_verify-0.3.0/tests/test_benchmark_hygiene.py +62 -0
  313. flywheel_verify-0.3.0/tests/test_benchmark_profile_coverage.py +589 -0
  314. flywheel_verify-0.3.0/tests/test_benchmark_profile_manifest.py +87 -0
  315. flywheel_verify-0.3.0/tests/test_benchmark_receipts.py +46 -0
  316. flywheel_verify-0.3.0/tests/test_bm25_retrieval.py +75 -0
  317. flywheel_verify-0.3.0/tests/test_boot.py +100 -0
  318. flywheel_verify-0.3.0/tests/test_brand_kit.py +70 -0
  319. flywheel_verify-0.3.0/tests/test_budget_control.py +56 -0
  320. flywheel_verify-0.3.0/tests/test_bundle.py +303 -0
  321. flywheel_verify-0.3.0/tests/test_cache.py +87 -0
  322. flywheel_verify-0.3.0/tests/test_calibration.py +68 -0
  323. flywheel_verify-0.3.0/tests/test_canary_tripwire.py +76 -0
  324. flywheel_verify-0.3.0/tests/test_certificate_base.py +220 -0
  325. flywheel_verify-0.3.0/tests/test_chain.py +133 -0
  326. flywheel_verify-0.3.0/tests/test_chain_rewitness.py +62 -0
  327. flywheel_verify-0.3.0/tests/test_changelog_refs.py +90 -0
  328. flywheel_verify-0.3.0/tests/test_check_writing.py +284 -0
  329. flywheel_verify-0.3.0/tests/test_chorus_bridge.py +93 -0
  330. flywheel_verify-0.3.0/tests/test_ci_shard.py +122 -0
  331. flywheel_verify-0.3.0/tests/test_citation_verify.py +57 -0
  332. flywheel_verify-0.3.0/tests/test_claim_language.py +101 -0
  333. flywheel_verify-0.3.0/tests/test_classifier_friction_benchmark.py +89 -0
  334. flywheel_verify-0.3.0/tests/test_cli.py +52 -0
  335. flywheel_verify-0.3.0/tests/test_closed_loop_benchmark_seed.py +433 -0
  336. flywheel_verify-0.3.0/tests/test_closed_loop_outcome_report.py +1557 -0
  337. flywheel_verify-0.3.0/tests/test_codex_mcp_launch_contract.py +57 -0
  338. flywheel_verify-0.3.0/tests/test_compaction.py +176 -0
  339. flywheel_verify-0.3.0/tests/test_companion.py +246 -0
  340. flywheel_verify-0.3.0/tests/test_comprehension_ledger.py +127 -0
  341. flywheel_verify-0.3.0/tests/test_compute_arms.py +203 -0
  342. flywheel_verify-0.3.0/tests/test_compute_endpoint.py +249 -0
  343. flywheel_verify-0.3.0/tests/test_confirmatory_walk_guard.py +147 -0
  344. flywheel_verify-0.3.0/tests/test_conjecture_forge.py +176 -0
  345. flywheel_verify-0.3.0/tests/test_consensus.py +111 -0
  346. flywheel_verify-0.3.0/tests/test_consensus_select.py +57 -0
  347. flywheel_verify-0.3.0/tests/test_consistency.py +221 -0
  348. flywheel_verify-0.3.0/tests/test_contest.py +310 -0
  349. flywheel_verify-0.3.0/tests/test_context_envelope.py +70 -0
  350. flywheel_verify-0.3.0/tests/test_context_forge.py +88 -0
  351. flywheel_verify-0.3.0/tests/test_context_governor.py +132 -0
  352. flywheel_verify-0.3.0/tests/test_context_inventory.py +39 -0
  353. flywheel_verify-0.3.0/tests/test_context_manifest.py +60 -0
  354. flywheel_verify-0.3.0/tests/test_corpus_export.py +81 -0
  355. flywheel_verify-0.3.0/tests/test_creative_graph.py +166 -0
  356. flywheel_verify-0.3.0/tests/test_creative_pipeline.py +81 -0
  357. flywheel_verify-0.3.0/tests/test_credo.py +21 -0
  358. flywheel_verify-0.3.0/tests/test_criterion_registry.py +249 -0
  359. flywheel_verify-0.3.0/tests/test_criterion_spec.py +172 -0
  360. flywheel_verify-0.3.0/tests/test_criterion_versioning.py +65 -0
  361. flywheel_verify-0.3.0/tests/test_cross_domain.py +28 -0
  362. flywheel_verify-0.3.0/tests/test_cross_harness_manifest.py +86 -0
  363. flywheel_verify-0.3.0/tests/test_crossing.py +292 -0
  364. flywheel_verify-0.3.0/tests/test_crypto_signatures.py +151 -0
  365. flywheel_verify-0.3.0/tests/test_data_flywheel.py +69 -0
  366. flywheel_verify-0.3.0/tests/test_dataset_receipt.py +125 -0
  367. flywheel_verify-0.3.0/tests/test_demo_prompt.py +147 -0
  368. flywheel_verify-0.3.0/tests/test_demo_proposer.py +246 -0
  369. flywheel_verify-0.3.0/tests/test_demo_recorder.py +118 -0
  370. flywheel_verify-0.3.0/tests/test_design_studio.py +91 -0
  371. flywheel_verify-0.3.0/tests/test_determinism_pins.py +300 -0
  372. flywheel_verify-0.3.0/tests/test_developmental.py +71 -0
  373. flywheel_verify-0.3.0/tests/test_discovery_flywheel.py +159 -0
  374. flywheel_verify-0.3.0/tests/test_domain_general_ablation.py +19 -0
  375. flywheel_verify-0.3.0/tests/test_ed25519_verify.py +206 -0
  376. flywheel_verify-0.3.0/tests/test_effort.py +40 -0
  377. flywheel_verify-0.3.0/tests/test_embodied_realtime_multimodal_plan.py +73 -0
  378. flywheel_verify-0.3.0/tests/test_endpoint.py +199 -0
  379. flywheel_verify-0.3.0/tests/test_endpoint_registry.py +195 -0
  380. flywheel_verify-0.3.0/tests/test_endpoints.py +152 -0
  381. flywheel_verify-0.3.0/tests/test_enterprise_flywheel.py +63 -0
  382. flywheel_verify-0.3.0/tests/test_enterprise_readiness_report.py +59 -0
  383. flywheel_verify-0.3.0/tests/test_envelope_interop.py +60 -0
  384. flywheel_verify-0.3.0/tests/test_envelope_verdict_binding.py +71 -0
  385. flywheel_verify-0.3.0/tests/test_escalation.py +119 -0
  386. flywheel_verify-0.3.0/tests/test_eval.py +121 -0
  387. flywheel_verify-0.3.0/tests/test_eval_engineering.py +115 -0
  388. flywheel_verify-0.3.0/tests/test_eval_scorecard.py +38 -0
  389. flywheel_verify-0.3.0/tests/test_eval_store.py +171 -0
  390. flywheel_verify-0.3.0/tests/test_evolutionary_flywheel.py +59 -0
  391. flywheel_verify-0.3.0/tests/test_evolve.py +149 -0
  392. flywheel_verify-0.3.0/tests/test_exec_oracle.py +271 -0
  393. flywheel_verify-0.3.0/tests/test_explanation_gate.py +91 -0
  394. flywheel_verify-0.3.0/tests/test_externalization_ablation.py +27 -0
  395. flywheel_verify-0.3.0/tests/test_extract.py +37 -0
  396. flywheel_verify-0.3.0/tests/test_failure_corpus.py +75 -0
  397. flywheel_verify-0.3.0/tests/test_faithfulness_gate.py +63 -0
  398. flywheel_verify-0.3.0/tests/test_fan_out.py +82 -0
  399. flywheel_verify-0.3.0/tests/test_feeds.py +69 -0
  400. flywheel_verify-0.3.0/tests/test_fenced_extract.py +182 -0
  401. flywheel_verify-0.3.0/tests/test_field_studio.py +58 -0
  402. flywheel_verify-0.3.0/tests/test_file_backed_store.py +59 -0
  403. flywheel_verify-0.3.0/tests/test_file_gate.py +129 -0
  404. flywheel_verify-0.3.0/tests/test_findings.py +154 -0
  405. flywheel_verify-0.3.0/tests/test_fluid_router.py +54 -0
  406. flywheel_verify-0.3.0/tests/test_flywheel.py +88 -0
  407. flywheel_verify-0.3.0/tests/test_flywheel_integration_benchmark.py +13 -0
  408. flywheel_verify-0.3.0/tests/test_fold_index.py +132 -0
  409. flywheel_verify-0.3.0/tests/test_forecast_bootstrap.py +52 -0
  410. flywheel_verify-0.3.0/tests/test_forecast_shrinkage.py +41 -0
  411. flywheel_verify-0.3.0/tests/test_forge_seal.py +80 -0
  412. flywheel_verify-0.3.0/tests/test_forum_route_receipts.py +43 -0
  413. flywheel_verify-0.3.0/tests/test_frontier.py +80 -0
  414. flywheel_verify-0.3.0/tests/test_gate_end_to_end.py +87 -0
  415. flywheel_verify-0.3.0/tests/test_gateway.py +818 -0
  416. flywheel_verify-0.3.0/tests/test_gateway_auth.py +112 -0
  417. flywheel_verify-0.3.0/tests/test_gather_readiness.py +55 -0
  418. flywheel_verify-0.3.0/tests/test_governance_envelope.py +179 -0
  419. flywheel_verify-0.3.0/tests/test_governance_interop.py +72 -0
  420. flywheel_verify-0.3.0/tests/test_governance_tadr.py +339 -0
  421. flywheel_verify-0.3.0/tests/test_grounding_closure.py +137 -0
  422. flywheel_verify-0.3.0/tests/test_hard_as_data.py +99 -0
  423. flywheel_verify-0.3.0/tests/test_hard_lane.py +50 -0
  424. flywheel_verify-0.3.0/tests/test_hard_lane_seed.py +61 -0
  425. flywheel_verify-0.3.0/tests/test_hard_v3_upgrades.py +53 -0
  426. flywheel_verify-0.3.0/tests/test_harness_architecture_report.py +250 -0
  427. flywheel_verify-0.3.0/tests/test_harness_cli.py +851 -0
  428. flywheel_verify-0.3.0/tests/test_harness_comparison_report.py +135 -0
  429. flywheel_verify-0.3.0/tests/test_harness_store_query.py +38 -0
  430. flywheel_verify-0.3.0/tests/test_hedging.py +62 -0
  431. flywheel_verify-0.3.0/tests/test_held_out_gate.py +78 -0
  432. flywheel_verify-0.3.0/tests/test_huggingface_release_stage.py +197 -0
  433. flywheel_verify-0.3.0/tests/test_import_adapters.py +76 -0
  434. flywheel_verify-0.3.0/tests/test_independent_checker.py +236 -0
  435. flywheel_verify-0.3.0/tests/test_infra_cloud_iam.py +230 -0
  436. flywheel_verify-0.3.0/tests/test_infra_correlator_bom.py +271 -0
  437. flywheel_verify-0.3.0/tests/test_infra_egress.py +182 -0
  438. flywheel_verify-0.3.0/tests/test_infra_lean_adapter.py +84 -0
  439. flywheel_verify-0.3.0/tests/test_infra_native_detect.py +175 -0
  440. flywheel_verify-0.3.0/tests/test_infra_remaining.py +163 -0
  441. flywheel_verify-0.3.0/tests/test_infra_trust_acquisition.py +204 -0
  442. flywheel_verify-0.3.0/tests/test_injection_probe.py +73 -0
  443. flywheel_verify-0.3.0/tests/test_instance_binding.py +118 -0
  444. flywheel_verify-0.3.0/tests/test_intake.py +74 -0
  445. flywheel_verify-0.3.0/tests/test_integrity.py +144 -0
  446. flywheel_verify-0.3.0/tests/test_inversion_flywheel.py +35 -0
  447. flywheel_verify-0.3.0/tests/test_kernel_oracle.py +85 -0
  448. flywheel_verify-0.3.0/tests/test_keychain.py +60 -0
  449. flywheel_verify-0.3.0/tests/test_knowledge_graph.py +113 -0
  450. flywheel_verify-0.3.0/tests/test_knowledge_monitor.py +94 -0
  451. flywheel_verify-0.3.0/tests/test_lane_caller.py +113 -0
  452. flywheel_verify-0.3.0/tests/test_lane_launch.py +78 -0
  453. flywheel_verify-0.3.0/tests/test_lanes.py +111 -0
  454. flywheel_verify-0.3.0/tests/test_lean_oracle.py +137 -0
  455. flywheel_verify-0.3.0/tests/test_lean_oracle_adapter.py +115 -0
  456. flywheel_verify-0.3.0/tests/test_ledger.py +349 -0
  457. flywheel_verify-0.3.0/tests/test_lesson.py +274 -0
  458. flywheel_verify-0.3.0/tests/test_lesson_gateway.py +139 -0
  459. flywheel_verify-0.3.0/tests/test_lesson_interop.py +196 -0
  460. flywheel_verify-0.3.0/tests/test_lesson_mappers.py +158 -0
  461. flywheel_verify-0.3.0/tests/test_lesson_mappers_drift_misconception.py +220 -0
  462. flywheel_verify-0.3.0/tests/test_lesson_pattern_detection.py +159 -0
  463. flywheel_verify-0.3.0/tests/test_lesson_store.py +197 -0
  464. flywheel_verify-0.3.0/tests/test_lesson_transitions.py +164 -0
  465. flywheel_verify-0.3.0/tests/test_linter.py +58 -0
  466. flywheel_verify-0.3.0/tests/test_live_feeds.py +71 -0
  467. flywheel_verify-0.3.0/tests/test_local_agent.py +176 -0
  468. flywheel_verify-0.3.0/tests/test_local_agentic.py +290 -0
  469. flywheel_verify-0.3.0/tests/test_local_git.py +62 -0
  470. flywheel_verify-0.3.0/tests/test_local_mcp.py +58 -0
  471. flywheel_verify-0.3.0/tests/test_local_model_launch_readiness.py +109 -0
  472. flywheel_verify-0.3.0/tests/test_local_model_resource_preflight.py +84 -0
  473. flywheel_verify-0.3.0/tests/test_local_model_serve_launcher.py +96 -0
  474. flywheel_verify-0.3.0/tests/test_local_repomap.py +66 -0
  475. flywheel_verify-0.3.0/tests/test_loop_closure.py +92 -0
  476. flywheel_verify-0.3.0/tests/test_loop_criteria.py +225 -0
  477. flywheel_verify-0.3.0/tests/test_loops.py +106 -0
  478. flywheel_verify-0.3.0/tests/test_lsp_bridge.py +82 -0
  479. flywheel_verify-0.3.0/tests/test_lsp_diagnostics.py +47 -0
  480. flywheel_verify-0.3.0/tests/test_m1_falsifier.py +66 -0
  481. flywheel_verify-0.3.0/tests/test_manim_lesson.py +61 -0
  482. flywheel_verify-0.3.0/tests/test_map_elites.py +89 -0
  483. flywheel_verify-0.3.0/tests/test_marketplace.py +87 -0
  484. flywheel_verify-0.3.0/tests/test_matmul_oracle.py +88 -0
  485. flywheel_verify-0.3.0/tests/test_mcp_client.py +142 -0
  486. flywheel_verify-0.3.0/tests/test_mcp_tool_health_receipts.py +57 -0
  487. flywheel_verify-0.3.0/tests/test_mcts.py +181 -0
  488. flywheel_verify-0.3.0/tests/test_measurement_oracle.py +180 -0
  489. flywheel_verify-0.3.0/tests/test_membudget.py +70 -0
  490. flywheel_verify-0.3.0/tests/test_memory_api.py +60 -0
  491. flywheel_verify-0.3.0/tests/test_merkle.py +52 -0
  492. flywheel_verify-0.3.0/tests/test_merkle_known_answers.py +191 -0
  493. flywheel_verify-0.3.0/tests/test_messages_api.py +160 -0
  494. flywheel_verify-0.3.0/tests/test_model_card_claim_table.py +120 -0
  495. flywheel_verify-0.3.0/tests/test_model_endpoint_gate.py +249 -0
  496. flywheel_verify-0.3.0/tests/test_model_endpoint_profiles.py +121 -0
  497. flywheel_verify-0.3.0/tests/test_model_publish_plan.py +120 -0
  498. flywheel_verify-0.3.0/tests/test_model_release_readiness.py +176 -0
  499. flywheel_verify-0.3.0/tests/test_model_repo_stage.py +160 -0
  500. flywheel_verify-0.3.0/tests/test_model_routing.py +238 -0
  501. flywheel_verify-0.3.0/tests/test_model_shim.py +186 -0
  502. flywheel_verify-0.3.0/tests/test_no_aggregate_over_the_person.py +158 -0
  503. flywheel_verify-0.3.0/tests/test_oracle_conformance.py +45 -0
  504. flywheel_verify-0.3.0/tests/test_oracle_env_boundary.py +32 -0
  505. flywheel_verify-0.3.0/tests/test_oracle_hostile_candidate.py +37 -0
  506. flywheel_verify-0.3.0/tests/test_oracle_qa.py +281 -0
  507. flywheel_verify-0.3.0/tests/test_oracle_registry.py +125 -0
  508. flywheel_verify-0.3.0/tests/test_oracle_verdict_widening.py +55 -0
  509. flywheel_verify-0.3.0/tests/test_package_ship_doctor.py +152 -0
  510. flywheel_verify-0.3.0/tests/test_parity.py +55 -0
  511. flywheel_verify-0.3.0/tests/test_passn_forecast.py +80 -0
  512. flywheel_verify-0.3.0/tests/test_passn_model.py +103 -0
  513. flywheel_verify-0.3.0/tests/test_perception_probe.py +83 -0
  514. flywheel_verify-0.3.0/tests/test_perturb_instances.py +178 -0
  515. flywheel_verify-0.3.0/tests/test_pipeline.py +71 -0
  516. flywheel_verify-0.3.0/tests/test_plugins.py +73 -0
  517. flywheel_verify-0.3.0/tests/test_policy.py +91 -0
  518. flywheel_verify-0.3.0/tests/test_pool.py +206 -0
  519. flywheel_verify-0.3.0/tests/test_pool_arms.py +233 -0
  520. flywheel_verify-0.3.0/tests/test_prereg_event.py +203 -0
  521. flywheel_verify-0.3.0/tests/test_probe_tool_specs.py +61 -0
  522. flywheel_verify-0.3.0/tests/test_profiles_workflows.py +246 -0
  523. flywheel_verify-0.3.0/tests/test_projects_index.py +52 -0
  524. flywheel_verify-0.3.0/tests/test_prompt_canonical.py +75 -0
  525. flywheel_verify-0.3.0/tests/test_prompt_forge.py +92 -0
  526. flywheel_verify-0.3.0/tests/test_proof_cache.py +164 -0
  527. flywheel_verify-0.3.0/tests/test_provenance_cache.py +55 -0
  528. flywheel_verify-0.3.0/tests/test_provenance_trace.py +53 -0
  529. flywheel_verify-0.3.0/tests/test_provider_roles.py +63 -0
  530. flywheel_verify-0.3.0/tests/test_providers.py +113 -0
  531. flywheel_verify-0.3.0/tests/test_public_instructions.py +260 -0
  532. flywheel_verify-0.3.0/tests/test_publish_lint.py +92 -0
  533. flywheel_verify-0.3.0/tests/test_publish_to_huggingface.py +75 -0
  534. flywheel_verify-0.3.0/tests/test_pytest_oracle_skip.py +36 -0
  535. flywheel_verify-0.3.0/tests/test_python_floor.py +129 -0
  536. flywheel_verify-0.3.0/tests/test_qa_gated_admission.py +129 -0
  537. flywheel_verify-0.3.0/tests/test_qcr_amplitude_manifest.py +458 -0
  538. flywheel_verify-0.3.0/tests/test_quality_duel.py +89 -0
  539. flywheel_verify-0.3.0/tests/test_quant_dither.py +85 -0
  540. flywheel_verify-0.3.0/tests/test_quorum.py +140 -0
  541. flywheel_verify-0.3.0/tests/test_raster_fx.py +77 -0
  542. flywheel_verify-0.3.0/tests/test_rationale_preamble.py +140 -0
  543. flywheel_verify-0.3.0/tests/test_receipt_denominator_v3.py +292 -0
  544. flywheel_verify-0.3.0/tests/test_receipt_sign.py +276 -0
  545. flywheel_verify-0.3.0/tests/test_receipt_store_sinks.py +57 -0
  546. flywheel_verify-0.3.0/tests/test_receipt_v2.py +276 -0
  547. flywheel_verify-0.3.0/tests/test_receipts_ledger.py +76 -0
  548. flywheel_verify-0.3.0/tests/test_reheater.py +100 -0
  549. flywheel_verify-0.3.0/tests/test_release_readiness.py +98 -0
  550. flywheel_verify-0.3.0/tests/test_render.py +161 -0
  551. flywheel_verify-0.3.0/tests/test_render_report.py +173 -0
  552. flywheel_verify-0.3.0/tests/test_research_theses.py +123 -0
  553. flywheel_verify-0.3.0/tests/test_retention_and_ttva.py +96 -0
  554. flywheel_verify-0.3.0/tests/test_risk_review.py +62 -0
  555. flywheel_verify-0.3.0/tests/test_rl_from_oracle.py +143 -0
  556. flywheel_verify-0.3.0/tests/test_rl_group_sampling.py +141 -0
  557. flywheel_verify-0.3.0/tests/test_router.py +62 -0
  558. flywheel_verify-0.3.0/tests/test_router_agent.py +135 -0
  559. flywheel_verify-0.3.0/tests/test_router_stats.py +126 -0
  560. flywheel_verify-0.3.0/tests/test_routing_receipt.py +35 -0
  561. flywheel_verify-0.3.0/tests/test_run_acceptance_command.py +254 -0
  562. flywheel_verify-0.3.0/tests/test_run_acceptance_command_hardening.py +181 -0
  563. flywheel_verify-0.3.0/tests/test_run_demo_pool.py +277 -0
  564. flywheel_verify-0.3.0/tests/test_run_demo_pool_extraction.py +186 -0
  565. flywheel_verify-0.3.0/tests/test_run_index_receipt.py +169 -0
  566. flywheel_verify-0.3.0/tests/test_run_paths.py +40 -0
  567. flywheel_verify-0.3.0/tests/test_run_review.py +124 -0
  568. flywheel_verify-0.3.0/tests/test_rung_digests.py +257 -0
  569. flywheel_verify-0.3.0/tests/test_rung_pins.py +118 -0
  570. flywheel_verify-0.3.0/tests/test_runtime_activation_contract.py +44 -0
  571. flywheel_verify-0.3.0/tests/test_scaffold.py +113 -0
  572. flywheel_verify-0.3.0/tests/test_schema_trace_intake.py +127 -0
  573. flywheel_verify-0.3.0/tests/test_schematic_drift_check.py +53 -0
  574. flywheel_verify-0.3.0/tests/test_science_bench.py +155 -0
  575. flywheel_verify-0.3.0/tests/test_scout.py +98 -0
  576. flywheel_verify-0.3.0/tests/test_scout_calibration.py +98 -0
  577. flywheel_verify-0.3.0/tests/test_sealed_claims_preimage.py +46 -0
  578. flywheel_verify-0.3.0/tests/test_search.py +115 -0
  579. flywheel_verify-0.3.0/tests/test_search_integration.py +83 -0
  580. flywheel_verify-0.3.0/tests/test_second_brain.py +66 -0
  581. flywheel_verify-0.3.0/tests/test_selector.py +332 -0
  582. flywheel_verify-0.3.0/tests/test_serve_receipts.py +88 -0
  583. flywheel_verify-0.3.0/tests/test_session_ingest.py +38 -0
  584. flywheel_verify-0.3.0/tests/test_session_tools.py +157 -0
  585. flywheel_verify-0.3.0/tests/test_shell_admission.py +192 -0
  586. flywheel_verify-0.3.0/tests/test_silhouette.py +44 -0
  587. flywheel_verify-0.3.0/tests/test_snapshot_blockpage.py +70 -0
  588. flywheel_verify-0.3.0/tests/test_sound_studio.py +54 -0
  589. flywheel_verify-0.3.0/tests/test_spacing_scheduler.py +47 -0
  590. flywheel_verify-0.3.0/tests/test_statistics.py +156 -0
  591. flywheel_verify-0.3.0/tests/test_store.py +130 -0
  592. flywheel_verify-0.3.0/tests/test_structure_mapping.py +60 -0
  593. flywheel_verify-0.3.0/tests/test_subscription_auth.py +228 -0
  594. flywheel_verify-0.3.0/tests/test_suite_audit.py +90 -0
  595. flywheel_verify-0.3.0/tests/test_superproject.py +47 -0
  596. flywheel_verify-0.3.0/tests/test_task_curator.py +279 -0
  597. flywheel_verify-0.3.0/tests/test_tasks_expert.py +28 -0
  598. flywheel_verify-0.3.0/tests/test_tasks_hard.py +35 -0
  599. flywheel_verify-0.3.0/tests/test_tasks_lib.py +66 -0
  600. flywheel_verify-0.3.0/tests/test_tasks_physics.py +101 -0
  601. flywheel_verify-0.3.0/tests/test_telos_kernels.py +52 -0
  602. flywheel_verify-0.3.0/tests/test_tension_ledger.py +110 -0
  603. flywheel_verify-0.3.0/tests/test_tool_call_receipt.py +280 -0
  604. flywheel_verify-0.3.0/tests/test_tool_call_receipt_integration.py +100 -0
  605. flywheel_verify-0.3.0/tests/test_tool_hardening_plan.py +135 -0
  606. flywheel_verify-0.3.0/tests/test_tool_integration_contract.py +50 -0
  607. flywheel_verify-0.3.0/tests/test_tool_operator_guide.py +38 -0
  608. flywheel_verify-0.3.0/tests/test_tool_readiness_receipts.py +51 -0
  609. flywheel_verify-0.3.0/tests/test_tool_receipts.py +66 -0
  610. flywheel_verify-0.3.0/tests/test_tool_rescue.py +54 -0
  611. flywheel_verify-0.3.0/tests/test_train_surface.py +48 -0
  612. flywheel_verify-0.3.0/tests/test_train_surface_uplift.py +45 -0
  613. flywheel_verify-0.3.0/tests/test_trainer_diagnostics.py +226 -0
  614. flywheel_verify-0.3.0/tests/test_training_lane.py +186 -0
  615. flywheel_verify-0.3.0/tests/test_trajectory_curator.py +141 -0
  616. flywheel_verify-0.3.0/tests/test_trajectory_intake.py +104 -0
  617. flywheel_verify-0.3.0/tests/test_transitive_integration.py +79 -0
  618. flywheel_verify-0.3.0/tests/test_transitive_witness.py +114 -0
  619. flywheel_verify-0.3.0/tests/test_transparency_log.py +55 -0
  620. flywheel_verify-0.3.0/tests/test_transpile.py +88 -0
  621. flywheel_verify-0.3.0/tests/test_tree_head.py +181 -0
  622. flywheel_verify-0.3.0/tests/test_trustcard.py +70 -0
  623. flywheel_verify-0.3.0/tests/test_turbulence.py +39 -0
  624. flywheel_verify-0.3.0/tests/test_typed_battery.py +85 -0
  625. flywheel_verify-0.3.0/tests/test_typeface_family.py +128 -0
  626. flywheel_verify-0.3.0/tests/test_typeface_forge.py +85 -0
  627. flywheel_verify-0.3.0/tests/test_typeface_gallery.py +80 -0
  628. flywheel_verify-0.3.0/tests/test_typeface_ttf.py +70 -0
  629. flywheel_verify-0.3.0/tests/test_unicode_guard.py +158 -0
  630. flywheel_verify-0.3.0/tests/test_unisonai_stateful_bench.py +364 -0
  631. flywheel_verify-0.3.0/tests/test_uplift_bench.py +181 -0
  632. flywheel_verify-0.3.0/tests/test_valve_flywheel.py +40 -0
  633. flywheel_verify-0.3.0/tests/test_verdict.py +43 -0
  634. flywheel_verify-0.3.0/tests/test_verify_receipt.py +62 -0
  635. flywheel_verify-0.3.0/tests/test_web_snapshot.py +42 -0
  636. flywheel_verify-0.3.0/tests/test_web_snapshot_ssrf.py +61 -0
  637. flywheel_verify-0.3.0/tests/test_why.py +251 -0
  638. flywheel_verify-0.3.0/tests/test_wiki.py +114 -0
  639. flywheel_verify-0.3.0/tests/test_wiki_writeback.py +60 -0
  640. flywheel_verify-0.3.0/tests/test_workspace_lens.py +37 -0
  641. flywheel_verify-0.3.0/tests/test_workspace_root.py +69 -0
  642. flywheel_verify-0.3.0/tests/test_workspace_state.py +42 -0
  643. flywheel_verify-0.3.0/tests/test_worktree_preflight.py +60 -0
  644. flywheel_verify-0.3.0/tests/test_world.py +64 -0
  645. flywheel_verify-0.3.0/tests/test_world_merkle.py +35 -0
  646. flywheel_verify-0.3.0/tests/test_writing_lists.py +38 -0
  647. flywheel_verify-0.3.0/tests/test_writing_profiles.py +86 -0
  648. flywheel_verify-0.3.0/tests/test_writing_pysource.py +59 -0
  649. flywheel_verify-0.3.0/tests/test_writing_report_checks.py +193 -0
  650. flywheel_verify-0.3.0/tests/test_zarankiewicz.py +222 -0
@@ -0,0 +1,110 @@
1
+ # Functional Source License, Version 1.1, MIT Future License
2
+
3
+ ## Abbreviation
4
+
5
+ FSL-1.1-MIT
6
+
7
+ ## Notice
8
+
9
+ Copyright 2026 Zain Dana Harper
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the MIT license that is effective on the second anniversary of the date we make
91
+ the Software available. On or after that date, you may use the Software under
92
+ the MIT license, in which case the following will apply:
93
+
94
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
95
+ this software and associated documentation files (the "Software"), to deal in
96
+ the Software without restriction, including without limitation the rights to
97
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98
+ of the Software, and to permit persons to whom the Software is furnished to do
99
+ so, subject to the following conditions:
100
+
101
+ The above copyright notice and this permission notice shall be included in all
102
+ copies or substantial portions of the Software.
103
+
104
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
105
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
106
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
107
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
108
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
109
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
110
+ SOFTWARE.
@@ -0,0 +1,142 @@
1
+ Metadata-Version: 2.4
2
+ Name: flywheel-verify
3
+ Version: 0.3.0
4
+ Summary: The one platform: routing, verification, the lane layer, memory/context/catalog, and the closed verified-inference loop.
5
+ Author: Zain
6
+ License: FSL-1.1-MIT
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Dynamic: license-file
11
+
12
+ # Flywheel
13
+
14
+ > One platform: routing, verification, the lane layer, the closed loop, and the
15
+ > projected world. The native desktop surface for accountable AI infrastructure.
16
+
17
+ Flywheel is the engine and native client for a verified-inference loop: a model
18
+ perceives only through witnessed organs, acts only through a gate it cannot
19
+ talk past, journals everything, and verifies its own work by re-perceiving.
20
+
21
+ The flagship tools (gather, crucible, index, forum, learn, telos) are lanes
22
+ inside Flywheel, each a provisioned, health-checked organ reachable through one
23
+ surface. Every agent tool call carries a sealed, chain-linked receipt a third
24
+ party re-verifies offline.
25
+
26
+ **Proof before trust.**
27
+
28
+ ## What is in this repo
29
+
30
+ This is a monorepo containing both halves of the platform:
31
+
32
+ - **`harness/`** is the Python engine: the gateway (localhost HTTP API), the
33
+ agent loop, the receipt discipline, the lane layer, the verified-inference
34
+ loop, the tool-call receipt system. Zero runtime dependencies (stdlib only).
35
+ - **`desktop/`** is the Flutter native client: 24 views, 50 widgets, zero
36
+ webview embedding. Talks to the gateway over localhost. Launches a bundled
37
+ frozen engine by absolute path on a clean machine (no Python, no PATH, no
38
+ network).
39
+ - **`site/`** is a dev/CI fallback browser shell (not the primary UI).
40
+
41
+ ## Run it now
42
+
43
+ Start the gateway (the engine keeps the loop, receipts, lanes, and routing):
44
+
45
+ ```
46
+ flywheel app --port 8799
47
+ ```
48
+
49
+ The **native surface is Flywheel Desktop**. From a dev checkout:
50
+
51
+ ```
52
+ cd desktop
53
+ flutter run -d windows --release
54
+ ```
55
+
56
+ The gateway also serves a `/site/index.html` shell as a dev/CI fallback.
57
+
58
+ ## The lane model
59
+
60
+ Flywheel encompasses the tool family. Each flagship is a lane:
61
+
62
+ | Lane | Repo | Role |
63
+ | --- | --- | --- |
64
+ | gather | [gather](https://github.com/HarperZ9/gather) | Research intake + provenance receipts |
65
+ | crucible | [crucible](https://github.com/HarperZ9/crucible) | Falsifiable verification (MATCH / DRIFT / UNVERIFIABLE) |
66
+ | index | [index](https://github.com/HarperZ9/index) | Workspace map + symbol graph + context envelopes |
67
+ | forum | [forum](https://github.com/HarperZ9/forum) | Witnessed causal ledger + model-agnostic routing |
68
+ | learn | [learn](https://github.com/HarperZ9/learn) | Accountable learning forge |
69
+ | telos | [telos](https://github.com/HarperZ9/telos) | The reconciliation lane |
70
+
71
+ Check their health through one surface:
72
+
73
+ ```
74
+ flywheel lanes
75
+ flywheel lanes --probe # live MCP handshake per lane
76
+ ```
77
+
78
+ ## The receipt discipline
79
+
80
+ Every agent tool invocation carries a sealed receipt binding:
81
+
82
+ - **what the tool was** (capability class: read / write / exec / external-mcp)
83
+ - **what it was allowed to do** (admission decision from the gate)
84
+ - **what it actually did** (witnessed args + output sha256 digests, never raw content)
85
+ - **whether a stranger can re-walk it** (offline-verifiable, chain-linked)
86
+
87
+ Receipts compose into a transitive-witness DAG where a drifted action degrades
88
+ exactly its downstream dependents. The five flagships emit organ-bundle entries
89
+ on a shared proof-surface spine so cross-tool receipts compose end-to-end.
90
+
91
+ ## The organizational learning loop
92
+
93
+ The layer above audit. The receipt discipline records what happened at machine
94
+ resolution. The learning loop feeds forward: it derives lessons from witnessed
95
+ divergences (an allowed action that rolled back, a memory whose source drifted,
96
+ a graded failure), stores them in a durable, hash-chained, append-only memory,
97
+ and surfaces recurring patterns as improvement candidates for human admission.
98
+ A lesson is not a note an operator wrote; it is a claim bound by hash to its
99
+ evidence, re-checkable offline, fail-closed when the evidence is gone. See
100
+ [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md).
101
+
102
+ ## Offline-first
103
+
104
+ The Flutter desktop GUI launches a bundled engine by absolute path and serves
105
+ its UI menu on localhost only. No external web address is contacted to show the
106
+ GUI. The gateway serves `/api/*` and the UI on `http://127.0.0.1:8799`.
107
+
108
+ ## Install
109
+
110
+ From source today (zero runtime dependencies, stdlib only):
111
+
112
+ ```
113
+ git clone https://github.com/HarperZ9/flywheel.git
114
+ cd flywheel
115
+ pip install -e .
116
+ python scripts/run_harness_cli.py app --port 8799
117
+ ```
118
+
119
+ `pip install -e .` puts the `flywheel` command on your PATH, so you can also
120
+ start the gateway with `flywheel up`.
121
+
122
+ The PyPI distribution name is `flywheel-verify` (the bare `flywheel` name is an
123
+ unrelated package); the installed command stays `flywheel`. After it is
124
+ published to PyPI:
125
+
126
+ ```
127
+ pip install flywheel-verify
128
+ flywheel up
129
+ ```
130
+
131
+ ## Documentation
132
+
133
+ - [QUICKSTART.md](QUICKSTART.md): first ten minutes
134
+ - [WALKTHROUGH.md](WALKTHROUGH.md): guided tour
135
+ - [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md): the organizational learning loop (architecture)
136
+ - [docs/GUIDE-LESSON-LOOP.md](docs/GUIDE-LESSON-LOOP.md): the organizational learning loop (full guide and spec)
137
+ - [docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md](docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md): Flywheel against the July 2026 agentic security convergence
138
+ - [CREDO.md](CREDO.md): the belief
139
+
140
+ ## License
141
+
142
+ FSL-1.1-MIT (Functional Source License). See [LICENSE](LICENSE).
@@ -0,0 +1,131 @@
1
+ # Flywheel
2
+
3
+ > One platform: routing, verification, the lane layer, the closed loop, and the
4
+ > projected world. The native desktop surface for accountable AI infrastructure.
5
+
6
+ Flywheel is the engine and native client for a verified-inference loop: a model
7
+ perceives only through witnessed organs, acts only through a gate it cannot
8
+ talk past, journals everything, and verifies its own work by re-perceiving.
9
+
10
+ The flagship tools (gather, crucible, index, forum, learn, telos) are lanes
11
+ inside Flywheel, each a provisioned, health-checked organ reachable through one
12
+ surface. Every agent tool call carries a sealed, chain-linked receipt a third
13
+ party re-verifies offline.
14
+
15
+ **Proof before trust.**
16
+
17
+ ## What is in this repo
18
+
19
+ This is a monorepo containing both halves of the platform:
20
+
21
+ - **`harness/`** is the Python engine: the gateway (localhost HTTP API), the
22
+ agent loop, the receipt discipline, the lane layer, the verified-inference
23
+ loop, the tool-call receipt system. Zero runtime dependencies (stdlib only).
24
+ - **`desktop/`** is the Flutter native client: 24 views, 50 widgets, zero
25
+ webview embedding. Talks to the gateway over localhost. Launches a bundled
26
+ frozen engine by absolute path on a clean machine (no Python, no PATH, no
27
+ network).
28
+ - **`site/`** is a dev/CI fallback browser shell (not the primary UI).
29
+
30
+ ## Run it now
31
+
32
+ Start the gateway (the engine keeps the loop, receipts, lanes, and routing):
33
+
34
+ ```
35
+ flywheel app --port 8799
36
+ ```
37
+
38
+ The **native surface is Flywheel Desktop**. From a dev checkout:
39
+
40
+ ```
41
+ cd desktop
42
+ flutter run -d windows --release
43
+ ```
44
+
45
+ The gateway also serves a `/site/index.html` shell as a dev/CI fallback.
46
+
47
+ ## The lane model
48
+
49
+ Flywheel encompasses the tool family. Each flagship is a lane:
50
+
51
+ | Lane | Repo | Role |
52
+ | --- | --- | --- |
53
+ | gather | [gather](https://github.com/HarperZ9/gather) | Research intake + provenance receipts |
54
+ | crucible | [crucible](https://github.com/HarperZ9/crucible) | Falsifiable verification (MATCH / DRIFT / UNVERIFIABLE) |
55
+ | index | [index](https://github.com/HarperZ9/index) | Workspace map + symbol graph + context envelopes |
56
+ | forum | [forum](https://github.com/HarperZ9/forum) | Witnessed causal ledger + model-agnostic routing |
57
+ | learn | [learn](https://github.com/HarperZ9/learn) | Accountable learning forge |
58
+ | telos | [telos](https://github.com/HarperZ9/telos) | The reconciliation lane |
59
+
60
+ Check their health through one surface:
61
+
62
+ ```
63
+ flywheel lanes
64
+ flywheel lanes --probe # live MCP handshake per lane
65
+ ```
66
+
67
+ ## The receipt discipline
68
+
69
+ Every agent tool invocation carries a sealed receipt binding:
70
+
71
+ - **what the tool was** (capability class: read / write / exec / external-mcp)
72
+ - **what it was allowed to do** (admission decision from the gate)
73
+ - **what it actually did** (witnessed args + output sha256 digests, never raw content)
74
+ - **whether a stranger can re-walk it** (offline-verifiable, chain-linked)
75
+
76
+ Receipts compose into a transitive-witness DAG where a drifted action degrades
77
+ exactly its downstream dependents. The five flagships emit organ-bundle entries
78
+ on a shared proof-surface spine so cross-tool receipts compose end-to-end.
79
+
80
+ ## The organizational learning loop
81
+
82
+ The layer above audit. The receipt discipline records what happened at machine
83
+ resolution. The learning loop feeds forward: it derives lessons from witnessed
84
+ divergences (an allowed action that rolled back, a memory whose source drifted,
85
+ a graded failure), stores them in a durable, hash-chained, append-only memory,
86
+ and surfaces recurring patterns as improvement candidates for human admission.
87
+ A lesson is not a note an operator wrote; it is a claim bound by hash to its
88
+ evidence, re-checkable offline, fail-closed when the evidence is gone. See
89
+ [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md).
90
+
91
+ ## Offline-first
92
+
93
+ The Flutter desktop GUI launches a bundled engine by absolute path and serves
94
+ its UI menu on localhost only. No external web address is contacted to show the
95
+ GUI. The gateway serves `/api/*` and the UI on `http://127.0.0.1:8799`.
96
+
97
+ ## Install
98
+
99
+ From source today (zero runtime dependencies, stdlib only):
100
+
101
+ ```
102
+ git clone https://github.com/HarperZ9/flywheel.git
103
+ cd flywheel
104
+ pip install -e .
105
+ python scripts/run_harness_cli.py app --port 8799
106
+ ```
107
+
108
+ `pip install -e .` puts the `flywheel` command on your PATH, so you can also
109
+ start the gateway with `flywheel up`.
110
+
111
+ The PyPI distribution name is `flywheel-verify` (the bare `flywheel` name is an
112
+ unrelated package); the installed command stays `flywheel`. After it is
113
+ published to PyPI:
114
+
115
+ ```
116
+ pip install flywheel-verify
117
+ flywheel up
118
+ ```
119
+
120
+ ## Documentation
121
+
122
+ - [QUICKSTART.md](QUICKSTART.md): first ten minutes
123
+ - [WALKTHROUGH.md](WALKTHROUGH.md): guided tour
124
+ - [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md): the organizational learning loop (architecture)
125
+ - [docs/GUIDE-LESSON-LOOP.md](docs/GUIDE-LESSON-LOOP.md): the organizational learning loop (full guide and spec)
126
+ - [docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md](docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md): Flywheel against the July 2026 agentic security convergence
127
+ - [CREDO.md](CREDO.md): the belief
128
+
129
+ ## License
130
+
131
+ FSL-1.1-MIT (Functional Source License). See [LICENSE](LICENSE).
@@ -0,0 +1,142 @@
1
+ Metadata-Version: 2.4
2
+ Name: flywheel-verify
3
+ Version: 0.3.0
4
+ Summary: The one platform: routing, verification, the lane layer, memory/context/catalog, and the closed verified-inference loop.
5
+ Author: Zain
6
+ License: FSL-1.1-MIT
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Dynamic: license-file
11
+
12
+ # Flywheel
13
+
14
+ > One platform: routing, verification, the lane layer, the closed loop, and the
15
+ > projected world. The native desktop surface for accountable AI infrastructure.
16
+
17
+ Flywheel is the engine and native client for a verified-inference loop: a model
18
+ perceives only through witnessed organs, acts only through a gate it cannot
19
+ talk past, journals everything, and verifies its own work by re-perceiving.
20
+
21
+ The flagship tools (gather, crucible, index, forum, learn, telos) are lanes
22
+ inside Flywheel, each a provisioned, health-checked organ reachable through one
23
+ surface. Every agent tool call carries a sealed, chain-linked receipt a third
24
+ party re-verifies offline.
25
+
26
+ **Proof before trust.**
27
+
28
+ ## What is in this repo
29
+
30
+ This is a monorepo containing both halves of the platform:
31
+
32
+ - **`harness/`** is the Python engine: the gateway (localhost HTTP API), the
33
+ agent loop, the receipt discipline, the lane layer, the verified-inference
34
+ loop, the tool-call receipt system. Zero runtime dependencies (stdlib only).
35
+ - **`desktop/`** is the Flutter native client: 24 views, 50 widgets, zero
36
+ webview embedding. Talks to the gateway over localhost. Launches a bundled
37
+ frozen engine by absolute path on a clean machine (no Python, no PATH, no
38
+ network).
39
+ - **`site/`** is a dev/CI fallback browser shell (not the primary UI).
40
+
41
+ ## Run it now
42
+
43
+ Start the gateway (the engine keeps the loop, receipts, lanes, and routing):
44
+
45
+ ```
46
+ flywheel app --port 8799
47
+ ```
48
+
49
+ The **native surface is Flywheel Desktop**. From a dev checkout:
50
+
51
+ ```
52
+ cd desktop
53
+ flutter run -d windows --release
54
+ ```
55
+
56
+ The gateway also serves a `/site/index.html` shell as a dev/CI fallback.
57
+
58
+ ## The lane model
59
+
60
+ Flywheel encompasses the tool family. Each flagship is a lane:
61
+
62
+ | Lane | Repo | Role |
63
+ | --- | --- | --- |
64
+ | gather | [gather](https://github.com/HarperZ9/gather) | Research intake + provenance receipts |
65
+ | crucible | [crucible](https://github.com/HarperZ9/crucible) | Falsifiable verification (MATCH / DRIFT / UNVERIFIABLE) |
66
+ | index | [index](https://github.com/HarperZ9/index) | Workspace map + symbol graph + context envelopes |
67
+ | forum | [forum](https://github.com/HarperZ9/forum) | Witnessed causal ledger + model-agnostic routing |
68
+ | learn | [learn](https://github.com/HarperZ9/learn) | Accountable learning forge |
69
+ | telos | [telos](https://github.com/HarperZ9/telos) | The reconciliation lane |
70
+
71
+ Check their health through one surface:
72
+
73
+ ```
74
+ flywheel lanes
75
+ flywheel lanes --probe # live MCP handshake per lane
76
+ ```
77
+
78
+ ## The receipt discipline
79
+
80
+ Every agent tool invocation carries a sealed receipt binding:
81
+
82
+ - **what the tool was** (capability class: read / write / exec / external-mcp)
83
+ - **what it was allowed to do** (admission decision from the gate)
84
+ - **what it actually did** (witnessed args + output sha256 digests, never raw content)
85
+ - **whether a stranger can re-walk it** (offline-verifiable, chain-linked)
86
+
87
+ Receipts compose into a transitive-witness DAG where a drifted action degrades
88
+ exactly its downstream dependents. The five flagships emit organ-bundle entries
89
+ on a shared proof-surface spine so cross-tool receipts compose end-to-end.
90
+
91
+ ## The organizational learning loop
92
+
93
+ The layer above audit. The receipt discipline records what happened at machine
94
+ resolution. The learning loop feeds forward: it derives lessons from witnessed
95
+ divergences (an allowed action that rolled back, a memory whose source drifted,
96
+ a graded failure), stores them in a durable, hash-chained, append-only memory,
97
+ and surfaces recurring patterns as improvement candidates for human admission.
98
+ A lesson is not a note an operator wrote; it is a claim bound by hash to its
99
+ evidence, re-checkable offline, fail-closed when the evidence is gone. See
100
+ [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md).
101
+
102
+ ## Offline-first
103
+
104
+ The Flutter desktop GUI launches a bundled engine by absolute path and serves
105
+ its UI menu on localhost only. No external web address is contacted to show the
106
+ GUI. The gateway serves `/api/*` and the UI on `http://127.0.0.1:8799`.
107
+
108
+ ## Install
109
+
110
+ From source today (zero runtime dependencies, stdlib only):
111
+
112
+ ```
113
+ git clone https://github.com/HarperZ9/flywheel.git
114
+ cd flywheel
115
+ pip install -e .
116
+ python scripts/run_harness_cli.py app --port 8799
117
+ ```
118
+
119
+ `pip install -e .` puts the `flywheel` command on your PATH, so you can also
120
+ start the gateway with `flywheel up`.
121
+
122
+ The PyPI distribution name is `flywheel-verify` (the bare `flywheel` name is an
123
+ unrelated package); the installed command stays `flywheel`. After it is
124
+ published to PyPI:
125
+
126
+ ```
127
+ pip install flywheel-verify
128
+ flywheel up
129
+ ```
130
+
131
+ ## Documentation
132
+
133
+ - [QUICKSTART.md](QUICKSTART.md): first ten minutes
134
+ - [WALKTHROUGH.md](WALKTHROUGH.md): guided tour
135
+ - [docs/LESSON-LOOP.md](docs/LESSON-LOOP.md): the organizational learning loop (architecture)
136
+ - [docs/GUIDE-LESSON-LOOP.md](docs/GUIDE-LESSON-LOOP.md): the organizational learning loop (full guide and spec)
137
+ - [docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md](docs/ASSESSMENT-AGENTIC-SECURITY-2026-08.md): Flywheel against the July 2026 agentic security convergence
138
+ - [CREDO.md](CREDO.md): the belief
139
+
140
+ ## License
141
+
142
+ FSL-1.1-MIT (Functional Source License). See [LICENSE](LICENSE).