sourcecode 5.8.5__tar.gz → 5.8.6__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.
- {sourcecode-5.8.5 → sourcecode-5.8.6}/CHANGELOG.md +87 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/PKG-INFO +11 -9
- {sourcecode-5.8.5 → sourcecode-5.8.6}/README.md +10 -8
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/CACHE.md +4 -1
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/DEFECT-LEDGER.md +11 -10
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/DEVELOPMENT-ROADMAP.md +150 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/EXECUTIVE-ROADMAP.md +22 -12
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/USER_GUIDE.md +58 -10
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/REGRESSION-GATE.md +39 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/pyproject.toml +1 -1
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/perf_harness.py +139 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/__init__.py +1 -1
- sourcecode-5.8.6/src/sourcecode/answer_bounds.py +230 -0
- sourcecode-5.8.6/src/sourcecode/audit_recipe.py +289 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/breaking_changes.py +10 -14
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/cache_model.py +19 -1
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/cli.py +265 -19
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/envelope.py +15 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/format_contract.py +2 -0
- sourcecode-5.8.6/src/sourcecode/functional_routes.py +425 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/perf.py +258 -0
- sourcecode-5.8.6/src/sourcecode/regress.py +264 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/repository_ir.py +188 -18
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/risk.py +163 -32
- sourcecode-5.8.6/src/sourcecode/schema_producers.py +247 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schema_registry.py +37 -2
- sourcecode-5.8.6/src/sourcecode/selftest.py +445 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/timeline.py +72 -27
- sourcecode-5.8.6/src/sourcecode/timeline_cache.py +174 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/.github/workflows/build-windows.yml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/.github/workflows/perf-gate.yml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/.gitignore +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/.ruff.toml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/CLAUDE.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/CONTRIBUTING.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/LICENSE +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/NOTICE +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/SECURITY.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/COMMERCIAL-OFFER.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/CUSTOMER-VALIDATION.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/DEMO-5MIN.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/EXECUTION-PLAN-12MO.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/MANUAL-USUARIO.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/MODERNIZATION.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/PRODUCT_AUDIT.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/PRODUCT_IDENTITY.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/PRODUCT_TIERS.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/RC1-CHECKLIST.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/RELEASE-CHECKLIST.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/CATALOG-retrieval-intents.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-knowledge-provider-integration.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-p5.3b-statement-surface.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-p5.5-span-index.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-p6-semantic-impact-engine.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-p6-semantic-integration-engine.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-p7-semantic-services.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-robustness-security-inference.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/DESIGN-semantic-retrieval.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/EPV-p6-class-typeref.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/REPORT-p6-flow-analyzer-comparison.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/REPORT-p6-integration-detector-comparison.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/REPORT-p8-flow-analyzer-migration.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/REPORT-p9-integration-detector-migration.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0001-semantic-ir.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0002-source-evidence-boundary.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0003-architectural-characterization.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0004-semantic-retrieval.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0005-evidence-reconciliation.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0006-performance-harness.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0007-composition-semantics.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/adr/0008-answer-coherence.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/consumer-disposition-inventory.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/overview.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/product-architecture-review.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/product-strategy-layering.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/semantic-ir-consumer-matrix.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/architecture/semantic-ir-roadmap.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/baseline-ci.yml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/commercial-pipeline-audit.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/contracts-ci.yml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/contracts.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-15-petclinic-rest-issue11-vets-pagination.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-15-petclinic-rest-issue147-validation.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-15-petclinic-rest-workflow.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-15-phase18-openapi-surface.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-15-phase20-validation-surface.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-16-broadleaf-checkout-impact-fieldtest.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-16-petclinic-rest-issue11-weakness2-closed.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/eval/2026-06-16-spring-petclinic-issue2333-dead-vets.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/licensing-schema.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/migrate-check.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/README.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/SUMMARY.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/alfresco__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/alfresco__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/broadleaf__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/broadleaf__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/eureka__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/eureka__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/jenkins__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/jenkins__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/jobrunr__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/jobrunr__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/keycloak__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/keycloak__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/neo4j__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/neo4j__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/ofbiz__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/ofbiz__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/openmrs__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/openmrs__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/petclinic__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.15/petclinic__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/SUMMARY.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/alfresco__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/alfresco__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/broadleaf__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/broadleaf__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/eureka__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/eureka__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/jenkins__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/jenkins__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/jobrunr__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/jobrunr__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/keycloak__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/keycloak__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/neo4j__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/neo4j__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/ofbiz__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/ofbiz__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/openmrs__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/openmrs__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/petclinic__ask__cold.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/2.5.16/petclinic__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/README.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__ask__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__endpoints__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__migrate-check__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__posture__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__spring-audit__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/gate-latest/broadleaf__validation__warm.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/perf/baselines/reference-best/README.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/posture.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/privacy.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/pro-experience-audit.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/schema.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/spec/envelope-v1.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/docs/spring-audit-ci.yml +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/compare_integration_engines.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/customer_smoke_test.sh +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/generate_jdk_exports.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/perf_gate.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/scripts/sync_gate_anchors.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/adaptive_scanner.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/archetype.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/architectural_baseline.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/architectural_delta.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/architecture_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/architecture_summary.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/ast_extractor.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/audit_report.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/baseline_autocapture.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/build_modules.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/bundled_docs.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/cache.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/call_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/caller_metrics.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/caller_reach.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/canonical_ir.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/chain_rules.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/change_plan.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/cir_graphs.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/classifier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/client_calls.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/code_notes_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/compare.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/confidence_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/constraint_diff.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/consumer_join.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/container_wiring.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/context_cache.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/context_graph.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/context_scorer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/context_summarizer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/contract_diff.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/contract_init.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/contract_model.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/contract_pipeline.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/coverage_parser.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/data_exposure.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/data_labels.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/declarations.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/defect_identity.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/degradation.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/dependency_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/deployment_prefix.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detach.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/base.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/csproj_parser.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/dart.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/dotnet.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/elixir.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/go.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/heuristic.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/hybrid.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/java.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/jvm_ext.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/nodejs.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/parsers.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/php.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/project.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/python.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/ruby.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/rust.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/systems.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/terraform.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/detectors/tooling.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/doc_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/dynamic_argument_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/empty_reach.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/endpoint_disposition.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/endpoint_literals.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/endpoint_metrics.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/entrypoint_classifier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/env_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/environment_resolution.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/error_schema.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/evidence_provider.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/execution_plan.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/explain.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/facts/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/facts/registry.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/file_chunker.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/file_classifier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/filter_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/fqn_utils.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/gate_anchors.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/git_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/git_checkout.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/graph_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/graph_evidence.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/hibernate_strat.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/identity_fallback.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/integration_coordinates.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/jdk_exports.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/license.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/manifest_cache.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/dependency_import.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/onboarding/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/onboarding/applier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/onboarding/backup.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/onboarding/detector.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/onboarding/planner.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/orchestrator.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/registry.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/runner.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp/server.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/mcp_nudge.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/metrics_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/migrate_check.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/migration_blast.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/non_coverage.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/openapi_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/openrewrite_recipe.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/output_bounds.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/output_budget.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/output_ceiling.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/output_encoding.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/output_sink.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/parallel.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/parse_cache.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/partial_contract.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/path_admission.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/path_filters.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/phased_run.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/pipe_contract.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/posture.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/pr_comment_renderer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/pr_impact.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/prepare_context.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/product_info.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/progress.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/provenance.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/ranking_engine.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/readiness_timeline.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/readonly.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/reconciliation.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/redactor.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/reference_facts.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/release_info.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/relevance_scorer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/remedies.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/rename_refactor.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/repo_classifier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/context.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/errors.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/executor.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/planner.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/query.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/request.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/resolution.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/result.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/retriever.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/runtime.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_endpoint.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_graph.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_impact.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_intf.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_struct.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/retrieval/steps_txsec.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/ris.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/risk_model.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/rule_catalog.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/rule_pass.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/runs.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/runtime_classifier.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/sarif.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/scanner.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schema.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/core-analysis-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/endpoints-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/envelope-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/pr-impact-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/verify-edit-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/schemas/verify-v1.schema.json +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/security_chain.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/security_config.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/security_config_scan.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/security_posture.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/semantic_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/semantic_impact_engine.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/semantic_integration_engine.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/semantic_services.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/serializer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/servlet_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/source_text.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_event_topology.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_findings.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_impact.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_model.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_profiles.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_properties.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_security_audit.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_semantic.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/spring_tx_analyzer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/sql_taint.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/summarizer.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/target_admission.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/__init__.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/config.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/consent.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/events.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/filters.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/telemetry/transport.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/test_gap_ranking.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/test_sources.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/text_input.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/token_estimate.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/tree_utils.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/type_usage_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/validation_inference.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/validation_surface.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/verify_edit.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/verify_repo.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/verify_rules.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/version_check.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/waivers.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/src/sourcecode/workspace.py +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/functions/README.md +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/functions/get-license/index.ts +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/functions/lemonsqueezy-webhook/index.ts +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/functions/telemetry/index.ts +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/sql/license_event_ordering.sql +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/sql/licensing_schema.sql +0 -0
- {sourcecode-5.8.5 → sourcecode-5.8.6}/supabase/sql/telemetry_events.sql +0 -0
|
@@ -2,6 +2,93 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [5.8.6] — 2026-08-18
|
|
6
|
+
|
|
7
|
+
*The queue the two 5.8.5 re-audits left, worked in their own order, and the
|
|
8
|
+
theme is again measurement: two of the five rows were closed by **refuting the
|
|
9
|
+
premise the queue carried** — the HTTP-input walk's cost turned out to be a
|
|
10
|
+
parse nobody needed, and the rule pass everyone wanted parallelised is 8 % of
|
|
11
|
+
the clock. The only defect either corpus still held open — WebFlux functional
|
|
12
|
+
routing, eight cycles — is modelled. Four features that had been proposed for
|
|
13
|
+
three rounds without landing shipped behind it.*
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **A series never measures a commit it has already measured** (C3-129,
|
|
17
|
+
residual of C3-128). The phase split said 82,9 % `measure:<metric>` and
|
|
18
|
+
13,8 % materialising the tree, so the command was not slow — it was one
|
|
19
|
+
analysis paid once per sampled tree, re-paid on every overlapping re-run. A
|
|
20
|
+
sampled metric is a pure function of the tree at a sha, which makes the key
|
|
21
|
+
exact rather than heuristic: analyzer fingerprint + metric + commit. Measured
|
|
22
|
+
on BroadleafCommerce: **26 845 ms → 12 ms** on the same range, samples and
|
|
23
|
+
transitions byte-identical, and the tree is not materialised at all when
|
|
24
|
+
every watched metric is a hit. A failed sample is never stored, the hit is
|
|
25
|
+
published (`sample_cache`, `from_cache`), and `--no-cache` measures
|
|
26
|
+
everything again.
|
|
27
|
+
- **The HTTP-input walk parses only what it can reach** (C3-127). Two corpora
|
|
28
|
+
put `reading HTTP-input query sinks` at the top of `risk`; instrumented, none
|
|
29
|
+
of it was the analysis: 14,0 s of method extraction over 2 766 files feeding
|
|
30
|
+
a walk that runs in 0,01 s and finds nothing. The walk resolves callees by
|
|
31
|
+
name, and a file whose text cannot contain that name cannot declare it — an
|
|
32
|
+
equivalence, not a heuristic. Measured end to end: **risk 13 396 → 5 722 ms
|
|
33
|
+
(−57 %)**, the phase 10 126 → 526 ms, every row byte-identical.
|
|
34
|
+
- **The measurement protocol ships as code, with a control command**
|
|
35
|
+
(P1-proc, seventh request). `steady_verdict` (six runs, not four — a
|
|
36
|
+
transient survived four passes and died on six), `contention_verdict` (a
|
|
37
|
+
control command interleaved: if the cheap command disperses too, the host is
|
|
38
|
+
the subject and nothing may be attributed to the build), `host_verdict` (no
|
|
39
|
+
other `ask` process, since cross-session contention has produced +549 %
|
|
40
|
+
here), and `scripts/perf_harness.py --steady` to run them. The field's three
|
|
41
|
+
sessions are replayed as data, so a later change to a threshold that stops
|
|
42
|
+
classifying them correctly fails in the battery instead of in a round.
|
|
43
|
+
- **Every renamed shape names its producer or says why it cannot** (B21). The
|
|
44
|
+
producer is derived from the registered command tree and the import graph
|
|
45
|
+
rather than typed out; five of the six silent shapes now name a command, and
|
|
46
|
+
the sixth (`canonical-ir-v1`, reached from 28 modules) publishes `substrate`
|
|
47
|
+
with the count, because naming every command would be less true than naming
|
|
48
|
+
none.
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
- **WebFlux functional routing is modelled** (R2, eight cycles, the only defect
|
|
52
|
+
either corpus still held open). Paths are composed along the builder chain —
|
|
53
|
+
`.path(…)`, `.nest(…)`, the predicate form, and Kotlin's `coRouter { }` /
|
|
54
|
+
`"/x".nest { }` — so a route declared `/posts/{name}` under a nested prefix is
|
|
55
|
+
published at the path it is served on. Measured on halo: **0 → 155
|
|
56
|
+
endpoints**, and through the CIR the cascade closes too — `posture` and
|
|
57
|
+
`spring-audit` go from 0 to 173 endpoints analysed. A route whose base path is
|
|
58
|
+
decided where the router is mounted is published with `path_resolution:
|
|
59
|
+
unresolved` and the reason, never at an invented path.
|
|
60
|
+
- **`ask spring-audit --recipe`** (F-BS): the audit report as an
|
|
61
|
+
`openrewrite-plan-v1` document — the findings a published recipe repairs, and
|
|
62
|
+
for every finding no recipe repairs, why its fix is a decision rather than a
|
|
63
|
+
rewrite. On this rule catalogue that first set is empty today, and the plan
|
|
64
|
+
says so: a product claiming to fix a `@Transactional` private method or a
|
|
65
|
+
stored SHA-1 digest would be claiming to make those decisions for you.
|
|
66
|
+
- **`ask regress <before.json> <after.json>`** (F-BU): what moved between two
|
|
67
|
+
answers, with each delta attributed to a declaration the payloads already
|
|
68
|
+
carry, and `unattributed` for the ones nothing explains — the operational
|
|
69
|
+
definition of a silent regression. It refuses comparisons taken under
|
|
70
|
+
different cache states, which is what four of the field's nine false
|
|
71
|
+
positives were.
|
|
72
|
+
- **`ask selftest <repo>`** (F-BV): this product's own defect ledger, run
|
|
73
|
+
against your repository through the entry point you invoke. Seven rows ship;
|
|
74
|
+
a row whose precondition your repository does not meet answers
|
|
75
|
+
`not_applicable` with the reason, never `pass` — a green run over nothing is
|
|
76
|
+
how ASK-09 was closed twice.
|
|
77
|
+
- **`_meta.answer_bounds`** (F-BT): one envelope aggregating the twelve
|
|
78
|
+
disclosure fields this product publishes, so *"can I act on this answer?"* is
|
|
79
|
+
one line instead of twelve. It copies no value — provenance and confidence
|
|
80
|
+
are published as the paths where the payload states them — and lives under
|
|
81
|
+
`_meta`, so no payload shape a consumer pins moves.
|
|
82
|
+
|
|
83
|
+
### Changed
|
|
84
|
+
- **Four commands leave the experimental tier on their evidence**: `risk`,
|
|
85
|
+
`data-exposure`, `audit-report` and `migrate-recipe` become `supported` after
|
|
86
|
+
ten external rounds on two corpora with a census that never moved. The three
|
|
87
|
+
that stay now name what is still moving (`cli.EXPERIMENTAL_BASIS`), so
|
|
88
|
+
membership of that tier is a decision rather than an omission — `posture`
|
|
89
|
+
spent four releases published as *"do not gate CI on it"* while two field
|
|
90
|
+
evaluations recommended it first.
|
|
91
|
+
|
|
5
92
|
## [5.8.5] — 2026-08-18
|
|
6
93
|
|
|
7
94
|
*Six rows, and the theme is that four of them were closed by **measuring** rather
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcecode
|
|
3
|
-
Version: 5.8.
|
|
3
|
+
Version: 5.8.6
|
|
4
4
|
Summary: Persistent structural context and ultra-fast repeated analysis for AI coding agents
|
|
5
5
|
Project-URL: Homepage, https://github.com/HarounDominique/sourcecode
|
|
6
6
|
Project-URL: Repository, https://github.com/HarounDominique/sourcecode
|
|
@@ -49,7 +49,7 @@ Description-Content-Type: text/markdown
|
|
|
49
49
|
|
|
50
50
|
**Context · Impact · Migration · Architecture · Review — everything from one structural model.**
|
|
51
51
|
|
|
52
|
-

