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.
- flywheel_verify-0.3.0/LICENSE +110 -0
- flywheel_verify-0.3.0/PKG-INFO +142 -0
- flywheel_verify-0.3.0/README.md +131 -0
- flywheel_verify-0.3.0/flywheel_verify.egg-info/PKG-INFO +142 -0
- flywheel_verify-0.3.0/flywheel_verify.egg-info/SOURCES.txt +648 -0
- flywheel_verify-0.3.0/flywheel_verify.egg-info/dependency_links.txt +1 -0
- flywheel_verify-0.3.0/flywheel_verify.egg-info/entry_points.txt +2 -0
- flywheel_verify-0.3.0/flywheel_verify.egg-info/top_level.txt +1 -0
- flywheel_verify-0.3.0/harness/__init__.py +10 -0
- flywheel_verify-0.3.0/harness/academy_pipeline.py +163 -0
- flywheel_verify-0.3.0/harness/acceptance_criteria.py +119 -0
- flywheel_verify-0.3.0/harness/accountability_bench.py +185 -0
- flywheel_verify-0.3.0/harness/adapter_runtime_matrix.py +244 -0
- flywheel_verify-0.3.0/harness/adaptive_select.py +130 -0
- flywheel_verify-0.3.0/harness/advantages.py +49 -0
- flywheel_verify-0.3.0/harness/adversarial_corpus.py +155 -0
- flywheel_verify-0.3.0/harness/agent_recovery_bench.py +684 -0
- flywheel_verify-0.3.0/harness/agentic_task_manifest.py +269 -0
- flywheel_verify-0.3.0/harness/arc_agi3.py +148 -0
- flywheel_verify-0.3.0/harness/asymmetry.py +183 -0
- flywheel_verify-0.3.0/harness/attestation.py +89 -0
- flywheel_verify-0.3.0/harness/authorization_cost.py +71 -0
- flywheel_verify-0.3.0/harness/backflow.py +105 -0
- flywheel_verify-0.3.0/harness/behavioral_monitor.py +74 -0
- flywheel_verify-0.3.0/harness/benchmark_hygiene.py +67 -0
- flywheel_verify-0.3.0/harness/benchmark_receipts.py +54 -0
- flywheel_verify-0.3.0/harness/bm25_retrieval.py +109 -0
- flywheel_verify-0.3.0/harness/boot.py +242 -0
- flywheel_verify-0.3.0/harness/brand_kit.py +131 -0
- flywheel_verify-0.3.0/harness/budget_control.py +78 -0
- flywheel_verify-0.3.0/harness/buildc_receipt_bridge.py +281 -0
- flywheel_verify-0.3.0/harness/bundle.py +276 -0
- flywheel_verify-0.3.0/harness/cache.py +116 -0
- flywheel_verify-0.3.0/harness/calibration.py +105 -0
- flywheel_verify-0.3.0/harness/canary_tripwire.py +70 -0
- flywheel_verify-0.3.0/harness/certificates/__init__.py +14 -0
- flywheel_verify-0.3.0/harness/certificates/base.py +290 -0
- flywheel_verify-0.3.0/harness/certificates/crossing.py +237 -0
- flywheel_verify-0.3.0/harness/certificates/crossing_generator.py +126 -0
- flywheel_verify-0.3.0/harness/certificates/crossing_independent.py +168 -0
- flywheel_verify-0.3.0/harness/certificates/generators.py +102 -0
- flywheel_verify-0.3.0/harness/certificates/independent.py +160 -0
- flywheel_verify-0.3.0/harness/certificates/zarankiewicz.py +158 -0
- flywheel_verify-0.3.0/harness/chain.py +126 -0
- flywheel_verify-0.3.0/harness/chorus_bridge.py +138 -0
- flywheel_verify-0.3.0/harness/classifier_friction_bench.py +454 -0
- flywheel_verify-0.3.0/harness/cli.py +72 -0
- flywheel_verify-0.3.0/harness/cli_entry.py +261 -0
- flywheel_verify-0.3.0/harness/compaction.py +221 -0
- flywheel_verify-0.3.0/harness/companion.py +125 -0
- flywheel_verify-0.3.0/harness/comprehension_ledger.py +107 -0
- flywheel_verify-0.3.0/harness/conjecture_forge.py +194 -0
- flywheel_verify-0.3.0/harness/consensus.py +127 -0
- flywheel_verify-0.3.0/harness/contest.py +214 -0
- flywheel_verify-0.3.0/harness/context_envelope.py +107 -0
- flywheel_verify-0.3.0/harness/context_forge.py +147 -0
- flywheel_verify-0.3.0/harness/context_governor.py +119 -0
- flywheel_verify-0.3.0/harness/context_manifest.py +74 -0
- flywheel_verify-0.3.0/harness/corpus_export.py +106 -0
- flywheel_verify-0.3.0/harness/creative_graph.py +216 -0
- flywheel_verify-0.3.0/harness/creative_pipeline.py +180 -0
- flywheel_verify-0.3.0/harness/credo.py +45 -0
- flywheel_verify-0.3.0/harness/criteria/__init__.py +15 -0
- flywheel_verify-0.3.0/harness/criteria/registry.py +219 -0
- flywheel_verify-0.3.0/harness/criteria/spec.py +152 -0
- flywheel_verify-0.3.0/harness/cross_domain.py +129 -0
- flywheel_verify-0.3.0/harness/cross_harness_manifest.py +342 -0
- flywheel_verify-0.3.0/harness/crypto/__init__.py +5 -0
- flywheel_verify-0.3.0/harness/crypto/signatures.py +221 -0
- flywheel_verify-0.3.0/harness/data_flywheel.py +98 -0
- flywheel_verify-0.3.0/harness/design_studio.py +237 -0
- flywheel_verify-0.3.0/harness/developmental.py +77 -0
- flywheel_verify-0.3.0/harness/discovery_flywheel.py +192 -0
- flywheel_verify-0.3.0/harness/ed25519_verify.py +186 -0
- flywheel_verify-0.3.0/harness/effort.py +40 -0
- flywheel_verify-0.3.0/harness/endpoint.py +217 -0
- flywheel_verify-0.3.0/harness/endpoint_registry.py +199 -0
- flywheel_verify-0.3.0/harness/endpoints.py +492 -0
- flywheel_verify-0.3.0/harness/envelope.py +159 -0
- flywheel_verify-0.3.0/harness/escalation.py +106 -0
- flywheel_verify-0.3.0/harness/eval.py +178 -0
- flywheel_verify-0.3.0/harness/eval_engineering.py +201 -0
- flywheel_verify-0.3.0/harness/eval_store.py +185 -0
- flywheel_verify-0.3.0/harness/evolutionary_flywheel.py +87 -0
- flywheel_verify-0.3.0/harness/evolve.py +142 -0
- flywheel_verify-0.3.0/harness/exec_oracle.py +126 -0
- flywheel_verify-0.3.0/harness/explanation_gate.py +116 -0
- flywheel_verify-0.3.0/harness/externalization_ablation.py +114 -0
- flywheel_verify-0.3.0/harness/extract.py +31 -0
- flywheel_verify-0.3.0/harness/failure_corpus.py +103 -0
- flywheel_verify-0.3.0/harness/faithfulness_gate.py +48 -0
- flywheel_verify-0.3.0/harness/fan_out.py +57 -0
- flywheel_verify-0.3.0/harness/feeds.py +169 -0
- flywheel_verify-0.3.0/harness/field_studio.py +146 -0
- flywheel_verify-0.3.0/harness/file_backed_store.py +228 -0
- flywheel_verify-0.3.0/harness/film_media.py +84 -0
- flywheel_verify-0.3.0/harness/findings.py +246 -0
- flywheel_verify-0.3.0/harness/findings_stats.py +91 -0
- flywheel_verify-0.3.0/harness/fluid_router.py +142 -0
- flywheel_verify-0.3.0/harness/flywheel.py +102 -0
- flywheel_verify-0.3.0/harness/fold_index.py +141 -0
- flywheel_verify-0.3.0/harness/forecast_bootstrap.py +110 -0
- flywheel_verify-0.3.0/harness/forecast_shrinkage.py +54 -0
- flywheel_verify-0.3.0/harness/frontier.py +124 -0
- flywheel_verify-0.3.0/harness/gate.py +157 -0
- flywheel_verify-0.3.0/harness/gateway.py +2560 -0
- flywheel_verify-0.3.0/harness/gateway_auth.py +69 -0
- flywheel_verify-0.3.0/harness/governance/__init__.py +6 -0
- flywheel_verify-0.3.0/harness/governance/control_baseline.py +227 -0
- flywheel_verify-0.3.0/harness/governance/tadr_interop.py +93 -0
- flywheel_verify-0.3.0/harness/governance/tadr_receipt.py +227 -0
- flywheel_verify-0.3.0/harness/governance/tadr_tier.py +269 -0
- flywheel_verify-0.3.0/harness/governance_envelope.py +178 -0
- flywheel_verify-0.3.0/harness/governed_agent_bench.py +734 -0
- flywheel_verify-0.3.0/harness/grounding.py +102 -0
- flywheel_verify-0.3.0/harness/hard_lane.py +116 -0
- flywheel_verify-0.3.0/harness/import_adapters.py +128 -0
- flywheel_verify-0.3.0/harness/index_bridge.py +104 -0
- flywheel_verify-0.3.0/harness/infra/__init__.py +1 -0
- flywheel_verify-0.3.0/harness/infra/acquisition.py +148 -0
- flywheel_verify-0.3.0/harness/infra/cloud_iam.py +290 -0
- flywheel_verify-0.3.0/harness/infra/correlator.py +233 -0
- flywheel_verify-0.3.0/harness/infra/credential_scanner.py +168 -0
- flywheel_verify-0.3.0/harness/infra/egress.py +206 -0
- flywheel_verify-0.3.0/harness/infra/egress_matrix.py +114 -0
- flywheel_verify-0.3.0/harness/infra/incident_sheet.py +126 -0
- flywheel_verify-0.3.0/harness/infra/isolation_test.py +181 -0
- flywheel_verify-0.3.0/harness/infra/kill_switch.py +186 -0
- flywheel_verify-0.3.0/harness/infra/lean_adapter.py +161 -0
- flywheel_verify-0.3.0/harness/infra/native_detect.py +460 -0
- flywheel_verify-0.3.0/harness/infra/partner_assurance.py +95 -0
- flywheel_verify-0.3.0/harness/infra/reality_contract.py +136 -0
- flywheel_verify-0.3.0/harness/infra/run_bom.py +159 -0
- flywheel_verify-0.3.0/harness/infra/trust_model.py +253 -0
- flywheel_verify-0.3.0/harness/injection_probe.py +122 -0
- flywheel_verify-0.3.0/harness/intake.py +178 -0
- flywheel_verify-0.3.0/harness/integrity.py +230 -0
- flywheel_verify-0.3.0/harness/inversion_flywheel.py +103 -0
- flywheel_verify-0.3.0/harness/kernel_oracle.py +91 -0
- flywheel_verify-0.3.0/harness/keychain.py +114 -0
- flywheel_verify-0.3.0/harness/knowledge_graph.py +213 -0
- flywheel_verify-0.3.0/harness/knowledge_monitor.py +102 -0
- flywheel_verify-0.3.0/harness/lane_caller.py +100 -0
- flywheel_verify-0.3.0/harness/lanes.py +361 -0
- flywheel_verify-0.3.0/harness/lean_export.py +198 -0
- flywheel_verify-0.3.0/harness/lean_oracle.py +247 -0
- flywheel_verify-0.3.0/harness/ledger.py +300 -0
- flywheel_verify-0.3.0/harness/lesson.py +356 -0
- flywheel_verify-0.3.0/harness/lesson_interop.py +165 -0
- flywheel_verify-0.3.0/harness/lesson_mappers.py +340 -0
- flywheel_verify-0.3.0/harness/lesson_store.py +495 -0
- flywheel_verify-0.3.0/harness/linter.py +193 -0
- flywheel_verify-0.3.0/harness/live_feeds.py +107 -0
- flywheel_verify-0.3.0/harness/local_agent.py +360 -0
- flywheel_verify-0.3.0/harness/local_agent_cli.py +190 -0
- flywheel_verify-0.3.0/harness/local_git.py +56 -0
- flywheel_verify-0.3.0/harness/local_loop.py +294 -0
- flywheel_verify-0.3.0/harness/local_mcp.py +119 -0
- flywheel_verify-0.3.0/harness/local_repomap.py +144 -0
- flywheel_verify-0.3.0/harness/local_session.py +89 -0
- flywheel_verify-0.3.0/harness/local_tools.py +493 -0
- flywheel_verify-0.3.0/harness/loop.py +231 -0
- flywheel_verify-0.3.0/harness/loop_closure.py +162 -0
- flywheel_verify-0.3.0/harness/loops.py +315 -0
- flywheel_verify-0.3.0/harness/lsp_bridge.py +203 -0
- flywheel_verify-0.3.0/harness/lsp_diagnostics.py +42 -0
- flywheel_verify-0.3.0/harness/manim_lesson.py +119 -0
- flywheel_verify-0.3.0/harness/map_elites.py +89 -0
- flywheel_verify-0.3.0/harness/marketplace.py +213 -0
- flywheel_verify-0.3.0/harness/matmul_oracle.py +176 -0
- flywheel_verify-0.3.0/harness/mcp_client.py +223 -0
- flywheel_verify-0.3.0/harness/mcts.py +137 -0
- flywheel_verify-0.3.0/harness/measurement_oracle.py +231 -0
- flywheel_verify-0.3.0/harness/membudget.py +109 -0
- flywheel_verify-0.3.0/harness/memory_api.py +55 -0
- flywheel_verify-0.3.0/harness/merkle.py +208 -0
- flywheel_verify-0.3.0/harness/messages_api.py +131 -0
- flywheel_verify-0.3.0/harness/model_card_claims.py +311 -0
- flywheel_verify-0.3.0/harness/model_profiles.py +96 -0
- flywheel_verify-0.3.0/harness/model_router.py +214 -0
- flywheel_verify-0.3.0/harness/model_shim.py +215 -0
- flywheel_verify-0.3.0/harness/oracle.py +262 -0
- flywheel_verify-0.3.0/harness/oracle_qa.py +248 -0
- flywheel_verify-0.3.0/harness/oracle_registry.py +165 -0
- flywheel_verify-0.3.0/harness/parity.py +161 -0
- flywheel_verify-0.3.0/harness/perception_probe.py +168 -0
- flywheel_verify-0.3.0/harness/pipeline.py +68 -0
- flywheel_verify-0.3.0/harness/plugins.py +199 -0
- flywheel_verify-0.3.0/harness/policy.py +147 -0
- flywheel_verify-0.3.0/harness/pool.py +224 -0
- flywheel_verify-0.3.0/harness/pool_arms.py +281 -0
- flywheel_verify-0.3.0/harness/profiles.py +150 -0
- flywheel_verify-0.3.0/harness/projects.py +101 -0
- flywheel_verify-0.3.0/harness/prompt_forge.py +194 -0
- flywheel_verify-0.3.0/harness/proof_cache.py +83 -0
- flywheel_verify-0.3.0/harness/proposer.py +159 -0
- flywheel_verify-0.3.0/harness/provenance_trace.py +90 -0
- flywheel_verify-0.3.0/harness/provider_roles.py +92 -0
- flywheel_verify-0.3.0/harness/providers.py +104 -0
- flywheel_verify-0.3.0/harness/publish_lint.py +243 -0
- flywheel_verify-0.3.0/harness/qa_mutations.py +231 -0
- flywheel_verify-0.3.0/harness/quality_duel.py +108 -0
- flywheel_verify-0.3.0/harness/quant_dither.py +104 -0
- flywheel_verify-0.3.0/harness/quorum.py +132 -0
- flywheel_verify-0.3.0/harness/raster_fx.py +129 -0
- flywheel_verify-0.3.0/harness/receipt.py +287 -0
- flywheel_verify-0.3.0/harness/receipt_fields.py +245 -0
- flywheel_verify-0.3.0/harness/receipt_sign.py +170 -0
- flywheel_verify-0.3.0/harness/reheater.py +148 -0
- flywheel_verify-0.3.0/harness/release_readiness.py +96 -0
- flywheel_verify-0.3.0/harness/render.py +158 -0
- flywheel_verify-0.3.0/harness/retention.py +97 -0
- flywheel_verify-0.3.0/harness/retro_cgi.py +123 -0
- flywheel_verify-0.3.0/harness/risk_review.py +112 -0
- flywheel_verify-0.3.0/harness/rl_from_oracle.py +283 -0
- flywheel_verify-0.3.0/harness/router.py +108 -0
- flywheel_verify-0.3.0/harness/router_agent.py +182 -0
- flywheel_verify-0.3.0/harness/router_stats.py +147 -0
- flywheel_verify-0.3.0/harness/run_paths.py +36 -0
- flywheel_verify-0.3.0/harness/run_review.py +116 -0
- flywheel_verify-0.3.0/harness/scaffold.py +123 -0
- flywheel_verify-0.3.0/harness/schema_trace_intake.py +185 -0
- flywheel_verify-0.3.0/harness/schematic_drift.py +177 -0
- flywheel_verify-0.3.0/harness/science_bench.py +150 -0
- flywheel_verify-0.3.0/harness/scout.py +137 -0
- flywheel_verify-0.3.0/harness/search.py +110 -0
- flywheel_verify-0.3.0/harness/second_brain.py +71 -0
- flywheel_verify-0.3.0/harness/selector.py +300 -0
- flywheel_verify-0.3.0/harness/selector_probe.py +293 -0
- flywheel_verify-0.3.0/harness/serve.py +420 -0
- flywheel_verify-0.3.0/harness/session_tools.py +219 -0
- flywheel_verify-0.3.0/harness/shell_admission.py +138 -0
- flywheel_verify-0.3.0/harness/shell_parse.py +262 -0
- flywheel_verify-0.3.0/harness/silhouette.py +171 -0
- flywheel_verify-0.3.0/harness/sound_studio.py +133 -0
- flywheel_verify-0.3.0/harness/source_mined_bench.py +974 -0
- flywheel_verify-0.3.0/harness/spacing_scheduler.py +56 -0
- flywheel_verify-0.3.0/harness/statistics.py +188 -0
- flywheel_verify-0.3.0/harness/store.py +257 -0
- flywheel_verify-0.3.0/harness/structure_mapping.py +79 -0
- flywheel_verify-0.3.0/harness/subscription_auth.py +228 -0
- flywheel_verify-0.3.0/harness/suite_audit.py +135 -0
- flywheel_verify-0.3.0/harness/superproject.py +143 -0
- flywheel_verify-0.3.0/harness/task.py +70 -0
- flywheel_verify-0.3.0/harness/task_curator.py +292 -0
- flywheel_verify-0.3.0/harness/tasks_expert.py +169 -0
- flywheel_verify-0.3.0/harness/tasks_hard.py +230 -0
- flywheel_verify-0.3.0/harness/tasks_lib.py +156 -0
- flywheel_verify-0.3.0/harness/tasks_physics.py +461 -0
- flywheel_verify-0.3.0/harness/telemetry.py +115 -0
- flywheel_verify-0.3.0/harness/telos_kernels.py +75 -0
- flywheel_verify-0.3.0/harness/tension_ledger.py +93 -0
- flywheel_verify-0.3.0/harness/tool_call_receipt.py +339 -0
- flywheel_verify-0.3.0/harness/tool_receipts.py +57 -0
- flywheel_verify-0.3.0/harness/tool_rescue.py +80 -0
- flywheel_verify-0.3.0/harness/train_surface.py +102 -0
- flywheel_verify-0.3.0/harness/trainer_diagnostics.py +187 -0
- flywheel_verify-0.3.0/harness/training_lane.py +216 -0
- flywheel_verify-0.3.0/harness/trajectory_curator.py +197 -0
- flywheel_verify-0.3.0/harness/trajectory_intake.py +168 -0
- flywheel_verify-0.3.0/harness/transitive_witness.py +243 -0
- flywheel_verify-0.3.0/harness/transparency_log.py +85 -0
- flywheel_verify-0.3.0/harness/transpile.py +131 -0
- flywheel_verify-0.3.0/harness/tree_head.py +165 -0
- flywheel_verify-0.3.0/harness/trustcard.py +83 -0
- flywheel_verify-0.3.0/harness/turbulence.py +112 -0
- flywheel_verify-0.3.0/harness/typeface_family.py +120 -0
- flywheel_verify-0.3.0/harness/typeface_forge.py +259 -0
- flywheel_verify-0.3.0/harness/typeface_gallery.py +79 -0
- flywheel_verify-0.3.0/harness/typeface_skeletons.py +504 -0
- flywheel_verify-0.3.0/harness/typeface_ttf.py +209 -0
- flywheel_verify-0.3.0/harness/typeface_variable.py +250 -0
- flywheel_verify-0.3.0/harness/unicode_guard.py +216 -0
- flywheel_verify-0.3.0/harness/unisonai_stateful_bench.py +559 -0
- flywheel_verify-0.3.0/harness/uplift_bench.py +268 -0
- flywheel_verify-0.3.0/harness/valve_flywheel.py +91 -0
- flywheel_verify-0.3.0/harness/verdict.py +89 -0
- flywheel_verify-0.3.0/harness/verify_receipt.py +51 -0
- flywheel_verify-0.3.0/harness/web_snapshot.py +188 -0
- flywheel_verify-0.3.0/harness/why.py +216 -0
- flywheel_verify-0.3.0/harness/wiki.py +274 -0
- flywheel_verify-0.3.0/harness/witness.py +53 -0
- flywheel_verify-0.3.0/harness/workflows.py +271 -0
- flywheel_verify-0.3.0/harness/workspace_lens.py +71 -0
- flywheel_verify-0.3.0/harness/workspace_state.py +54 -0
- flywheel_verify-0.3.0/harness/worktree_preflight.py +101 -0
- flywheel_verify-0.3.0/harness/world.py +150 -0
- flywheel_verify-0.3.0/pyproject.toml +52 -0
- flywheel_verify-0.3.0/setup.cfg +4 -0
- flywheel_verify-0.3.0/tests/test_academy_pipeline.py +99 -0
- flywheel_verify-0.3.0/tests/test_accept_path_purity.py +75 -0
- flywheel_verify-0.3.0/tests/test_acceptance_criteria.py +125 -0
- flywheel_verify-0.3.0/tests/test_accountability_bench.py +52 -0
- flywheel_verify-0.3.0/tests/test_adapter_runtime_matrix.py +106 -0
- flywheel_verify-0.3.0/tests/test_adaptive_select.py +222 -0
- flywheel_verify-0.3.0/tests/test_adjudicate_k5_forecast.py +59 -0
- flywheel_verify-0.3.0/tests/test_advantages.py +49 -0
- flywheel_verify-0.3.0/tests/test_adversarial_corpus.py +63 -0
- flywheel_verify-0.3.0/tests/test_agent_tools.py +144 -0
- flywheel_verify-0.3.0/tests/test_agentic_task_set_manifest.py +76 -0
- flywheel_verify-0.3.0/tests/test_anchor_confirmatory.py +153 -0
- flywheel_verify-0.3.0/tests/test_arc_agi3.py +100 -0
- flywheel_verify-0.3.0/tests/test_asymmetry.py +55 -0
- flywheel_verify-0.3.0/tests/test_attestation.py +105 -0
- flywheel_verify-0.3.0/tests/test_audit_checkers.py +159 -0
- flywheel_verify-0.3.0/tests/test_audit_fixes.py +109 -0
- flywheel_verify-0.3.0/tests/test_authorization_cost.py +57 -0
- flywheel_verify-0.3.0/tests/test_backflow.py +42 -0
- flywheel_verify-0.3.0/tests/test_behavioral_monitor.py +62 -0
- flywheel_verify-0.3.0/tests/test_benchmark_ci.py +81 -0
- flywheel_verify-0.3.0/tests/test_benchmark_execution_matrix.py +92 -0
- flywheel_verify-0.3.0/tests/test_benchmark_hygiene.py +62 -0
- flywheel_verify-0.3.0/tests/test_benchmark_profile_coverage.py +589 -0
- flywheel_verify-0.3.0/tests/test_benchmark_profile_manifest.py +87 -0
- flywheel_verify-0.3.0/tests/test_benchmark_receipts.py +46 -0
- flywheel_verify-0.3.0/tests/test_bm25_retrieval.py +75 -0
- flywheel_verify-0.3.0/tests/test_boot.py +100 -0
- flywheel_verify-0.3.0/tests/test_brand_kit.py +70 -0
- flywheel_verify-0.3.0/tests/test_budget_control.py +56 -0
- flywheel_verify-0.3.0/tests/test_bundle.py +303 -0
- flywheel_verify-0.3.0/tests/test_cache.py +87 -0
- flywheel_verify-0.3.0/tests/test_calibration.py +68 -0
- flywheel_verify-0.3.0/tests/test_canary_tripwire.py +76 -0
- flywheel_verify-0.3.0/tests/test_certificate_base.py +220 -0
- flywheel_verify-0.3.0/tests/test_chain.py +133 -0
- flywheel_verify-0.3.0/tests/test_chain_rewitness.py +62 -0
- flywheel_verify-0.3.0/tests/test_changelog_refs.py +90 -0
- flywheel_verify-0.3.0/tests/test_check_writing.py +284 -0
- flywheel_verify-0.3.0/tests/test_chorus_bridge.py +93 -0
- flywheel_verify-0.3.0/tests/test_ci_shard.py +122 -0
- flywheel_verify-0.3.0/tests/test_citation_verify.py +57 -0
- flywheel_verify-0.3.0/tests/test_claim_language.py +101 -0
- flywheel_verify-0.3.0/tests/test_classifier_friction_benchmark.py +89 -0
- flywheel_verify-0.3.0/tests/test_cli.py +52 -0
- flywheel_verify-0.3.0/tests/test_closed_loop_benchmark_seed.py +433 -0
- flywheel_verify-0.3.0/tests/test_closed_loop_outcome_report.py +1557 -0
- flywheel_verify-0.3.0/tests/test_codex_mcp_launch_contract.py +57 -0
- flywheel_verify-0.3.0/tests/test_compaction.py +176 -0
- flywheel_verify-0.3.0/tests/test_companion.py +246 -0
- flywheel_verify-0.3.0/tests/test_comprehension_ledger.py +127 -0
- flywheel_verify-0.3.0/tests/test_compute_arms.py +203 -0
- flywheel_verify-0.3.0/tests/test_compute_endpoint.py +249 -0
- flywheel_verify-0.3.0/tests/test_confirmatory_walk_guard.py +147 -0
- flywheel_verify-0.3.0/tests/test_conjecture_forge.py +176 -0
- flywheel_verify-0.3.0/tests/test_consensus.py +111 -0
- flywheel_verify-0.3.0/tests/test_consensus_select.py +57 -0
- flywheel_verify-0.3.0/tests/test_consistency.py +221 -0
- flywheel_verify-0.3.0/tests/test_contest.py +310 -0
- flywheel_verify-0.3.0/tests/test_context_envelope.py +70 -0
- flywheel_verify-0.3.0/tests/test_context_forge.py +88 -0
- flywheel_verify-0.3.0/tests/test_context_governor.py +132 -0
- flywheel_verify-0.3.0/tests/test_context_inventory.py +39 -0
- flywheel_verify-0.3.0/tests/test_context_manifest.py +60 -0
- flywheel_verify-0.3.0/tests/test_corpus_export.py +81 -0
- flywheel_verify-0.3.0/tests/test_creative_graph.py +166 -0
- flywheel_verify-0.3.0/tests/test_creative_pipeline.py +81 -0
- flywheel_verify-0.3.0/tests/test_credo.py +21 -0
- flywheel_verify-0.3.0/tests/test_criterion_registry.py +249 -0
- flywheel_verify-0.3.0/tests/test_criterion_spec.py +172 -0
- flywheel_verify-0.3.0/tests/test_criterion_versioning.py +65 -0
- flywheel_verify-0.3.0/tests/test_cross_domain.py +28 -0
- flywheel_verify-0.3.0/tests/test_cross_harness_manifest.py +86 -0
- flywheel_verify-0.3.0/tests/test_crossing.py +292 -0
- flywheel_verify-0.3.0/tests/test_crypto_signatures.py +151 -0
- flywheel_verify-0.3.0/tests/test_data_flywheel.py +69 -0
- flywheel_verify-0.3.0/tests/test_dataset_receipt.py +125 -0
- flywheel_verify-0.3.0/tests/test_demo_prompt.py +147 -0
- flywheel_verify-0.3.0/tests/test_demo_proposer.py +246 -0
- flywheel_verify-0.3.0/tests/test_demo_recorder.py +118 -0
- flywheel_verify-0.3.0/tests/test_design_studio.py +91 -0
- flywheel_verify-0.3.0/tests/test_determinism_pins.py +300 -0
- flywheel_verify-0.3.0/tests/test_developmental.py +71 -0
- flywheel_verify-0.3.0/tests/test_discovery_flywheel.py +159 -0
- flywheel_verify-0.3.0/tests/test_domain_general_ablation.py +19 -0
- flywheel_verify-0.3.0/tests/test_ed25519_verify.py +206 -0
- flywheel_verify-0.3.0/tests/test_effort.py +40 -0
- flywheel_verify-0.3.0/tests/test_embodied_realtime_multimodal_plan.py +73 -0
- flywheel_verify-0.3.0/tests/test_endpoint.py +199 -0
- flywheel_verify-0.3.0/tests/test_endpoint_registry.py +195 -0
- flywheel_verify-0.3.0/tests/test_endpoints.py +152 -0
- flywheel_verify-0.3.0/tests/test_enterprise_flywheel.py +63 -0
- flywheel_verify-0.3.0/tests/test_enterprise_readiness_report.py +59 -0
- flywheel_verify-0.3.0/tests/test_envelope_interop.py +60 -0
- flywheel_verify-0.3.0/tests/test_envelope_verdict_binding.py +71 -0
- flywheel_verify-0.3.0/tests/test_escalation.py +119 -0
- flywheel_verify-0.3.0/tests/test_eval.py +121 -0
- flywheel_verify-0.3.0/tests/test_eval_engineering.py +115 -0
- flywheel_verify-0.3.0/tests/test_eval_scorecard.py +38 -0
- flywheel_verify-0.3.0/tests/test_eval_store.py +171 -0
- flywheel_verify-0.3.0/tests/test_evolutionary_flywheel.py +59 -0
- flywheel_verify-0.3.0/tests/test_evolve.py +149 -0
- flywheel_verify-0.3.0/tests/test_exec_oracle.py +271 -0
- flywheel_verify-0.3.0/tests/test_explanation_gate.py +91 -0
- flywheel_verify-0.3.0/tests/test_externalization_ablation.py +27 -0
- flywheel_verify-0.3.0/tests/test_extract.py +37 -0
- flywheel_verify-0.3.0/tests/test_failure_corpus.py +75 -0
- flywheel_verify-0.3.0/tests/test_faithfulness_gate.py +63 -0
- flywheel_verify-0.3.0/tests/test_fan_out.py +82 -0
- flywheel_verify-0.3.0/tests/test_feeds.py +69 -0
- flywheel_verify-0.3.0/tests/test_fenced_extract.py +182 -0
- flywheel_verify-0.3.0/tests/test_field_studio.py +58 -0
- flywheel_verify-0.3.0/tests/test_file_backed_store.py +59 -0
- flywheel_verify-0.3.0/tests/test_file_gate.py +129 -0
- flywheel_verify-0.3.0/tests/test_findings.py +154 -0
- flywheel_verify-0.3.0/tests/test_fluid_router.py +54 -0
- flywheel_verify-0.3.0/tests/test_flywheel.py +88 -0
- flywheel_verify-0.3.0/tests/test_flywheel_integration_benchmark.py +13 -0
- flywheel_verify-0.3.0/tests/test_fold_index.py +132 -0
- flywheel_verify-0.3.0/tests/test_forecast_bootstrap.py +52 -0
- flywheel_verify-0.3.0/tests/test_forecast_shrinkage.py +41 -0
- flywheel_verify-0.3.0/tests/test_forge_seal.py +80 -0
- flywheel_verify-0.3.0/tests/test_forum_route_receipts.py +43 -0
- flywheel_verify-0.3.0/tests/test_frontier.py +80 -0
- flywheel_verify-0.3.0/tests/test_gate_end_to_end.py +87 -0
- flywheel_verify-0.3.0/tests/test_gateway.py +818 -0
- flywheel_verify-0.3.0/tests/test_gateway_auth.py +112 -0
- flywheel_verify-0.3.0/tests/test_gather_readiness.py +55 -0
- flywheel_verify-0.3.0/tests/test_governance_envelope.py +179 -0
- flywheel_verify-0.3.0/tests/test_governance_interop.py +72 -0
- flywheel_verify-0.3.0/tests/test_governance_tadr.py +339 -0
- flywheel_verify-0.3.0/tests/test_grounding_closure.py +137 -0
- flywheel_verify-0.3.0/tests/test_hard_as_data.py +99 -0
- flywheel_verify-0.3.0/tests/test_hard_lane.py +50 -0
- flywheel_verify-0.3.0/tests/test_hard_lane_seed.py +61 -0
- flywheel_verify-0.3.0/tests/test_hard_v3_upgrades.py +53 -0
- flywheel_verify-0.3.0/tests/test_harness_architecture_report.py +250 -0
- flywheel_verify-0.3.0/tests/test_harness_cli.py +851 -0
- flywheel_verify-0.3.0/tests/test_harness_comparison_report.py +135 -0
- flywheel_verify-0.3.0/tests/test_harness_store_query.py +38 -0
- flywheel_verify-0.3.0/tests/test_hedging.py +62 -0
- flywheel_verify-0.3.0/tests/test_held_out_gate.py +78 -0
- flywheel_verify-0.3.0/tests/test_huggingface_release_stage.py +197 -0
- flywheel_verify-0.3.0/tests/test_import_adapters.py +76 -0
- flywheel_verify-0.3.0/tests/test_independent_checker.py +236 -0
- flywheel_verify-0.3.0/tests/test_infra_cloud_iam.py +230 -0
- flywheel_verify-0.3.0/tests/test_infra_correlator_bom.py +271 -0
- flywheel_verify-0.3.0/tests/test_infra_egress.py +182 -0
- flywheel_verify-0.3.0/tests/test_infra_lean_adapter.py +84 -0
- flywheel_verify-0.3.0/tests/test_infra_native_detect.py +175 -0
- flywheel_verify-0.3.0/tests/test_infra_remaining.py +163 -0
- flywheel_verify-0.3.0/tests/test_infra_trust_acquisition.py +204 -0
- flywheel_verify-0.3.0/tests/test_injection_probe.py +73 -0
- flywheel_verify-0.3.0/tests/test_instance_binding.py +118 -0
- flywheel_verify-0.3.0/tests/test_intake.py +74 -0
- flywheel_verify-0.3.0/tests/test_integrity.py +144 -0
- flywheel_verify-0.3.0/tests/test_inversion_flywheel.py +35 -0
- flywheel_verify-0.3.0/tests/test_kernel_oracle.py +85 -0
- flywheel_verify-0.3.0/tests/test_keychain.py +60 -0
- flywheel_verify-0.3.0/tests/test_knowledge_graph.py +113 -0
- flywheel_verify-0.3.0/tests/test_knowledge_monitor.py +94 -0
- flywheel_verify-0.3.0/tests/test_lane_caller.py +113 -0
- flywheel_verify-0.3.0/tests/test_lane_launch.py +78 -0
- flywheel_verify-0.3.0/tests/test_lanes.py +111 -0
- flywheel_verify-0.3.0/tests/test_lean_oracle.py +137 -0
- flywheel_verify-0.3.0/tests/test_lean_oracle_adapter.py +115 -0
- flywheel_verify-0.3.0/tests/test_ledger.py +349 -0
- flywheel_verify-0.3.0/tests/test_lesson.py +274 -0
- flywheel_verify-0.3.0/tests/test_lesson_gateway.py +139 -0
- flywheel_verify-0.3.0/tests/test_lesson_interop.py +196 -0
- flywheel_verify-0.3.0/tests/test_lesson_mappers.py +158 -0
- flywheel_verify-0.3.0/tests/test_lesson_mappers_drift_misconception.py +220 -0
- flywheel_verify-0.3.0/tests/test_lesson_pattern_detection.py +159 -0
- flywheel_verify-0.3.0/tests/test_lesson_store.py +197 -0
- flywheel_verify-0.3.0/tests/test_lesson_transitions.py +164 -0
- flywheel_verify-0.3.0/tests/test_linter.py +58 -0
- flywheel_verify-0.3.0/tests/test_live_feeds.py +71 -0
- flywheel_verify-0.3.0/tests/test_local_agent.py +176 -0
- flywheel_verify-0.3.0/tests/test_local_agentic.py +290 -0
- flywheel_verify-0.3.0/tests/test_local_git.py +62 -0
- flywheel_verify-0.3.0/tests/test_local_mcp.py +58 -0
- flywheel_verify-0.3.0/tests/test_local_model_launch_readiness.py +109 -0
- flywheel_verify-0.3.0/tests/test_local_model_resource_preflight.py +84 -0
- flywheel_verify-0.3.0/tests/test_local_model_serve_launcher.py +96 -0
- flywheel_verify-0.3.0/tests/test_local_repomap.py +66 -0
- flywheel_verify-0.3.0/tests/test_loop_closure.py +92 -0
- flywheel_verify-0.3.0/tests/test_loop_criteria.py +225 -0
- flywheel_verify-0.3.0/tests/test_loops.py +106 -0
- flywheel_verify-0.3.0/tests/test_lsp_bridge.py +82 -0
- flywheel_verify-0.3.0/tests/test_lsp_diagnostics.py +47 -0
- flywheel_verify-0.3.0/tests/test_m1_falsifier.py +66 -0
- flywheel_verify-0.3.0/tests/test_manim_lesson.py +61 -0
- flywheel_verify-0.3.0/tests/test_map_elites.py +89 -0
- flywheel_verify-0.3.0/tests/test_marketplace.py +87 -0
- flywheel_verify-0.3.0/tests/test_matmul_oracle.py +88 -0
- flywheel_verify-0.3.0/tests/test_mcp_client.py +142 -0
- flywheel_verify-0.3.0/tests/test_mcp_tool_health_receipts.py +57 -0
- flywheel_verify-0.3.0/tests/test_mcts.py +181 -0
- flywheel_verify-0.3.0/tests/test_measurement_oracle.py +180 -0
- flywheel_verify-0.3.0/tests/test_membudget.py +70 -0
- flywheel_verify-0.3.0/tests/test_memory_api.py +60 -0
- flywheel_verify-0.3.0/tests/test_merkle.py +52 -0
- flywheel_verify-0.3.0/tests/test_merkle_known_answers.py +191 -0
- flywheel_verify-0.3.0/tests/test_messages_api.py +160 -0
- flywheel_verify-0.3.0/tests/test_model_card_claim_table.py +120 -0
- flywheel_verify-0.3.0/tests/test_model_endpoint_gate.py +249 -0
- flywheel_verify-0.3.0/tests/test_model_endpoint_profiles.py +121 -0
- flywheel_verify-0.3.0/tests/test_model_publish_plan.py +120 -0
- flywheel_verify-0.3.0/tests/test_model_release_readiness.py +176 -0
- flywheel_verify-0.3.0/tests/test_model_repo_stage.py +160 -0
- flywheel_verify-0.3.0/tests/test_model_routing.py +238 -0
- flywheel_verify-0.3.0/tests/test_model_shim.py +186 -0
- flywheel_verify-0.3.0/tests/test_no_aggregate_over_the_person.py +158 -0
- flywheel_verify-0.3.0/tests/test_oracle_conformance.py +45 -0
- flywheel_verify-0.3.0/tests/test_oracle_env_boundary.py +32 -0
- flywheel_verify-0.3.0/tests/test_oracle_hostile_candidate.py +37 -0
- flywheel_verify-0.3.0/tests/test_oracle_qa.py +281 -0
- flywheel_verify-0.3.0/tests/test_oracle_registry.py +125 -0
- flywheel_verify-0.3.0/tests/test_oracle_verdict_widening.py +55 -0
- flywheel_verify-0.3.0/tests/test_package_ship_doctor.py +152 -0
- flywheel_verify-0.3.0/tests/test_parity.py +55 -0
- flywheel_verify-0.3.0/tests/test_passn_forecast.py +80 -0
- flywheel_verify-0.3.0/tests/test_passn_model.py +103 -0
- flywheel_verify-0.3.0/tests/test_perception_probe.py +83 -0
- flywheel_verify-0.3.0/tests/test_perturb_instances.py +178 -0
- flywheel_verify-0.3.0/tests/test_pipeline.py +71 -0
- flywheel_verify-0.3.0/tests/test_plugins.py +73 -0
- flywheel_verify-0.3.0/tests/test_policy.py +91 -0
- flywheel_verify-0.3.0/tests/test_pool.py +206 -0
- flywheel_verify-0.3.0/tests/test_pool_arms.py +233 -0
- flywheel_verify-0.3.0/tests/test_prereg_event.py +203 -0
- flywheel_verify-0.3.0/tests/test_probe_tool_specs.py +61 -0
- flywheel_verify-0.3.0/tests/test_profiles_workflows.py +246 -0
- flywheel_verify-0.3.0/tests/test_projects_index.py +52 -0
- flywheel_verify-0.3.0/tests/test_prompt_canonical.py +75 -0
- flywheel_verify-0.3.0/tests/test_prompt_forge.py +92 -0
- flywheel_verify-0.3.0/tests/test_proof_cache.py +164 -0
- flywheel_verify-0.3.0/tests/test_provenance_cache.py +55 -0
- flywheel_verify-0.3.0/tests/test_provenance_trace.py +53 -0
- flywheel_verify-0.3.0/tests/test_provider_roles.py +63 -0
- flywheel_verify-0.3.0/tests/test_providers.py +113 -0
- flywheel_verify-0.3.0/tests/test_public_instructions.py +260 -0
- flywheel_verify-0.3.0/tests/test_publish_lint.py +92 -0
- flywheel_verify-0.3.0/tests/test_publish_to_huggingface.py +75 -0
- flywheel_verify-0.3.0/tests/test_pytest_oracle_skip.py +36 -0
- flywheel_verify-0.3.0/tests/test_python_floor.py +129 -0
- flywheel_verify-0.3.0/tests/test_qa_gated_admission.py +129 -0
- flywheel_verify-0.3.0/tests/test_qcr_amplitude_manifest.py +458 -0
- flywheel_verify-0.3.0/tests/test_quality_duel.py +89 -0
- flywheel_verify-0.3.0/tests/test_quant_dither.py +85 -0
- flywheel_verify-0.3.0/tests/test_quorum.py +140 -0
- flywheel_verify-0.3.0/tests/test_raster_fx.py +77 -0
- flywheel_verify-0.3.0/tests/test_rationale_preamble.py +140 -0
- flywheel_verify-0.3.0/tests/test_receipt_denominator_v3.py +292 -0
- flywheel_verify-0.3.0/tests/test_receipt_sign.py +276 -0
- flywheel_verify-0.3.0/tests/test_receipt_store_sinks.py +57 -0
- flywheel_verify-0.3.0/tests/test_receipt_v2.py +276 -0
- flywheel_verify-0.3.0/tests/test_receipts_ledger.py +76 -0
- flywheel_verify-0.3.0/tests/test_reheater.py +100 -0
- flywheel_verify-0.3.0/tests/test_release_readiness.py +98 -0
- flywheel_verify-0.3.0/tests/test_render.py +161 -0
- flywheel_verify-0.3.0/tests/test_render_report.py +173 -0
- flywheel_verify-0.3.0/tests/test_research_theses.py +123 -0
- flywheel_verify-0.3.0/tests/test_retention_and_ttva.py +96 -0
- flywheel_verify-0.3.0/tests/test_risk_review.py +62 -0
- flywheel_verify-0.3.0/tests/test_rl_from_oracle.py +143 -0
- flywheel_verify-0.3.0/tests/test_rl_group_sampling.py +141 -0
- flywheel_verify-0.3.0/tests/test_router.py +62 -0
- flywheel_verify-0.3.0/tests/test_router_agent.py +135 -0
- flywheel_verify-0.3.0/tests/test_router_stats.py +126 -0
- flywheel_verify-0.3.0/tests/test_routing_receipt.py +35 -0
- flywheel_verify-0.3.0/tests/test_run_acceptance_command.py +254 -0
- flywheel_verify-0.3.0/tests/test_run_acceptance_command_hardening.py +181 -0
- flywheel_verify-0.3.0/tests/test_run_demo_pool.py +277 -0
- flywheel_verify-0.3.0/tests/test_run_demo_pool_extraction.py +186 -0
- flywheel_verify-0.3.0/tests/test_run_index_receipt.py +169 -0
- flywheel_verify-0.3.0/tests/test_run_paths.py +40 -0
- flywheel_verify-0.3.0/tests/test_run_review.py +124 -0
- flywheel_verify-0.3.0/tests/test_rung_digests.py +257 -0
- flywheel_verify-0.3.0/tests/test_rung_pins.py +118 -0
- flywheel_verify-0.3.0/tests/test_runtime_activation_contract.py +44 -0
- flywheel_verify-0.3.0/tests/test_scaffold.py +113 -0
- flywheel_verify-0.3.0/tests/test_schema_trace_intake.py +127 -0
- flywheel_verify-0.3.0/tests/test_schematic_drift_check.py +53 -0
- flywheel_verify-0.3.0/tests/test_science_bench.py +155 -0
- flywheel_verify-0.3.0/tests/test_scout.py +98 -0
- flywheel_verify-0.3.0/tests/test_scout_calibration.py +98 -0
- flywheel_verify-0.3.0/tests/test_sealed_claims_preimage.py +46 -0
- flywheel_verify-0.3.0/tests/test_search.py +115 -0
- flywheel_verify-0.3.0/tests/test_search_integration.py +83 -0
- flywheel_verify-0.3.0/tests/test_second_brain.py +66 -0
- flywheel_verify-0.3.0/tests/test_selector.py +332 -0
- flywheel_verify-0.3.0/tests/test_serve_receipts.py +88 -0
- flywheel_verify-0.3.0/tests/test_session_ingest.py +38 -0
- flywheel_verify-0.3.0/tests/test_session_tools.py +157 -0
- flywheel_verify-0.3.0/tests/test_shell_admission.py +192 -0
- flywheel_verify-0.3.0/tests/test_silhouette.py +44 -0
- flywheel_verify-0.3.0/tests/test_snapshot_blockpage.py +70 -0
- flywheel_verify-0.3.0/tests/test_sound_studio.py +54 -0
- flywheel_verify-0.3.0/tests/test_spacing_scheduler.py +47 -0
- flywheel_verify-0.3.0/tests/test_statistics.py +156 -0
- flywheel_verify-0.3.0/tests/test_store.py +130 -0
- flywheel_verify-0.3.0/tests/test_structure_mapping.py +60 -0
- flywheel_verify-0.3.0/tests/test_subscription_auth.py +228 -0
- flywheel_verify-0.3.0/tests/test_suite_audit.py +90 -0
- flywheel_verify-0.3.0/tests/test_superproject.py +47 -0
- flywheel_verify-0.3.0/tests/test_task_curator.py +279 -0
- flywheel_verify-0.3.0/tests/test_tasks_expert.py +28 -0
- flywheel_verify-0.3.0/tests/test_tasks_hard.py +35 -0
- flywheel_verify-0.3.0/tests/test_tasks_lib.py +66 -0
- flywheel_verify-0.3.0/tests/test_tasks_physics.py +101 -0
- flywheel_verify-0.3.0/tests/test_telos_kernels.py +52 -0
- flywheel_verify-0.3.0/tests/test_tension_ledger.py +110 -0
- flywheel_verify-0.3.0/tests/test_tool_call_receipt.py +280 -0
- flywheel_verify-0.3.0/tests/test_tool_call_receipt_integration.py +100 -0
- flywheel_verify-0.3.0/tests/test_tool_hardening_plan.py +135 -0
- flywheel_verify-0.3.0/tests/test_tool_integration_contract.py +50 -0
- flywheel_verify-0.3.0/tests/test_tool_operator_guide.py +38 -0
- flywheel_verify-0.3.0/tests/test_tool_readiness_receipts.py +51 -0
- flywheel_verify-0.3.0/tests/test_tool_receipts.py +66 -0
- flywheel_verify-0.3.0/tests/test_tool_rescue.py +54 -0
- flywheel_verify-0.3.0/tests/test_train_surface.py +48 -0
- flywheel_verify-0.3.0/tests/test_train_surface_uplift.py +45 -0
- flywheel_verify-0.3.0/tests/test_trainer_diagnostics.py +226 -0
- flywheel_verify-0.3.0/tests/test_training_lane.py +186 -0
- flywheel_verify-0.3.0/tests/test_trajectory_curator.py +141 -0
- flywheel_verify-0.3.0/tests/test_trajectory_intake.py +104 -0
- flywheel_verify-0.3.0/tests/test_transitive_integration.py +79 -0
- flywheel_verify-0.3.0/tests/test_transitive_witness.py +114 -0
- flywheel_verify-0.3.0/tests/test_transparency_log.py +55 -0
- flywheel_verify-0.3.0/tests/test_transpile.py +88 -0
- flywheel_verify-0.3.0/tests/test_tree_head.py +181 -0
- flywheel_verify-0.3.0/tests/test_trustcard.py +70 -0
- flywheel_verify-0.3.0/tests/test_turbulence.py +39 -0
- flywheel_verify-0.3.0/tests/test_typed_battery.py +85 -0
- flywheel_verify-0.3.0/tests/test_typeface_family.py +128 -0
- flywheel_verify-0.3.0/tests/test_typeface_forge.py +85 -0
- flywheel_verify-0.3.0/tests/test_typeface_gallery.py +80 -0
- flywheel_verify-0.3.0/tests/test_typeface_ttf.py +70 -0
- flywheel_verify-0.3.0/tests/test_unicode_guard.py +158 -0
- flywheel_verify-0.3.0/tests/test_unisonai_stateful_bench.py +364 -0
- flywheel_verify-0.3.0/tests/test_uplift_bench.py +181 -0
- flywheel_verify-0.3.0/tests/test_valve_flywheel.py +40 -0
- flywheel_verify-0.3.0/tests/test_verdict.py +43 -0
- flywheel_verify-0.3.0/tests/test_verify_receipt.py +62 -0
- flywheel_verify-0.3.0/tests/test_web_snapshot.py +42 -0
- flywheel_verify-0.3.0/tests/test_web_snapshot_ssrf.py +61 -0
- flywheel_verify-0.3.0/tests/test_why.py +251 -0
- flywheel_verify-0.3.0/tests/test_wiki.py +114 -0
- flywheel_verify-0.3.0/tests/test_wiki_writeback.py +60 -0
- flywheel_verify-0.3.0/tests/test_workspace_lens.py +37 -0
- flywheel_verify-0.3.0/tests/test_workspace_root.py +69 -0
- flywheel_verify-0.3.0/tests/test_workspace_state.py +42 -0
- flywheel_verify-0.3.0/tests/test_worktree_preflight.py +60 -0
- flywheel_verify-0.3.0/tests/test_world.py +64 -0
- flywheel_verify-0.3.0/tests/test_world_merkle.py +35 -0
- flywheel_verify-0.3.0/tests/test_writing_lists.py +38 -0
- flywheel_verify-0.3.0/tests/test_writing_profiles.py +86 -0
- flywheel_verify-0.3.0/tests/test_writing_pysource.py +59 -0
- flywheel_verify-0.3.0/tests/test_writing_report_checks.py +193 -0
- 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).
|