|
|
53
53
|

|
|
54
54
|
|
|
55
55
|
Copyright (c) 2026 Dominique Haroun. All rights reserved. ASK Engine 5.7.0 and
|
|
@@ -137,7 +137,7 @@ brew tap haroundominique/sourcecode && brew install sourcecode
|
|
|
137
137
|
# pip / pipx
|
|
138
138
|
pipx install sourcecode # or: pip install sourcecode
|
|
139
139
|
|
|
140
|
-
ask version # ask 5.8.
|
|
140
|
+
ask version # ask 5.8.6 — and, on a build that has aged,
|
|
141
141
|
# how many releases have probably shipped since
|
|
142
142
|
```
|
|
143
143
|
|
|
@@ -328,7 +328,7 @@ Unresolved is a first-class outcome: a condition the resolver cannot decide is r
|
|
|
328
328
|
hole with the condition named, never folded into active or inactive. **A posture answer that
|
|
329
329
|
guesses is a confident security falsehood — the worst failure mode this tool has.**
|
|
330
330
|
|
|
331
|
-
### 5c · Composed Risk
|
|
331
|
+
### 5c · Composed Risk
|
|
332
332
|
Every command above answers one axis, and a reader composes them by hand. `ask risk` does the
|
|
333
333
|
join over the endpoint and symbol ids these commands already share with each other:
|
|
334
334
|
`severity_effective = defect_severity × reachability × auth_verdict × write_effect × query_construction × input_constraints`. The
|
|
@@ -370,7 +370,7 @@ experimental: both are true, and they are two different facts.
|
|
|
370
370
|
|---|---|---|
|
|
371
371
|
| **core** | contract stable within a major — safe to gate CI on | `endpoints` · `spring-audit` · `migrate-check` · `impact` · `impact-chain` · `pr-impact` · `verify` |
|
|
372
372
|
| **supported** | maintained; fields are added, never removed without a major | every command not named in another row |
|
|
373
|
-
| **experimental** | shape may change in a minor — do not gate CI on it | `
|
|
373
|
+
| **experimental** | shape may change in a minor — do not gate CI on it | `enrich` · `archetype` · `timeline` |
|
|
374
374
|
| **parked** | kept working, no longer developed | `retrieve` |
|
|
375
375
|
|
|
376
376
|
The same table is printed by `ask --help`, and both are generated from one authority
|
|
@@ -387,11 +387,11 @@ from it.
|
|
|
387
387
|
| Command | Tier | Answers | Note |
|
|
388
388
|
|---|---|---|---|
|
|
389
389
|
| `posture` | supported | which beans a profile set wires, and how effective endpoint access differs between two sets | the most differentiated capability here. `--resolve-environments` says which set the repository decides; `--profile-from <file>` reads the artefact that actually decides it (Kubernetes manifest, compose file, deployment plan, `Dockerfile`, dotenv) and answers under that set, with the `file:line` — deciding nothing leaves the verdict untouched |
|
|
390
|
-
| `risk` |
|
|
390
|
+
| `risk` | supported | what each defect actually costs, once reach, access, write effect and the shape of the input path are in it | `defect_severity × reachability × auth_verdict × write_effect × query_construction × input_constraints`; every factor names its authority; the `query_construction` factor covers MyBatis `${}` splicing with a three-state verdict (`reaches` / `does_not_reach` / `undecidable`) and publishes the census; `--table --rule SEC-008 --band high --top-n 20` gives audit triage without `jq` |
|
|
391
391
|
| `enrich` | experimental | another scanner's SARIF findings, ranked by what this repository does with them | `--sarif <log>`; same composition as `risk`, with `--table --rule <id> --band high --top-n 20` for triage |
|
|
392
|
-
| `audit-report` |
|
|
393
|
-
| `migrate-recipe` |
|
|
394
|
-
| `data-exposure` |
|
|
392
|
+
| `audit-report` | supported | human audit bundle over existing `risk` + `posture` evidence, optionally signed | includes `evidence_manifest` claim provenance; `--format markdown`; `--sign-key <file>` signs canonical JSON with HMAC-SHA256 |
|
|
393
|
+
| `migrate-recipe` | supported | the migration report as the OpenRewrite recipe that applies it | only recipes a finding named; the manual remainder published beside them; writes nothing without `--write`, and never a runnable command for an empty recipe list |
|
|
394
|
+
| `data-exposure` | supported | which routes can carry the data you labelled, and who reaches them | labels declared in `sourcecode.config.json` — never inferred from a name; `signature` and `call_reach` evidence published apart, field-level flow out of scope (NC-008). With nothing declared, `ask data-exposure /path/to/repo` answers `answered: false` and hands back the file, the key and an example to declare — it never reports zero exposed routes |
|
|
395
395
|
| `endpoints` | core | every REST endpoint, effective path, security policy, confidence | Spring MVC + JAX-RS (~65 % recall on JAX-RS sub-resource locators). `--compact` answers the exposure census without the rows; `--servlets` lists the servlet-mounted surface as its own population; `--client-usage` says which routes the TS/JS client in this repository actually calls; `--consumer <repo>` (repeatable) joins the routes against consumers in **other** repositories — TypeScript/JS and Java — and turns the census into a surface-reduction plan: open and called (fix now), open and called by nobody (delete rather than guard), and calls this server serves no route for |
|
|
396
396
|
| `spring-audit` | core | transactional anomalies + security configuration/exposure + validation gaps | `--ci`, `-f github-comment`; `--table --rule SEC-008 --top-n 20` for human-scale review. Every run inventories its own rules — `rules_run`, `rules_not_run`, `rules_partially_run`, `rules_run_count`/`rules_total` — so "all of them" is a fact, not an assumption |
|
|
397
397
|
| `migrate-check` | core | Boot 2→3 readiness + Java LTS/licensing inventory: located blockers, per-dimension score, effort, detected Java 8/11/17/21/25 evidence and explicit licensing-review signals | `--target-jdk 25` sets the target LTS route; `--blast-radius` orders the re-test plan; `--table --rule MIG-001 --band critical --top-n 20` for blocker triage |
|
|
@@ -409,6 +409,8 @@ from it.
|
|
|
409
409
|
| `baseline capture\|diff` · `trend` | supported | versioned architectural metrics over time; `ask trend .` reads the series (a repository path or a baselines directory), `ask baseline diff .` compares the tree against its newest point | trend reporting, not gating. Baselines land in `.ask/baselines` **inside the repository** — the history travels with the code, not with a vendor; an audit that must not write passes `--dir`. `capture --auto` is the unattended form (one baseline per commit, never rewrites one, never fails the build) — automate it: [baseline-ci.yml](docs/baseline-ci.yml) |
|
|
410
410
|
| `retrieve` | parked | typed knowledge queries over the model | |
|
|
411
411
|
| `timeline` | experimental | since when a number moved, and in which commit window | walks the commit series and re-runs the shipped analyses (`posture`, `data-exposure`, `endpoints`, `spring-audit`) on a read-only materialisation of each sampled tree; publishes transitions, not a per-commit dump. A sample that could not be analysed is `null` with a reason, never 0, and a transition under sampling carries the window it could have happened in |
|
|
412
|
+
| `regress` | supported | what moved between two payloads of the same command, and which declaration accounts for it | attributes each delta to a declaration the answers carry (`test_source_excluded`, `symbols_excluded`, `coverage.gaps`, `*_cap`, `waivers`); a delta nothing explains is `unattributed`. Refuses the comparison when `cache_layers`, `base_env` or the analyzer fingerprint differ |
|
|
413
|
+
| `selftest` | supported | this product's own defect ledger, run against your repository | each ledger row's acceptance criterion as an executable assertion, with the subject (repository, size, platform, entry point) beside every verdict; a row whose precondition the repository does not meet is `not_applicable` with the reason, never a pass |
|
|
412
414
|
| `archetype` | experimental | evidence-based architectural archetype | |
|
|
413
415
|
| `rename-class` / `chunk-file` | supported | word-boundary Java rename; split a large file for an agent | |
|
|
414
416
|
| `cache status\|warm\|model\|clear` · `auth` · `telemetry` · `mcp` · `config` · `version` | supported | housekeeping | `cache model [path]` explains what a warm buys per command; `activate` too |
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**Context · Impact · Migration · Architecture · Review — everything from one structural model.**
|
|
6
6
|
|
|
7
|
-

|
|
8
8
|

|
|
9
9
|
|
|
10
10
|
Copyright (c) 2026 Dominique Haroun. All rights reserved. ASK Engine 5.7.0 and
|
|
@@ -92,7 +92,7 @@ brew tap haroundominique/sourcecode && brew install sourcecode
|
|
|
92
92
|
# pip / pipx
|
|
93
93
|
pipx install sourcecode # or: pip install sourcecode
|
|
94
94
|
|
|
95
|
-
ask version # ask 5.8.
|
|
95
|
+
ask version # ask 5.8.6 — and, on a build that has aged,
|
|
96
96
|
# how many releases have probably shipped since
|
|
97
97
|
```
|
|
98
98
|
|
|
@@ -283,7 +283,7 @@ Unresolved is a first-class outcome: a condition the resolver cannot decide is r
|
|
|
283
283
|
hole with the condition named, never folded into active or inactive. **A posture answer that
|
|
284
284
|
guesses is a confident security falsehood — the worst failure mode this tool has.**
|
|
285
285
|
|
|
286
|
-
### 5c · Composed Risk
|
|
286
|
+
### 5c · Composed Risk
|
|
287
287
|
Every command above answers one axis, and a reader composes them by hand. `ask risk` does the
|
|
288
288
|
join over the endpoint and symbol ids these commands already share with each other:
|
|
289
289
|
`severity_effective = defect_severity × reachability × auth_verdict × write_effect × query_construction × input_constraints`. The
|
|
@@ -325,7 +325,7 @@ experimental: both are true, and they are two different facts.
|
|
|
325
325
|
|---|---|---|
|
|
326
326
|
| **core** | contract stable within a major — safe to gate CI on | `endpoints` · `spring-audit` · `migrate-check` · `impact` · `impact-chain` · `pr-impact` · `verify` |
|
|
327
327
|
| **supported** | maintained; fields are added, never removed without a major | every command not named in another row |
|
|
328
|
-
| **experimental** | shape may change in a minor — do not gate CI on it | `
|
|
328
|
+
| **experimental** | shape may change in a minor — do not gate CI on it | `enrich` · `archetype` · `timeline` |
|
|
329
329
|
| **parked** | kept working, no longer developed | `retrieve` |
|
|
330
330
|
|
|
331
331
|
The same table is printed by `ask --help`, and both are generated from one authority
|
|
@@ -342,11 +342,11 @@ from it.
|
|
|
342
342
|
| Command | Tier | Answers | Note |
|
|
343
343
|
|---|---|---|---|
|
|
344
344
|
| `posture` | supported | which beans a profile set wires, and how effective endpoint access differs between two sets | the most differentiated capability here. `--resolve-environments` says which set the repository decides; `--profile-from <file>` reads the artefact that actually decides it (Kubernetes manifest, compose file, deployment plan, `Dockerfile`, dotenv) and answers under that set, with the `file:line` — deciding nothing leaves the verdict untouched |
|
|
345
|
-
| `risk` |
|
|
345
|
+
| `risk` | supported | what each defect actually costs, once reach, access, write effect and the shape of the input path are in it | `defect_severity × reachability × auth_verdict × write_effect × query_construction × input_constraints`; every factor names its authority; the `query_construction` factor covers MyBatis `${}` splicing with a three-state verdict (`reaches` / `does_not_reach` / `undecidable`) and publishes the census; `--table --rule SEC-008 --band high --top-n 20` gives audit triage without `jq` |
|
|
346
346
|
| `enrich` | experimental | another scanner's SARIF findings, ranked by what this repository does with them | `--sarif <log>`; same composition as `risk`, with `--table --rule <id> --band high --top-n 20` for triage |
|
|
347
|
-
| `audit-report` |
|
|
348
|
-
| `migrate-recipe` |
|
|
349
|
-
| `data-exposure` |
|
|
347
|
+
| `audit-report` | supported | human audit bundle over existing `risk` + `posture` evidence, optionally signed | includes `evidence_manifest` claim provenance; `--format markdown`; `--sign-key <file>` signs canonical JSON with HMAC-SHA256 |
|
|
348
|
+
| `migrate-recipe` | supported | the migration report as the OpenRewrite recipe that applies it | only recipes a finding named; the manual remainder published beside them; writes nothing without `--write`, and never a runnable command for an empty recipe list |
|
|
349
|
+
| `data-exposure` | supported | which routes can carry the data you labelled, and who reaches them | labels declared in `sourcecode.config.json` — never inferred from a name; `signature` and `call_reach` evidence published apart, field-level flow out of scope (NC-008). With nothing declared, `ask data-exposure /path/to/repo` answers `answered: false` and hands back the file, the key and an example to declare — it never reports zero exposed routes |
|
|
350
350
|
| `endpoints` | core | every REST endpoint, effective path, security policy, confidence | Spring MVC + JAX-RS (~65 % recall on JAX-RS sub-resource locators). `--compact` answers the exposure census without the rows; `--servlets` lists the servlet-mounted surface as its own population; `--client-usage` says which routes the TS/JS client in this repository actually calls; `--consumer <repo>` (repeatable) joins the routes against consumers in **other** repositories — TypeScript/JS and Java — and turns the census into a surface-reduction plan: open and called (fix now), open and called by nobody (delete rather than guard), and calls this server serves no route for |
|
|
351
351
|
| `spring-audit` | core | transactional anomalies + security configuration/exposure + validation gaps | `--ci`, `-f github-comment`; `--table --rule SEC-008 --top-n 20` for human-scale review. Every run inventories its own rules — `rules_run`, `rules_not_run`, `rules_partially_run`, `rules_run_count`/`rules_total` — so "all of them" is a fact, not an assumption |
|
|
352
352
|
| `migrate-check` | core | Boot 2→3 readiness + Java LTS/licensing inventory: located blockers, per-dimension score, effort, detected Java 8/11/17/21/25 evidence and explicit licensing-review signals | `--target-jdk 25` sets the target LTS route; `--blast-radius` orders the re-test plan; `--table --rule MIG-001 --band critical --top-n 20` for blocker triage |
|
|
@@ -364,6 +364,8 @@ from it.
|
|
|
364
364
|
| `baseline capture\|diff` · `trend` | supported | versioned architectural metrics over time; `ask trend .` reads the series (a repository path or a baselines directory), `ask baseline diff .` compares the tree against its newest point | trend reporting, not gating. Baselines land in `.ask/baselines` **inside the repository** — the history travels with the code, not with a vendor; an audit that must not write passes `--dir`. `capture --auto` is the unattended form (one baseline per commit, never rewrites one, never fails the build) — automate it: [baseline-ci.yml](docs/baseline-ci.yml) |
|
|
365
365
|
| `retrieve` | parked | typed knowledge queries over the model | |
|
|
366
366
|
| `timeline` | experimental | since when a number moved, and in which commit window | walks the commit series and re-runs the shipped analyses (`posture`, `data-exposure`, `endpoints`, `spring-audit`) on a read-only materialisation of each sampled tree; publishes transitions, not a per-commit dump. A sample that could not be analysed is `null` with a reason, never 0, and a transition under sampling carries the window it could have happened in |
|
|
367
|
+
| `regress` | supported | what moved between two payloads of the same command, and which declaration accounts for it | attributes each delta to a declaration the answers carry (`test_source_excluded`, `symbols_excluded`, `coverage.gaps`, `*_cap`, `waivers`); a delta nothing explains is `unattributed`. Refuses the comparison when `cache_layers`, `base_env` or the analyzer fingerprint differ |
|
|
368
|
+
| `selftest` | supported | this product's own defect ledger, run against your repository | each ledger row's acceptance criterion as an executable assertion, with the subject (repository, size, platform, entry point) beside every verdict; a row whose precondition the repository does not meet is `not_applicable` with the reason, never a pass |
|
|
367
369
|
| `archetype` | experimental | evidence-based architectural archetype | |
|
|
368
370
|
| `rename-class` / `chunk-file` | supported | word-boundary Java rename; split a large file for an agent | |
|
|
369
371
|
| `cache status\|warm\|model\|clear` · `auth` · `telemetry` · `mcp` · `config` · `version` | supported | housekeeping | `cache model [path]` explains what a warm buys per command; `activate` too |
|
|
@@ -65,6 +65,7 @@ the enclosing monorepo, and `cache status` / `cache clear` resolve to that same
|
|
|
65
65
|
| `ris` | the Repository Intelligence Snapshot — structural index, endpoint index, summaries | tree state (the snapshot records the tree it describes) | rebuilt on every warm |
|
|
66
66
|
| `cir` | the shared Canonical IR — the Java parse every knowledge command reuses | tree state · analyzer fingerprint · schema version | built |
|
|
67
67
|
| `task` | one `prepare-context` task answer, per task and per option set | tree state · task · --symptom / --all / --include-config / --format | never — a warm does not run any task |
|
|
68
|
+
| `timeline-samples` | one watched metric as measured at one sampled commit, so a series re-run over an overlapping range measures only what is new (C3-129) | the analyzer fingerprint and the commit sha, both in the key. The tree at a sha never changes, so an entry is never stale — the fingerprint is what keeps a corrected analysis from being served from a previous release. `timeline --no-cache` (or `ASK_TIMELINE_NO_SAMPLE_CACHE=1`) measures every sample again | never — a warm analyses the working tree, not history |
|
|
68
69
|
| `parse` | the symbol extraction of one file, keyed by its bytes | the file's own bytes and the extractor's source — content-addressed, so it is never stale and never needs invalidating. Bounded by `ASK_PARSE_CACHE_MAX_MB` (default 512 MB, least-recently-used, swept every 32 MB written rather than on every write, and the last interval before a process exits is never swept — so the store rests up to one interval per writing process above its budget, and the figure to size a disk by is the ceiling `cache status` publishes beside it, not the budget itself (ASK-15)) and reported in `cache status` (F-AR) | filled for every Java file the warm parses |
|
|
69
70
|
|
|
70
71
|
Measured on BroadleafCommerce (2 000+ Java files, dirty tree), warm machine, 3.2.2, each command in isolation.
|
|
@@ -106,7 +107,9 @@ The second anchor is the field one, and it carries its own build for the same re
|
|
|
106
107
|
| `modernize` | the shared work | 5.2 s → 3.0 s | no | `parse` | Blocked in the session that recorded C3-53 and measured since: a run that did not finish once is not a command that cannot finish. |
|
|
107
108
|
| `chunk-file` | nothing | not timed | no | — | Reads one file; nothing to cache. |
|
|
108
109
|
| `cold-start` | the answer | 0.2 s either way | yes | `ris` | Reads the RIS a warm rebuilds — that is all it does. Without one it answers `no_ris` instead of a snapshot. |
|
|
109
|
-
| `timeline` | nothing | not timed |
|
|
110
|
+
| `timeline` | nothing | not timed | yes | `timeline-samples` | Two commits are two trees, so nothing is shared *within* a run — but a metric at a commit is a pure function of that tree, and the tree at a sha never changes, so a sample an earlier run of this analyser already measured is read from the store instead of being measured again (C3-129). A warm builds nothing for it: a warm analyses the working tree, not history. `--no-cache` measures every sample again, and the payload publishes the hits. |
|
|
111
|
+
| `selftest` | the shared work | not timed | no | `cir`, `parse` | Runs the ledger's acceptance criteria by invoking other commands against this repository, so it inherits their layers — a warm makes those runs warm. It holds no cache of its own and stores nothing. |
|
|
112
|
+
| `regress` | nothing | not timed | no | — | Diffs two payload files this CLI already wrote; analyses no source, so no cache layer applies. What it reads about caching is the `cache_layers` field inside those payloads — to refuse a comparison taken under different cache states, not to use one. |
|
|
110
113
|
| `trend` | nothing | not timed | no | — | Reads stored baseline artifacts from disk; analyses no source, so no cache layer applies. Same command as `baseline trend`. |
|
|
111
114
|
| `baseline` | the shared work | capture 8.7 s → 3.6 s | no | `parse` | `capture`/`diff`/`trend` over architectural metrics. The field figure is `capture`, the subcommand that analyses; `trend` reads stored artifacts and has its own row. |
|
|
112
115
|
| `retrieve` | the shared work | not timed | no | `cir`, `parse` | Every query builds or reuses the shared CIR a warm builds. |
|