project-loop-harness 0.5.2__tar.gz → 0.5.4__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.
- {project_loop_harness-0.5.2/src/project_loop_harness.egg-info → project_loop_harness-0.5.4}/PKG-INFO +4 -3
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/README.md +3 -2
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0199-v052-release-publication.md +11 -2
- project_loop_harness-0.5.4/agent-tasks/0200-gap-report-contract.md +83 -0
- project_loop_harness-0.5.4/agent-tasks/0201-gap-report-integrity-hardening.md +43 -0
- project_loop_harness-0.5.4/agent-tasks/0202-v053-local-release-preparation.md +50 -0
- project_loop_harness-0.5.4/agent-tasks/0203-v053-release-publication.md +56 -0
- project_loop_harness-0.5.4/agent-tasks/0204-cli-stage3-entity-handlers.md +28 -0
- project_loop_harness-0.5.4/agent-tasks/0205-cli-stage3-execution-evidence-handlers.md +27 -0
- project_loop_harness-0.5.4/agent-tasks/0206-cli-stage3-control-profile-handlers.md +22 -0
- project_loop_harness-0.5.4/agent-tasks/0207-command-service-responsibility-split.md +21 -0
- project_loop_harness-0.5.4/agent-tasks/0208-cli-stage4-parser-construction.md +20 -0
- project_loop_harness-0.5.4/agent-tasks/0209-refactoring-integrated-verification.md +23 -0
- project_loop_harness-0.5.4/agent-tasks/0210-v054-local-release-preparation.md +52 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/README.md +31 -1
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/command-guide.md +16 -0
- project_loop_harness-0.5.4/docs/evidence/0199-v052-publication-closeout.md +60 -0
- project_loop_harness-0.5.4/docs/evidence/0201-gap-report-integrity-hardening.md +39 -0
- project_loop_harness-0.5.4/docs/evidence/0202-v053-local-release-preparation.md +101 -0
- project_loop_harness-0.5.4/docs/evidence/0203-v053-publication-closeout.md +74 -0
- project_loop_harness-0.5.4/docs/evidence/0204-cli-stage3-entity-handlers.md +34 -0
- project_loop_harness-0.5.4/docs/evidence/0205-cli-stage3-execution-evidence-handlers.md +34 -0
- project_loop_harness-0.5.4/docs/evidence/0206-cli-stage3-control-profile-handlers.md +35 -0
- project_loop_harness-0.5.4/docs/evidence/0207-command-service-responsibility-split.md +36 -0
- project_loop_harness-0.5.4/docs/evidence/0208-cli-stage4-parser-construction.md +37 -0
- project_loop_harness-0.5.4/docs/evidence/0209-refactoring-integrated-verification.md +55 -0
- project_loop_harness-0.5.4/docs/evidence/0210-v054-local-release-preparation.md +107 -0
- project_loop_harness-0.5.4/docs/gap-report-v1.md +137 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/maintainer-entry-hardening.md +22 -2
- project_loop_harness-0.5.4/docs/plan-observation-evidence-validity.md +816 -0
- project_loop_harness-0.5.4/docs/plan-refactoring-completion.md +69 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.2.md +11 -0
- project_loop_harness-0.5.4/docs/release-notes/v0.5.3.md +84 -0
- project_loop_harness-0.5.4/docs/release-notes/v0.5.4.md +56 -0
- project_loop_harness-0.5.4/docs/research/2026-07-18-akihiro-genai-post-interpretation.md +249 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/pyproject.toml +1 -1
- project_loop_harness-0.5.4/src/pcl/__init__.py +1 -0
- project_loop_harness-0.5.2/src/pcl/commands.py → project_loop_harness-0.5.4/src/pcl/action_routing.py +2 -661
- project_loop_harness-0.5.4/src/pcl/cli.py +231 -0
- project_loop_harness-0.5.4/src/pcl/command_domain.py +472 -0
- project_loop_harness-0.5.4/src/pcl/commands.py +54 -0
- project_loop_harness-0.5.4/src/pcl/context_handlers.py +203 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/__init__.py +30 -0
- project_loop_harness-0.5.4/src/pcl/contracts/gap_report.py +310 -0
- project_loop_harness-0.5.4/src/pcl/contracts/schemas/gap-report-v1.schema.json +134 -0
- project_loop_harness-0.5.4/src/pcl/control_handlers.py +270 -0
- project_loop_harness-0.5.4/src/pcl/entity_handlers.py +576 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/evidence.py +275 -1
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/evidence_sets.py +205 -0
- project_loop_harness-0.5.4/src/pcl/execution_handlers.py +452 -0
- project_loop_harness-0.5.4/src/pcl/finish_planning.py +214 -0
- project_loop_harness-0.5.4/src/pcl/gap_reports.py +795 -0
- project_loop_harness-0.5.4/src/pcl/governance_handlers.py +332 -0
- project_loop_harness-0.5.4/src/pcl/parser.py +31 -0
- project_loop_harness-0.5.4/src/pcl/parser_common.py +5 -0
- project_loop_harness-0.5.4/src/pcl/parser_context.py +181 -0
- project_loop_harness-0.5.4/src/pcl/parser_control.py +147 -0
- project_loop_harness-0.5.4/src/pcl/parser_entities.py +238 -0
- project_loop_harness-0.5.4/src/pcl/parser_execution.py +328 -0
- project_loop_harness-0.5.4/src/pcl/parser_governance.py +143 -0
- project_loop_harness-0.5.4/src/pcl/parser_planning.py +129 -0
- project_loop_harness-0.5.4/src/pcl/parser_work_inputs.py +462 -0
- project_loop_harness-0.5.4/src/pcl/planning_handlers.py +227 -0
- project_loop_harness-0.5.4/src/pcl/profile_handlers.py +635 -0
- project_loop_harness-0.5.4/src/pcl/strict_evidence.py +287 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/project/AGENTS.block.md +4 -0
- project_loop_harness-0.5.4/src/pcl/templates/project/CLAUDE.block.md +19 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4/src/project_loop_harness.egg-info}/PKG-INFO +4 -3
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/SOURCES.txt +58 -0
- project_loop_harness-0.5.4/tests/fixtures/gap_report/minimal.json +31 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/README.md +8 -0
- project_loop_harness-0.5.4/tests/fixtures/v0.3.1-baseline/snapshots/pcl-help.json +9 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/pcl-version.json +1 -1
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/mcp/fixtures/wire-transcript.json +1 -1
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_cli_init.py +6 -0
- project_loop_harness-0.5.4/tests/test_commands_facade.py +42 -0
- project_loop_harness-0.5.4/tests/test_control_handlers.py +86 -0
- project_loop_harness-0.5.4/tests/test_entity_handlers.py +169 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_evidence_add.py +295 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_evidence_sets.py +185 -1
- project_loop_harness-0.5.4/tests/test_execution_handlers.py +156 -0
- project_loop_harness-0.5.4/tests/test_gap_reports.py +539 -0
- project_loop_harness-0.5.4/tests/test_parser_builders.py +90 -0
- project_loop_harness-0.5.2/src/pcl/__init__.py +0 -1
- project_loop_harness-0.5.2/src/pcl/cli.py +0 -4205
- project_loop_harness-0.5.2/src/pcl/templates/project/CLAUDE.block.md +0 -15
- project_loop_harness-0.5.2/tests/fixtures/v0.3.1-baseline/snapshots/pcl-help.json +0 -9
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/LICENSE +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/MANIFEST.in +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/Makefile +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0001-hardening-cli.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0002-db-migrations.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0003-workflow-runner.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0004-dashboard-renderer.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0005-agent-integration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0006-codex-plugin.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0007-mcp-server.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0008-loop-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0009-defect-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0010-reporting-evidence.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0011-validation-invariants.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0012-audit-log-integrity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0013-validation-diagnostics.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0014-escalation-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0015-decision-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0016-escalation-decision-linkage.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0017-next-action-guided-loop.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0018-readme-golden-path.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0019-recovery-playbook.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0020-example-project-refresh.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0021-agent-adapter-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0022-agent-output-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0023-codex-exec-adapter-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0024-claude-manual-adapter-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0025-generic-shell-adapter.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0026-agent-job-evidence-ingestion.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0027-dashboard-data-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0028-dashboard-evidence-navigation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0029-dashboard-risk-and-blockers.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0030-distribution-readiness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0031-workflow-proposal-mode.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0032-workflow-proposal-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0033-workflow-verifier.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0034-limited-execution-sandbox.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0035-automatic-workflow-executor.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0036-executor-dogfood-workflow.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0037-executor-retry-resume.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0038-story-test-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0039-workflow-yaml-rule-expressions.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0040-test-case-evidence-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0041-feature-inspection-commands.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0042-report-coverage-context.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0043-feature-report.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0044-complete-csv-export.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0045-filtered-job-inspection.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0046-feature-status-lifecycle.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0047-feature-coverage-next-action.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0048-migration-status-command.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0049-render-json-artifact-paths.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0050-codex-plugin-package-inventory.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0051-mcp-render-artifact-paths.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0052-lifecycle-failure-job-cleanup.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0053-prompt-job-json-handoff.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0054-human-queue-linkage-cli.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0055-workflow-proposal-list-filter.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0056-sandbox-noop-execution-guard.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0057-executor-no-executable-step-guard.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0058-dogfood-usability-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0059-checkpoint-review-guidance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0060-pypi-trusted-publishing.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0061-context-pack-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0062-task-backlog-entity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0063-structured-verification-rubric.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0064-task-loop-integration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0065-dashboard-human-decisions.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0066-agent-registry-lease.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0067-context-pack-improvements.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0068-trust-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0069-explainable-code-context-v0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0070-human-decision-cockpit.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0071-dogfood-impact-precision.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0072-sensitive-omission.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0073-code-context-module-split.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0074-search-snapshot-consistency.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0075-diff-source-modes.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0076-schema-version-integrity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0077-index-output-budget-and-impact-noise.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0078-context-pack-code-context-bridge.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0079-receipt-human-summary.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0080-retrieval-eval-gate.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0081-diff-modes-completion.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0082-receipt-relevance-and-age.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0083-required-section-invariant.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0084-source-commands-honesty.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0085-distribution-source-completeness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0086-command-surface-alignment.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0087-verification-suggestion-ids.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0088-verification-feedback.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0089-dogfood-fixture-propose.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0090-eval-baseline-record-compare.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0091-refresh-command-scope-fidelity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0092-idempotent-status-transitions.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0093-evidence-add-command.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0094-job-completion-evidence.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0095-supporting-evidence-health.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0096-evidence-add-path-guards.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0097-evidence-durability-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0098-field-feedback-next-weight-and-run-report-scope.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0099-evidence-copy-mode.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0100-evidence-task-linking.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0101-evidence-id-allocation-race.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0102-source-drift-health-warning.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0103-security-policy-v02x.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0104-python-ci-matrix.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0105-evidence-copy-observability.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0106-release-checklist.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0107-agent-tasks-backlog-index.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0108-target-bound-code-context-receipts.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0113-evidence-links-table.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0114-source-hash-drift.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0115-context-pack-contract-fixtures.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0116-receipt-link-agreement-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0117-markdown-target-refresh-command.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0118-canonical-target-bound-handoff-docs.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0119-context-check-preflight.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0120-pcl-finish-terminal-closeout.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0121-human-gate-japanese-guidance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0122-feature-coverage-noop.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0123-master-trace-intent-index-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0124-baseline-fixtures-v0-3-1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0125-mcp-stdio-framing-negotiation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0126-mcp-external-conformance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0127-transactional-audit-outbox-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0128-event-outbox-jsonl-projector.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0129-audit-check-repair-rebuild.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0130-crash-concurrency-test-suite.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0131-guarded-executor-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0132-master-trace-context-pack-section.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0133-windows-lock-fallback.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0134-completion-packet-v1-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0135-finish-emits-completion-packet.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0136-lite-pcl-start.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0137-handoff-packet-pcl-resume.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0138-kpi-report-surface.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0139-executable-resume-context.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0140-kpi-post-integration-sources.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0140a-skill-cli-contract-parity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0140b-lifecycle-integrity-gate.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0140c-fail-open-check-guard.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0141-idle-routing-repair.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0142-lifecycle-repair-planner.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0143-terminal-link-repair.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0144-skill-runtime-provenance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0145-structured-validation-diagnostics.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0145a-integrity-migration-dogfood.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0145b-v0.4.1-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0146-work-brief-evidence-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0147-deterministic-route-recommendation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0148-adaptive-policy-resolve-explain.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0149-route-policy-override-integration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0149a-adaptive-entry-dogfood.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0149b-v0.4.2-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0150-evidence-set-completeness-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0151-completion-policy-terminal-preflight.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0152-next-action-approval-provenance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0153-cross-skill-integrity-dogfood.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0153b-v0.4.3-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0154-profile-boundary-adr-contract-freeze.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0155-profile-contract-runtime-and-registry.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0156-profile-read-only-prepare.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0157-profile-bundle-validation-dry-run.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0158-profile-bundle-atomic-ingest.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0159-decision-proposal-human-selection.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0160-council-profile-offline-e2e.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0161-council-dogfood-skill-parity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0162-council-evaluation-adoption-gate.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0163-adoption-first-release-readiness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0164-guided-dashboard-review-experience.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0165-v043-field-feedback-friction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0166-local-skill-usage-improvement-loop.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0167-actionable-skill-usage-retry-signals.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0168-structured-command-guide.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0169-dashboard-decision-summary.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0170-exit-status-aware-skill-usage-friction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0171-actionable-finish-timeout-recovery.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0172-composite-pcl-result-status.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0173-v050-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0174-v050-publication-closeout.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0175-maintainer-entry-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0176-scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0177-advisory-checkpoint-routing.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0178-trace-contract-fixture-freeze.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0179-intent-index-source-binding-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0180-claim-bound-context-resume.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0181-controlled-trace-resume-evaluation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0182-v051-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0183-v051-publication-closeout.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0184-cli-stage1-presentation-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0185-cli-stage2-guide-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0186-cli-stage2-loop-status-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0187-cli-stage2-doctor-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0188-cli-stage2-report-artifact-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0189-v052-adoption-proof.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0190-v052-adoption-proof-evaluator.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0191-installed-skill-freshness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0192-audit-evidence-impact-classification.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0193-target-bound-next-routing.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0194-skill-prose-runtime-parity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0195-shared-task-goal-target-resolver.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0196-active-proof-historical-findings.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0197-layered-harness-ablation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0197b-layered-ablation-fixture-materializer.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/agent-tasks/0198-evidence-gated-direct-flow-reduction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adaptive-policy-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adoption-guide.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adoption-proof-v0.5.2-participant-kit.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adoption-proof-v0.5.2.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adr/0001-hybrid-state.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adr/0002-cli-is-the-runtime.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adr/0003-static-workflows-before-dynamic-workflows.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/adr/ADR-002-transactional-audit-outbox.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/agent-adapter-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/agent-output-template.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/agent-roles.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/approval-provenance-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/architecture.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/canonical-state-baseline-v0.4.2.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/code-context.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/completion-packet-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/completion-policy-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/context-check.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/context-pack.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/council-profile.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/crash-concurrency-reliability.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dashboard-data-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dashboard-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/data-model.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/distribution.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood/adaptive-entry-v0.4.2.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood/lp-production-cross-skill-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood/v0.4.3-cross-skill-integrity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood/v0.5.0-council-profile.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood-report-v0.4.1-integrity-migration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/dogfood-report-v0.4.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/layered-harness-ablation-offline-evaluator.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/layered-harness-ablation-runbook.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.0-council-evaluation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-resume-runbook.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-02-a.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-02-b.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-a.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-b.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/event-outbox-compatibility.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0136-pcl-start-demo.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0146-work-brief-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0147-route-recommendation-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0148-adaptive-policy-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0149-route-override-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0150-evidence-set-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0151-completion-policy-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0152-next-action-approval-provenance-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0152a-agent-mediated-human-approval-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0153-human-dogfood-approval.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0155-profile-contract-runtime-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0156-profile-read-only-prepare-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0157-profile-bundle-dry-run-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0158-atomic-profile-bundle-ingest-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0159-profile-decisions-authorization-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0160-council-discovery-offline-e2e-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0162-final-verification.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0162-human-adoption-outcome.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0163-adoption-first-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-codex-remediation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-red-tests.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0165-v043-field-feedback-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0166-local-skill-usage-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0167-actionable-skill-usage-signals-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0168-structured-command-guide-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0169-dashboard-decision-summary-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0170-exit-status-aware-skill-usage-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0171-actionable-finish-timeout-recovery-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0172-composite-pcl-result-status-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0174-v050-publication-verification.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0175-ci-portability-repair.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0176-scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0176-test-reverify-and-legacy-feature-receipts.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0177-advisory-checkpoint-routing.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0177-f0022-receipt-modernization.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0178-maintainer-entry-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0178-trace-contract-fixture-freeze.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0179-intent-index-source-binding-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0180-claim-bound-context-resume.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-evaluation-rerun.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-evaluation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-full-qa.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0182-v051-local-release-preparation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0183-v051-publication-closeout.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0184-cli-stage1-presentation-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0185-cli-stage2-guide-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0186-cli-stage2-loop-status-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0186-dashboard-inline-card-details.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0187-cli-stage2-doctor-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0188-cli-stage2-report-artifact-handler-extraction.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0189-v052-adoption-proof.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0190-v052-adoption-proof-evaluator.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0191-installed-skill-freshness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0191-v052-local-verification-matrix.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0191b-final-review-addendum.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0192-audit-evidence-impact-classification.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0192-v052-legacy-config-repair.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0193-target-bound-next-routing-20260718.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0194-0196-harness-minimization-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0196-active-proof-historical-findings-20260718.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0197-layered-harness-ablation-results.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0199-v052-ci-history-repair.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/0199-v052-release-candidate.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/d0002-autonomous-continuation-validation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/node-finish-utsuro-dogfood.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence/node-init-autodetection-dogfood.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence-durability-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence-entry-paths-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/evidence-set-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/feedback/2026-07-06-ax1-moc1-agent-feedback.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/feedback/2026-07-16-kikulab-project-control-loop-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/finish.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/golden-path.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/growth-plan-v0.2.4-v0.5.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/handoff-packet-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/implementation-plan.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/en-hn-reddit-draft.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/feedback-study.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/hn-human-authoring-brief.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/ja-zenn-draft.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/launch-checklist.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/zenn-agent-done-evidence-pcl-v050.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/master-trace-handoff.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/master-trace-intent-index.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/mcp-compatibility.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/mcp-manual-smoke-runbook.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/pcl-start.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-post-v0.5.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.4.0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.4.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.4.2.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.4.3.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.5.0-council-profile.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.5.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plan-v0.5.2-adoption-proof.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plh_v0_1_11_review_agenda.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/plh_v0_1_12_review_agenda.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/project-loop-harness-v0.2.3-third-party-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/ADR-005-external-council-profile-boundary.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/README.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/contract-freeze.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/external-runner-spec-v0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/implementation-proposal.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/proposals/council-profile/validation-transcript.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/pypi-publishing.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/recovery-playbook.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-checklist.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.2.4.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.3.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.2.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.3.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/releases/v0.3.1-baseline.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/releases/v0.3.3-mcp-stdio.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0154-council-contract-freeze-claude-fable-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0155-0157-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0156-route-binding-claude-fable-advice.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0158-0160-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0159-decision-authorization-claude-fable-advice.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0161-0162-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0163-adoption-first-claude-fable-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-codex-final-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-codex-rereview.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-plan-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/2026-07-13-business-technical-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/reviews/plan-v0.5.0-council-profile-review.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/00-executive-roadmap.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/01-adaptive-loop-architecture.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/02-contracts-and-data-model.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/03-implementation-plan.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/04-evaluation-and-rollout.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/05-pdm-discussion-guide.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/06-cli-contract-draft.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/07-state-machines-and-events.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/08-repository-integration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/09-ai-plc-integration-mapping.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/ADOPTION.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/README.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/SOURCE_BASIS.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/VALIDATION_REPORT.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-001-profile-not-entity.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-002-transactional-audit-outbox.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-003-adaptive-policy-axes.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-004-contract-first-promotion.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0123-release-v0-3-1-baseline.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0124-mcp-stdio-framing-negotiation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0125-mcp-external-conformance.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0126-transactional-audit-outbox-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0127-event-outbox-jsonl-projector.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0128-audit-check-repair-rebuild.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0129-crash-concurrency-test-suite.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0130-guarded-executor-hardening.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0131-completion-packet-v1-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0132-finish-emits-completion-packet.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0133-lite-pcl-start.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0134-handoff-packet-pcl-resume.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0135-work-brief-v1-evidence.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0136-deterministic-route-recommendation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0137-adaptive-policy-explain-override.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0138-work-brief-revision-replan.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0139-stale-invalidation-propagation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0140-verifier-provenance-separation.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0141-risk-based-verification-policy.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0142-profile-contract-boundary.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0143-discovery-reference-profile.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0144-decision-proposal-human-selection.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0145-master-trace-handoff-integration.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0146-capability-profile-v0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0147-budget-profile-incomplete-packet.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0148-context-cache-delta-handoff.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0149-knowledge-proposal-experiment.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0150-cross-model-evaluation-harness.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0151-design-partner-operations.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0152-adoption-stability-release.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/README.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/ARCHITECTURE_REVIEW_PROMPT.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/IMPLEMENTATION_AGENT_PROMPT.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/PDM_REVIEW_PROMPT.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/roadmap/priority-reset-2026-07-13.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/route-recommendation-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/safety-permissions.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/skill-usage-report.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/stability-policy.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/trace-resume-evaluation-v0.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/v0.2.0-plan.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/verification-feedback-design.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/verification-feedback.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/verification-rubric.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/work-brief-v1.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/docs/workflow-contract.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/scripts/evaluate_adoption_proof.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/scripts/evaluate_layered_harness_ablation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/scripts/materialize_layered_harness_ablation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/scripts/run_advisory_retrieval_eval.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/scripts/verify_sdist_contracts.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/setup.cfg +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/__main__.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/adaptive_policy.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/agents.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/approval_provenance.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/audit.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/checkpoints.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/__init__.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/diff.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/eval.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/impact.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/receipts.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/scan.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/search.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/store.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/summary.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/symbols.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_context/test_hints.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/code_index.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/command_guide.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/completion_policies.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/context.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/context_binding.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/context_usage.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/_profile_contract.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/claim_set.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/completion_packet.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/completion_policy.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/council_run.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/decision_proposal.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/evidence_set.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/handoff_packet.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/intent_index.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/policies/adaptive-policy-v1-default.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_manifest.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_output_bundle.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_run_request.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/route_override.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/route_recommendation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/adaptive-policy-resolution-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/claim-set-v0.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/completion-packet-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/completion-policy-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/council-run-v0.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/decision-proposal-v0.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/evidence-set-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/handoff-packet-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-manifest-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-output-bundle-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-run-request-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/route-override-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/route-recommendation-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/verification-plan-v0.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/work-brief-v1.schema.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/verification_plan.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/contracts/work_brief.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/001_initial.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/002_tasks.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/003_agent_registry.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/004_code_index.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/005_verification_feedback.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/006_evidence_task_link.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/007_evidence_links.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/migrations/008_event_outbox.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db/schema.sql +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/db.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/decisions.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/dispatch.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/errors.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/escalations.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/events.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/evidence_show.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/exporters.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/finish_execution.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/finish_recovery.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/guarded_process.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/guards.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/ids.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/init_project.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/kpi_report.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/lifecycle.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/lifecycle_repair.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/links.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/locales.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/locks.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/mcp_server.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/migrations.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/outbox.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/paths.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/presentation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_authorization.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_bundle_store.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_decisions.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_fixture_runner.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_ingest.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profile_prepare.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profiles/builtin/council.discovery.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profiles/fixtures/council.discovery/scenarios.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/profiles.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/project_config.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/read_handlers.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/receipt_show.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/redaction.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/registry.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/relationship_repair.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/renderer.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/reports.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/resources.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/resume.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/route_overrides.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/routing.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/rubric.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/skill_usage_report.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/start.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/stories.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/target_resolver.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/tasks.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/dashboard/dashboard.html +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/project/gitignore.fragment +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/project/pcl.yaml +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/skills/project-control-loop/SKILL.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/defect_repair.yaml +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/executor_smoke.yaml +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/feature_coverage.yaml +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/regression_loop.yaml +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/test_faults.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/timeutil.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/token_estimation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/update_check.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/validators.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/verification_feedback.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/verifications.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/work_briefs.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_executor.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_proposal_validation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_proposals.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_sandbox.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_verifier.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflow_yaml.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/pcl/workflows.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/dependency_links.txt +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/entry_points.txt +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/requires.txt +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/top_level.txt +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/baseline_fixture_tools.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/code_context_summary_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/full.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/minimal.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-budget-next-action.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-cases.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-critical-proof.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-passed-result.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/completion_policy/minimal.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/context_pack_code_context_contract_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/context_receipt_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/context_receipt_v0_legacy_string_suggestions.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/completion_verdict.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/coordinate_report.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/report-manifest.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/responsive_report.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/completion-policy.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/completion_verdict.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/coordinate_report.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/report-manifest.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/responsive_report.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/minimal.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/report-manifest.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/visual-check.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/handoff_packet/minimal.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/kpi_report_empty_v1.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/layered_harness_ablation_v0/evaluator-scenarios.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/layered_harness_ablation_v0/layered-harness-ablation-fixture.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/lifecycle_repair/all_classifications_v1.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/master_trace_context_contract_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/profile_bundle/cases.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/profile_e2e/decision-projection.expected.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/profile_e2e/run_offline_e2e.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_adversarial_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_real_history_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_v0.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/scale_baseline_v1/README.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/scale_baseline_v1/manifest.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/start_initialized_v1.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/master-trace.md +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/release-smoke-invalid-trace-binding.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/release-smoke-valid-trace-binding.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/trace-binding-fixtures.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/trace-resume-evaluation-fixture.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/context-check-help.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-context-check-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-next-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-render-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-validate-strict-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/next-help.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/render-help.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-context-check-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-next-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-render-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-validate-strict-json.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/validate-help.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/work_brief/minimal.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/fixtures/work_brief/negative-embedded-route.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/mcp/conftest.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/mcp/fixtures/negative-matrix.json +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/mcp/test_external_conformance.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_adaptive_policy.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_adoption_docs.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_adoption_proof_evaluator.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_advisory_retrieval_eval_script.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_agent_adapter_contract.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_agent_output_validation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_agents.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_audit_commands.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_audit_log_integrity.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_baseline_fixtures.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_checkpoints.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_claude_manual_adapter.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_code_context_summary.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_code_index.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_codex_exec_adapter.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_codex_plugin.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_command_guide.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_completion_packet_contract.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_completion_packet_package.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_completion_policy.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_context.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_context_check.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_contract_cli.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_council_evaluation_cohort.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_council_profile_proposal_contracts.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_crash_concurrency.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_cross_skill_integrity_dogfood.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_dashboard.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_dashboard_data_contract.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_decisions.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_defects.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_dispatch.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_distribution.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_escalations.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_event_outbox.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_evidence_show.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_examples.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_execution_provenance.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_features.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_field_feedback_0165.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_finish.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_generic_shell_adapter.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_golden_path.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_guarded_process.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_handoff_packet_contract.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_integrity_migration_dogfood.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_kpi_report.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_cohort.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_evaluator.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_materializer.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_lifecycle.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_lifecycle_integrity.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_lifecycle_repair.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_locks.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_mcp_server.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_migrations.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_next_actions.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_presentation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_profile_contracts.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_profile_fixture_e2e.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_profile_ingest_dry_run.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_profile_prepare.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_pypi_publishing.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_read_handlers.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_receipt_show.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_recovery_playbook.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_registry.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_reports.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_resume.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_route_overrides.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_route_recommendation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_rubric.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_scale_baseline_fixture.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_skill_command_examples.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_skill_usage_report.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_start.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_stories.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_tasks.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_trace_contract_fixtures.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_cohort.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_cohort_02.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_results.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_results_02.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_update_check.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_v050_adoption_demo.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_validation.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_validation_diagnostics.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_validation_finding_sources.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_validation_proof_scope.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_verification_feedback.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_work_briefs.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_workflow_executor.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_workflow_proposals.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_workflow_sandbox.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_workflow_verifier.py +0 -0
- {project_loop_harness-0.5.2 → project_loop_harness-0.5.4}/tests/test_workflows.py +0 -0
{project_loop_harness-0.5.2/src/project_loop_harness.egg-info → project_loop_harness-0.5.4}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: project-loop-harness
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: Local control plane for agentic project development loops
|
|
5
5
|
Author: Project Loop Harness Contributors
|
|
6
6
|
License: MIT
|
|
@@ -189,8 +189,9 @@ exist, the project does not claim external adoption.
|
|
|
189
189
|
- [Security](SECURITY.md) and [Contributing](CONTRIBUTING.md).
|
|
190
190
|
|
|
191
191
|
Advanced contracts stay in `docs/`: completion packets, evidence sets,
|
|
192
|
-
completion policy,
|
|
193
|
-
Profile, trace/resume, reports,
|
|
192
|
+
completion policy, [Harness Gap Reports](docs/gap-report-v1.md), context packs,
|
|
193
|
+
code context, workflow execution, Council Profile, trace/resume, reports,
|
|
194
|
+
migrations, and dashboard data.
|
|
194
195
|
|
|
195
196
|
## Local development
|
|
196
197
|
|
|
@@ -154,8 +154,9 @@ exist, the project does not claim external adoption.
|
|
|
154
154
|
- [Security](SECURITY.md) and [Contributing](CONTRIBUTING.md).
|
|
155
155
|
|
|
156
156
|
Advanced contracts stay in `docs/`: completion packets, evidence sets,
|
|
157
|
-
completion policy,
|
|
158
|
-
Profile, trace/resume, reports,
|
|
157
|
+
completion policy, [Harness Gap Reports](docs/gap-report-v1.md), context packs,
|
|
158
|
+
code context, workflow execution, Council Profile, trace/resume, reports,
|
|
159
|
+
migrations, and dashboard data.
|
|
159
160
|
|
|
160
161
|
## Local development
|
|
161
162
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 0199: v0.5.2 release preparation and publication
|
|
2
2
|
|
|
3
|
-
- **Status:**
|
|
3
|
+
- **Status:** Done; published and publicly verified
|
|
4
4
|
- **Milestone:** v0.5.2 Reliability and Harness Minimization
|
|
5
5
|
- **Priority:** P0
|
|
6
6
|
- **Size:** M
|
|
@@ -44,4 +44,13 @@ uncollected external first-use cohort as adoption proof.
|
|
|
44
44
|
|
|
45
45
|
## Completion evidence
|
|
46
46
|
|
|
47
|
-
-
|
|
47
|
+
- Release commit: `bbe14cf5a8375e72eaa121c1b8a5a96362560d1d`
|
|
48
|
+
- GitHub Release: `v0.5.2`
|
|
49
|
+
- Green release-commit CI run: `29638815262`
|
|
50
|
+
- Trusted Publishing run: `29639130354`, success
|
|
51
|
+
- Public wheel SHA-256:
|
|
52
|
+
`d7f5dda21e721c3405e694991fa7bbc844f7a31daecb4572efd67c48ffc81048`
|
|
53
|
+
- Public sdist SHA-256:
|
|
54
|
+
`529e2236628d70cef2efade82a4ff3017649658e960e6c5b3e8afc0e2f1f601b`
|
|
55
|
+
- Clean public install, strict validation, render, and pipx update: passed
|
|
56
|
+
- `docs/evidence/0199-v052-publication-closeout.md`
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# 0200: gap-report/v1 Harness Gap Evidence
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Harness Engineering Feedback Loop
|
|
5
|
+
- **Priority:** P0
|
|
6
|
+
- **Size:** L
|
|
7
|
+
- **Dependency:** 0146 Work Brief, 0197 Harness Ablation, strict Evidence resolvers
|
|
8
|
+
- **Project Loop:** Goal `G-0058`, Task `T-0122`, Feature `F-0064`, Story `US-0062`, Test `TC-0135`
|
|
9
|
+
- **DB schema:** remains 8
|
|
10
|
+
|
|
11
|
+
## Goal
|
|
12
|
+
|
|
13
|
+
Add the one missing layer identified while reviewing the Harness Engineering
|
|
14
|
+
proposal: record the earliest failed handoff and a closed gap classification as
|
|
15
|
+
immutable, target-bound Evidence. Candidate lessons stay isolated until a
|
|
16
|
+
hash-bound human decision authorizes promotion; authorization must not claim
|
|
17
|
+
that the lesson has already been applied to its durable owner.
|
|
18
|
+
|
|
19
|
+
## Reviewed design corrections
|
|
20
|
+
|
|
21
|
+
The inherited Cockpit plan is accepted with these corrections:
|
|
22
|
+
|
|
23
|
+
1. Gap targets include observed execution boundaries (`workflow_run` and
|
|
24
|
+
`agent_job`) in addition to Goal, Task, Feature, and Defect targets.
|
|
25
|
+
2. `pcl gap promote` records `gap_lesson_promotion_approved` with
|
|
26
|
+
`application_status=pending`; it never edits AGENTS.md, Skills, tests, or
|
|
27
|
+
other durable owners automatically.
|
|
28
|
+
3. Read paths verify exactly one anchor event, one target link, canonical path
|
|
29
|
+
shape, regular-file identity, recorded bytes, and SHA-256 before returning a
|
|
30
|
+
healthy report or accepting promotion.
|
|
31
|
+
4. Candidate lessons require cited Evidence before promotion so uncorroborated
|
|
32
|
+
producer self-report cannot become approved policy by implication.
|
|
33
|
+
|
|
34
|
+
## Contract
|
|
35
|
+
|
|
36
|
+
`gap-report/v1` is a producer-authored claim artifact with:
|
|
37
|
+
|
|
38
|
+
- producer, timestamp, and a target;
|
|
39
|
+
- optional related completion-packet / Evidence / Workflow Run references;
|
|
40
|
+
- one `earliest_failed_handoff` with `stage` and `description`;
|
|
41
|
+
- one closed `gap_class`:
|
|
42
|
+
`context`, `capability`, `domain_ownership`, `authority`, `proof`,
|
|
43
|
+
`feedback_delivery`, or `worker_limitation`;
|
|
44
|
+
- zero or more candidate lessons in an object keyed by stable, structurally
|
|
45
|
+
unique `lesson_id` values, each with a proposed `durable_owner` and
|
|
46
|
+
supporting Evidence references.
|
|
47
|
+
|
|
48
|
+
The diagnosis is a claim, not a fact. `worker_limitation` remains especially
|
|
49
|
+
provisional; one report cannot establish a general model limitation.
|
|
50
|
+
|
|
51
|
+
## CLI scope
|
|
52
|
+
|
|
53
|
+
- `pcl contract validate --type gap-report/v1 FILE`
|
|
54
|
+
- `pcl gap add FILE --summary ... [--dry-run]`
|
|
55
|
+
- `pcl gap show --evidence E-XXXX`
|
|
56
|
+
- `pcl gap list [--target TYPE:ID] [--gap-class CLASS]`
|
|
57
|
+
- `pcl gap promote E-XXXX --lesson LESSON_ID --actor ... --reason ...`
|
|
58
|
+
|
|
59
|
+
Human-mediated promotion records actor, recorder, Cockpit/conversation source,
|
|
60
|
+
artifact hash, lesson digest, and pending durable-owner application. Non-human
|
|
61
|
+
promotion and unhealthy or uncited lessons fail closed.
|
|
62
|
+
|
|
63
|
+
## Acceptance
|
|
64
|
+
|
|
65
|
+
1. Packaged JSON Schema and hand-written validator agree and reject unknown
|
|
66
|
+
fields, malformed IDs/real-date timestamps, invalid enums, duplicate raw
|
|
67
|
+
JSON lesson keys, and non-finite JSON.
|
|
68
|
+
2. Add/dry-run/show/list are deterministic, target-bound, and zero-mutation on
|
|
69
|
+
failure; strict reads surface tampering instead of trusting the file path.
|
|
70
|
+
3. Promotion is human-only, hash-bound, Evidence-corroborated, idempotent, and
|
|
71
|
+
explicitly pending application.
|
|
72
|
+
4. Fresh `pcl init` installs a compact router contract once without adding a
|
|
73
|
+
parallel `.plh/`, HARNESS.md, or harness.yaml structure.
|
|
74
|
+
5. No migration, dependency, completion-packet change, automatic durable-owner
|
|
75
|
+
write, hosted service, or `pcl harness review/improve` aggregator is added.
|
|
76
|
+
6. Targeted tests, full pytest, Ruff, fresh-init/E2E smoke, strict validation,
|
|
77
|
+
audit check, render, and PCL completion proof pass.
|
|
78
|
+
|
|
79
|
+
## Sources
|
|
80
|
+
|
|
81
|
+
- Cockpit task `e22916a5` and reviewed plan
|
|
82
|
+
- <https://github.com/lopopolo/harness-engineering>
|
|
83
|
+
- Harness Engineering `Improve One Harnessed Job` playbook
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# 0201: gap-report/v1 Integrity Hardening
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Harness Engineering Feedback Loop
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0200 Gap Report contract and Evidence flow
|
|
8
|
+
- **Project Loop:** Goal `G-0059`, Task `T-0123`, Feature `F-0065`, Story `US-0063`, Test `TC-0136`
|
|
9
|
+
- **DB schema:** remains 8
|
|
10
|
+
|
|
11
|
+
## Goal
|
|
12
|
+
|
|
13
|
+
Close the four integrity gaps found by the independent implementation review
|
|
14
|
+
without expanding the Gap Report feature or changing completion semantics.
|
|
15
|
+
|
|
16
|
+
## Corrections
|
|
17
|
+
|
|
18
|
+
1. Create the artifact directory, temporary file, and final file through
|
|
19
|
+
canonical no-follow handles. Reject pre-existing directory, temporary-file,
|
|
20
|
+
or final-file symlinks without writing outside the project or mutating PLH
|
|
21
|
+
state.
|
|
22
|
+
2. Make Schema and runtime validation agree on real UTC calendar timestamps.
|
|
23
|
+
Represent candidate lessons as an object keyed by `lesson_id`, and reject
|
|
24
|
+
duplicate raw JSON keys at load time so uniqueness is structural.
|
|
25
|
+
3. Bind `artifact_sha256` to the exact stored bytes. Whitespace-only,
|
|
26
|
+
same-length changes must make the report unhealthy.
|
|
27
|
+
4. Filter lists using the immutable class in the anchor event. Return both
|
|
28
|
+
`recorded_gap_class` and `artifact_gap_class`, and do not silently hide
|
|
29
|
+
records whose anchor class is invalid.
|
|
30
|
+
|
|
31
|
+
## Acceptance
|
|
32
|
+
|
|
33
|
+
1. Redirected artifact directory/temp/final paths fail with zero Evidence,
|
|
34
|
+
event, outbox, or link mutations and leave the external target unchanged.
|
|
35
|
+
2. The packaged timestamp pattern and hand validator accept valid leap dates
|
|
36
|
+
and reject invalid dates and year zero; duplicate lesson keys fail loading.
|
|
37
|
+
3. Same-size semantic-preserving byte drift produces
|
|
38
|
+
`artifact_hash_mismatch`.
|
|
39
|
+
4. Artifact class tampering remains listed only under the recorded class and
|
|
40
|
+
exposes both recorded and artifact values.
|
|
41
|
+
5. Targeted tests, full pytest, Ruff, source/wheel/sdist smoke, strict PLH
|
|
42
|
+
validation, audit check, and render complete with results recorded as
|
|
43
|
+
Evidence.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# 0202: v0.5.3 local release preparation
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** v0.5.3 Evidence Integrity and Harness Feedback
|
|
5
|
+
- **Priority:** P0
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0200 Gap Report, 0201 Gap Report integrity hardening, event-anchored strict Evidence resolvers
|
|
8
|
+
- **Project Loop:** Goal `G-0060`, Task `T-0124`, Feature `F-0066`, Story `US-0064`, Test `TC-0137`
|
|
9
|
+
- **DB schema:** remains 8
|
|
10
|
+
|
|
11
|
+
## Goal
|
|
12
|
+
|
|
13
|
+
Prepare a reviewable local v0.5.3 release candidate containing the completed
|
|
14
|
+
Evidence-integrity and Gap Report work. Keep publication as a separate,
|
|
15
|
+
explicitly authorized operation.
|
|
16
|
+
|
|
17
|
+
## Scope
|
|
18
|
+
|
|
19
|
+
1. Align package, runtime, MCP fixture, task index, and release-note surfaces
|
|
20
|
+
on v0.5.3.
|
|
21
|
+
2. Describe only commits actually included since public v0.5.2, preserving the
|
|
22
|
+
distinction between artifact integrity and factual validity.
|
|
23
|
+
3. Run source QA, scratch-project validation/render, wheel and sdist contracts,
|
|
24
|
+
metadata checks, and a clean wheel-install smoke.
|
|
25
|
+
4. Record artifact hashes and exact verification results as durable Evidence.
|
|
26
|
+
5. Commit the complete local release candidate without tagging, pushing,
|
|
27
|
+
publishing, or changing pipx.
|
|
28
|
+
|
|
29
|
+
## Invariants
|
|
30
|
+
|
|
31
|
+
- No Git tag, push, GitHub Release, PyPI/TestPyPI upload, pipx mutation, or
|
|
32
|
+
external announcement.
|
|
33
|
+
- No schema migration, dependency addition, hosted service, telemetry, or
|
|
34
|
+
unrelated repair.
|
|
35
|
+
- Existing `.claude` session state and unrelated untracked files remain
|
|
36
|
+
untouched and outside the release commit.
|
|
37
|
+
- Public v0.5.2 adoption documents remain historical v0.5.2 records; they are
|
|
38
|
+
not mechanically renamed to v0.5.3.
|
|
39
|
+
|
|
40
|
+
## Acceptance
|
|
41
|
+
|
|
42
|
+
1. `pyproject.toml`, `pcl.__version__`, CLI/MCP runtime output, wheel, and
|
|
43
|
+
sdist metadata agree on `0.5.3`.
|
|
44
|
+
2. Ruff and the full pytest suite pass from the canonical source checkout.
|
|
45
|
+
3. Fresh scratch init, strict doctor/validate, audit, and render pass using
|
|
46
|
+
the worktree source.
|
|
47
|
+
4. Wheel and sdist build, `twine check`, extracted-sdist contract, and
|
|
48
|
+
clean-wheel init/strict-validate/render/Gap Report contract smoke pass.
|
|
49
|
+
5. SHA-256 hashes, file sizes, commit boundary, known warnings, and publication
|
|
50
|
+
boundary are reviewable in a new write-once Evidence note.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# 0203: v0.5.3 release publication
|
|
2
|
+
|
|
3
|
+
- **Status:** Done; published and publicly verified
|
|
4
|
+
- **Milestone:** v0.5.3 Evidence Integrity and Harness Feedback
|
|
5
|
+
- **Priority:** P0
|
|
6
|
+
- **Size:** S
|
|
7
|
+
- **Dependency:** completed 0202 local release candidate; explicit owner publication instruction
|
|
8
|
+
- **Project Loop:** Goal `G-0061`, Task `T-0125`, Feature `F-0067`, Story `US-0065`, Test `TC-0138`
|
|
9
|
+
- **DB schema:** remains 8
|
|
10
|
+
|
|
11
|
+
## Goal
|
|
12
|
+
|
|
13
|
+
Publish the reviewed v0.5.3 release commit and verify the complete public
|
|
14
|
+
artifact chain without converting artifact publication into an adoption claim.
|
|
15
|
+
|
|
16
|
+
## Scope
|
|
17
|
+
|
|
18
|
+
1. Push the reviewed release commit and require its GitHub CI matrix to pass.
|
|
19
|
+
2. Create and push an annotated `v0.5.3` tag at that exact commit.
|
|
20
|
+
3. Publish the GitHub Release and verify release-triggered Trusted Publishing.
|
|
21
|
+
4. Verify PyPI metadata, exact artifact hashes, and a clean public install.
|
|
22
|
+
5. Replace the editable pipx source with the released PyPI version and record
|
|
23
|
+
the immutable closeout evidence.
|
|
24
|
+
|
|
25
|
+
## Invariants
|
|
26
|
+
|
|
27
|
+
- No schema migration, dependency, telemetry, hosted state, provider execution,
|
|
28
|
+
launch post, or unrelated repair is added.
|
|
29
|
+
- Publication is engineering evidence, not evidence of external adoption.
|
|
30
|
+
- Existing `.claude` session state and unrelated worktree files are excluded
|
|
31
|
+
from release commits.
|
|
32
|
+
|
|
33
|
+
## Acceptance
|
|
34
|
+
|
|
35
|
+
1. `main`, annotated tag, GitHub Release target, package version, and public
|
|
36
|
+
PyPI artifacts all resolve to v0.5.3.
|
|
37
|
+
2. Release-commit CI and Trusted Publishing succeed.
|
|
38
|
+
3. Public wheel and sdist bytes match PyPI-reported SHA-256 digests.
|
|
39
|
+
4. A clean PyPI install passes version, contract, init, strict validation,
|
|
40
|
+
audit, and render checks.
|
|
41
|
+
5. Pipx runs the non-editable public v0.5.3 package.
|
|
42
|
+
|
|
43
|
+
## Completion evidence
|
|
44
|
+
|
|
45
|
+
- Release commit: `6e49ac43986e8b965f1777eef9a88f7c73236ef6`
|
|
46
|
+
- Annotated tag object: `b5eb54666e8b537b17fd459bd1d9aa5cba94db89`
|
|
47
|
+
- GitHub Release: `v0.5.3`, published `2026-07-20T06:30:42Z`
|
|
48
|
+
- Green release-commit CI run: `29721069992`
|
|
49
|
+
- Trusted Publishing run: `29721897474`, success
|
|
50
|
+
- Public wheel SHA-256:
|
|
51
|
+
`0ce97a13c6deedf6525a8487aaba8080744e303c96845ee22028ad5bd623c54f`
|
|
52
|
+
- Public sdist SHA-256:
|
|
53
|
+
`448166e9ed78c68ccba2c13dd4d9a20038c2e5e105b717ca97d5ebb02b07eb0a`
|
|
54
|
+
- Clean public install, Gap Report contract, strict validation, audit, render,
|
|
55
|
+
and pipx replacement: passed
|
|
56
|
+
- `docs/evidence/0203-v053-publication-closeout.md`
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# 0204: CLI Stage 3 entity lifecycle handlers
|
|
2
|
+
|
|
3
|
+
- **Status:** Done; implemented and verified
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0188 and the frozen split contract
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Extract Goal, Task, Feature, Story, Test, and Defect CLI orchestration from
|
|
13
|
+
`cli.py` without changing observable behavior or mutation ownership.
|
|
14
|
+
|
|
15
|
+
## Acceptance
|
|
16
|
+
|
|
17
|
+
1. Parser definitions and service-layer transactions remain in their current
|
|
18
|
+
owners.
|
|
19
|
+
2. Exact JSON/text output, errors, exit codes, events, and zero-trace
|
|
20
|
+
rejections are characterized and preserved.
|
|
21
|
+
3. Targeted tests, Skill examples, distribution tests, Ruff, and full pytest
|
|
22
|
+
pass.
|
|
23
|
+
|
|
24
|
+
## Completion evidence
|
|
25
|
+
|
|
26
|
+
- `docs/evidence/0204-cli-stage3-entity-handlers.md`
|
|
27
|
+
- Implementation commit: `d7d38ea`
|
|
28
|
+
- Full regression: 1,164 passed, 1 skipped
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# 0205: CLI Stage 3 execution and Evidence handlers
|
|
2
|
+
|
|
3
|
+
- **Status:** Done; implemented and verified
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0204
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Extract Loop, Workflow, Jobs, Agent, Evidence, Verification, Decision,
|
|
13
|
+
Escalation, and checkpoint CLI orchestration while preserving every mutation,
|
|
14
|
+
event, outbox, artifact, and rejection contract.
|
|
15
|
+
|
|
16
|
+
## Acceptance
|
|
17
|
+
|
|
18
|
+
1. Services retain transaction and event ownership.
|
|
19
|
+
2. Handler parity and failure zero-trace tests cover each moved family.
|
|
20
|
+
3. Targeted tests, Skill examples, distribution tests, Ruff, and full pytest
|
|
21
|
+
pass.
|
|
22
|
+
|
|
23
|
+
## Completion evidence
|
|
24
|
+
|
|
25
|
+
- `docs/evidence/0205-cli-stage3-execution-evidence-handlers.md`
|
|
26
|
+
- Implementation commit: `dd9a327`
|
|
27
|
+
- Full regression: 1,169 passed, 1 skipped
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# 0206: CLI Stage 3 control and Profile handlers
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0205
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Extract Profile, contract, Evidence Set, completion, Work Brief, Gap Report,
|
|
13
|
+
route/policy, initialization, audit/repair, context, index/eval, export/report,
|
|
14
|
+
and remaining CLI orchestration from `cli.py`.
|
|
15
|
+
|
|
16
|
+
## Acceptance
|
|
17
|
+
|
|
18
|
+
1. Existing human gates, dry-run boundaries, artifacts, and update-check
|
|
19
|
+
behavior remain unchanged.
|
|
20
|
+
2. Characterization tests pin moved JSON/text/error branches.
|
|
21
|
+
3. Targeted tests, Skill examples, distribution tests, Ruff, and full pytest
|
|
22
|
+
pass.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# 0207: Command service responsibility split
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0206
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Turn `pcl.commands` into a compatibility facade over responsibility-specific
|
|
13
|
+
domain, next-action routing, and finish-planning modules.
|
|
14
|
+
|
|
15
|
+
## Acceptance
|
|
16
|
+
|
|
17
|
+
1. Existing imports such as `pcl.commands.create_goal`, `loop_status`,
|
|
18
|
+
`build_next_action`, and `to_pretty_json` remain valid.
|
|
19
|
+
2. Query ordering, transactions, event payloads, routing priority, and finish
|
|
20
|
+
plans remain byte-for-byte compatible where serialized.
|
|
21
|
+
3. Direct service tests, next-action tests, Ruff, and full pytest pass.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# 0208: CLI Stage 4 parser construction split
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0207
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Split parser construction by command family while retaining one public
|
|
13
|
+
`build_parser()` facade and the existing source/wheel/sdist entry points.
|
|
14
|
+
|
|
15
|
+
## Acceptance
|
|
16
|
+
|
|
17
|
+
1. Commands, flags, defaults, choices, help text, aliases, and parser errors
|
|
18
|
+
remain unchanged.
|
|
19
|
+
2. Skill example parsing and complete help smoke checks pass.
|
|
20
|
+
3. Distribution tests, Ruff, full pytest, and source/wheel/sdist smoke pass.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# 0209: Refactoring integrated verification
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** Post-v0.5.3 maintainability
|
|
5
|
+
- **Priority:** P1
|
|
6
|
+
- **Size:** S
|
|
7
|
+
- **Dependency:** 0208
|
|
8
|
+
- **DB schema:** remains 8
|
|
9
|
+
|
|
10
|
+
## Goal
|
|
11
|
+
|
|
12
|
+
Verify the complete staged refactor as one integrated source and distribution
|
|
13
|
+
surface, record durable Evidence, and close the refactoring Goal.
|
|
14
|
+
|
|
15
|
+
## Acceptance
|
|
16
|
+
|
|
17
|
+
1. Ruff, targeted tests, Skill examples, distribution tests, and full pytest
|
|
18
|
+
pass on the final revision.
|
|
19
|
+
2. Doctor, strict validation, audit check, render, and diff check complete with
|
|
20
|
+
no new findings.
|
|
21
|
+
3. Source, wheel, and sdist command/help smoke tests pass.
|
|
22
|
+
4. PCL tasks are terminal, a completion packet is emitted, and the Goal is
|
|
23
|
+
closed with that packet Evidence.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# 0210: v0.5.4 local release preparation
|
|
2
|
+
|
|
3
|
+
- **Status:** Complete
|
|
4
|
+
- **Milestone:** v0.5.4 Maintainability
|
|
5
|
+
- **Priority:** P0
|
|
6
|
+
- **Size:** M
|
|
7
|
+
- **Dependency:** 0209 Refactoring integrated verification
|
|
8
|
+
- **Project Loop:** Goal `G-0063`, Task `T-0133`, Feature `F-0068`, Story `US-0066`, Test `TC-0139`
|
|
9
|
+
- **DB schema:** remains 8
|
|
10
|
+
|
|
11
|
+
## Goal
|
|
12
|
+
|
|
13
|
+
Prepare a reviewable local v0.5.4 release candidate containing the completed
|
|
14
|
+
post-v0.5.3 behavior-preserving CLI and command-service refactor. Keep remote
|
|
15
|
+
CI and publication as separate, explicitly authorized operations.
|
|
16
|
+
|
|
17
|
+
## Scope
|
|
18
|
+
|
|
19
|
+
1. Align package, runtime, MCP fixture, baseline fixture, task index, and
|
|
20
|
+
release-note surfaces on v0.5.4.
|
|
21
|
+
2. Describe only the behavior-preserving refactor included since public
|
|
22
|
+
v0.5.3; do not claim new command or runtime behavior.
|
|
23
|
+
3. Run source QA, MCP conformance, advisory retrieval evaluation,
|
|
24
|
+
scratch-project validation/render, wheel and sdist contracts, metadata
|
|
25
|
+
checks, and a clean wheel-install smoke.
|
|
26
|
+
4. Record artifact hashes, exact verification results, and known repository
|
|
27
|
+
audit findings as durable Evidence.
|
|
28
|
+
5. Commit the complete local release candidate without pushing, tagging,
|
|
29
|
+
publishing, announcing, or changing pipx.
|
|
30
|
+
|
|
31
|
+
## Invariants
|
|
32
|
+
|
|
33
|
+
- No Git push or tag, GitHub Release, PyPI/TestPyPI upload, pipx mutation, or
|
|
34
|
+
external announcement.
|
|
35
|
+
- No intentional command, flag, output, exit-code, transaction, event,
|
|
36
|
+
Evidence, human-gate, schema, dependency, or generated-artifact change.
|
|
37
|
+
- Existing `.claude`, `.playwright-cli`, `.work`, and Project Loop lock files
|
|
38
|
+
remain outside the release commit.
|
|
39
|
+
- Public v0.5.3 records remain historical v0.5.3 records; they are not renamed.
|
|
40
|
+
|
|
41
|
+
## Acceptance
|
|
42
|
+
|
|
43
|
+
1. `pyproject.toml`, `pcl.__version__`, CLI/MCP runtime output, wheel, and
|
|
44
|
+
sdist metadata agree on `0.5.4`.
|
|
45
|
+
2. Ruff, the full pytest suite, optional MCP conformance, and the advisory
|
|
46
|
+
retrieval evaluation pass from the canonical source checkout.
|
|
47
|
+
3. A fresh scratch project passes init, strict validation, clean audit, and
|
|
48
|
+
render using the source checkout.
|
|
49
|
+
4. Wheel and sdist build, `twine check`, extracted-sdist contracts, and a
|
|
50
|
+
clean-wheel runtime/init/strict-validation/audit/render smoke pass.
|
|
51
|
+
5. SHA-256 hashes, file sizes, candidate boundary, known warnings, and the
|
|
52
|
+
publication boundary are reviewable in a new write-once Evidence note.
|
|
@@ -116,7 +116,18 @@ implement from the spec file, not from prompt summaries.
|
|
|
116
116
|
| 0197 | Layered harness minimization ablation | Harness Minimization | P0 | done (`modify`) |
|
|
117
117
|
| 0197b | Layered ablation fixture materializer | Harness Minimization | P0 | done |
|
|
118
118
|
| 0198 | Evidence-gated direct-flow reduction | Harness Minimization | P1 | done; not implemented after `modify` verdict |
|
|
119
|
-
| 0199 | v0.5.2 release preparation and publication | v0.5.2 Reliability and Harness Minimization | P0 |
|
|
119
|
+
| 0199 | v0.5.2 release preparation and publication | v0.5.2 Reliability and Harness Minimization | P0 | done; published and publicly verified |
|
|
120
|
+
| 0200 | `gap-report/v1` Harness Gap Evidence | Harness Engineering Feedback Loop | P0 | done |
|
|
121
|
+
| 0201 | `gap-report/v1` Integrity Hardening | Harness Engineering Feedback Loop | P1 | done |
|
|
122
|
+
| 0202 | v0.5.3 local release preparation | v0.5.3 Evidence Integrity and Harness Feedback | P0 | done; local RC ready, not published |
|
|
123
|
+
| 0203 | v0.5.3 release publication | v0.5.3 Evidence Integrity and Harness Feedback | P0 | done; published and publicly verified |
|
|
124
|
+
| 0204 | CLI Stage 3 entity handler extraction | post-v0.5.3 maintainability | P1 | done |
|
|
125
|
+
| 0205 | CLI Stage 3 execution/Evidence handler extraction | post-v0.5.3 maintainability | P1 | done |
|
|
126
|
+
| 0206 | CLI Stage 3 control/Profile handler extraction | post-v0.5.3 maintainability | P1 | done |
|
|
127
|
+
| 0207 | Command service responsibility split | post-v0.5.3 maintainability | P1 | done |
|
|
128
|
+
| 0208 | CLI Stage 4 parser construction split | post-v0.5.3 maintainability | P1 | done |
|
|
129
|
+
| 0209 | Refactoring integrated verification | post-v0.5.3 maintainability | P1 | done |
|
|
130
|
+
| 0210 | v0.5.4 local release preparation | v0.5.4 Maintainability | P0 | done; local RC ready, not published |
|
|
120
131
|
|
|
121
132
|
v0.3.0 dispatch order: **0113 + 0114 in parallel** (independent; different
|
|
122
133
|
`evidence.py` surfaces) → **0108** (needs 0113 merged) → **0115** (freezes the
|
|
@@ -196,6 +207,22 @@ external first-use cohort remains open and no adoption claim is made. Task
|
|
|
196
207
|
**0199** prepares, publishes, and verifies the reliability release under the
|
|
197
208
|
owner's separate publication instruction.
|
|
198
209
|
|
|
210
|
+
v0.5.3 packages event-anchored strict Evidence resolution and the bounded
|
|
211
|
+
`gap-report/v1` feedback layer. Task **0202** prepared and verified the local
|
|
212
|
+
release candidate; task **0203** published and independently verified the
|
|
213
|
+
GitHub Release, Trusted Publishing run, PyPI artifacts, and clean public install.
|
|
214
|
+
|
|
215
|
+
Post-v0.5.3 maintainability completes the frozen behavior-preserving split:
|
|
216
|
+
**0204** entity lifecycle handlers -> **0205** execution/Evidence handlers ->
|
|
217
|
+
**0206** control/Profile handlers -> **0207** `commands.py` responsibility
|
|
218
|
+
split -> **0208** parser construction -> **0209** integrated verification.
|
|
219
|
+
See `docs/plan-refactoring-completion.md`.
|
|
220
|
+
|
|
221
|
+
v0.5.4 packages that completed behavior-preserving split as a patch release.
|
|
222
|
+
Task **0210** aligns version and distribution surfaces, records local artifact
|
|
223
|
+
Evidence, and keeps push, tag, GitHub Release, PyPI, and pipx changes behind a
|
|
224
|
+
separate publication authorization.
|
|
225
|
+
|
|
199
226
|
## Planned next (see growth plan for scope)
|
|
200
227
|
|
|
201
228
|
| Milestone | Theme |
|
|
@@ -211,6 +238,9 @@ owner's separate publication instruction.
|
|
|
211
238
|
| v0.5.1 | Trace & Efficient Handoff: source-bound claims-not-facts handoff plus controlled cross-session/runtime resume evidence |
|
|
212
239
|
| post-v0.5.1 | Behavior-preserving staged CLI split; 0184 presentation, then 0185 guide, 0186 loop status, 0187 doctor, and 0188 report-artifact handlers |
|
|
213
240
|
| v0.5.2 | 0189 config-ready adoption and frozen cohort → 0190 participant kit and deterministic proof evaluator → five-user outcome cohort → observed-friction repair |
|
|
241
|
+
| v0.5.3 | published and publicly verified; strict copied-Evidence resolution → 0200 Gap Report contract → 0201 integrity hardening → 0202 local RC → 0203 publication closeout |
|
|
242
|
+
| post-v0.5.3 | complete frozen CLI/commands refactor: 0204 → 0205 → 0206 → 0207 → 0208 → 0209 |
|
|
243
|
+
| v0.5.4 | behavior-preserving CLI/commands maintainability release → 0210 local RC → separately authorized publication |
|
|
214
244
|
|
|
215
245
|
Everything with an ID below 0102 is completed design history; see `TASKS.md`
|
|
216
246
|
for the one-line summary of each.
|
|
@@ -28,3 +28,19 @@ The guide is available before `pcl init` and does not create `.project-loop`.
|
|
|
28
28
|
It complements `pcl next --json`: use `guide` to learn a purpose-oriented route
|
|
29
29
|
and `next` to read the authoritative recommendation for the current project
|
|
30
30
|
state.
|
|
31
|
+
|
|
32
|
+
## Record a repeated harness failure
|
|
33
|
+
|
|
34
|
+
When a bounded trajectory exposes an environment problem rather than only a
|
|
35
|
+
product defect, validate and record a `gap-report/v1`:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pcl contract validate --type gap-report/v1 gap-report.json --json
|
|
39
|
+
pcl gap add gap-report.json --summary "Earliest failed handoff" --dry-run --json
|
|
40
|
+
pcl gap add gap-report.json --summary "Earliest failed handoff" --json
|
|
41
|
+
pcl gap list --target task:T-0001 --gap-class context --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Candidate lessons remain claims. `pcl gap promote` requires hash-bound human
|
|
45
|
+
provenance and records approval with durable-owner application still pending.
|
|
46
|
+
See [Gap Report v1](gap-report-v1.md).
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# 0199 v0.5.2 publication closeout
|
|
2
|
+
|
|
3
|
+
**Verified:** 2026-07-18
|
|
4
|
+
|
|
5
|
+
**Outcome:** published and publicly verified
|
|
6
|
+
|
|
7
|
+
## Immutable source chain
|
|
8
|
+
|
|
9
|
+
- Release commit: `bbe14cf5a8375e72eaa121c1b8a5a96362560d1d`
|
|
10
|
+
- Annotated tag object: `7643ce5ff982c79822dcef9dcf77396f55f9cc7a`
|
|
11
|
+
- Tag target: `bbe14cf5a8375e72eaa121c1b8a5a96362560d1d`
|
|
12
|
+
- GitHub Release:
|
|
13
|
+
`https://github.com/mocchalera/project-loop-harness/releases/tag/v0.5.2`
|
|
14
|
+
- Release published at: `2026-07-18T09:25:20Z`
|
|
15
|
+
- Release is neither draft nor prerelease.
|
|
16
|
+
|
|
17
|
+
## CI and publication
|
|
18
|
+
|
|
19
|
+
- The first candidate CI run `29638536535` failed because the newly frozen
|
|
20
|
+
ablation tests could not resolve historical commits from a shallow checkout.
|
|
21
|
+
`docs/evidence/0199-v052-ci-history-repair.md` records the bounded workflow
|
|
22
|
+
repair; no runtime or test expectation was weakened.
|
|
23
|
+
- Release-commit CI run `29638815262`: success across Python 3.10, 3.11, 3.12,
|
|
24
|
+
and 3.13; Ubuntu/Windows MCP conformance; Windows CLI smoke; build; Twine;
|
|
25
|
+
installed CLI smoke; and sdist contracts.
|
|
26
|
+
- Release-triggered Trusted Publishing run `29639130354`: success.
|
|
27
|
+
- Build-distributions job `88066532078`: success.
|
|
28
|
+
- Publish-to-PyPI job `88066563827`: success.
|
|
29
|
+
|
|
30
|
+
## Public PyPI artifacts
|
|
31
|
+
|
|
32
|
+
PyPI reports `project-loop-harness 0.5.2`, `Requires-Python >=3.10`, one wheel,
|
|
33
|
+
and one sdist. Downloaded bytes matched PyPI JSON digests.
|
|
34
|
+
|
|
35
|
+
| Artifact | Size | Uploaded | SHA-256 |
|
|
36
|
+
| --- | ---: | --- | --- |
|
|
37
|
+
| `project_loop_harness-0.5.2-py3-none-any.whl` | 487878 | `2026-07-18T09:26:10.519255Z` | `d7f5dda21e721c3405e694991fa7bbc844f7a31daecb4572efd67c48ffc81048` |
|
|
38
|
+
| `project_loop_harness-0.5.2.tar.gz` | 1401906 | `2026-07-18T09:26:12.162754Z` | `529e2236628d70cef2efade82a4ff3017649658e960e6c5b3e8afc0e2f1f601b` |
|
|
39
|
+
|
|
40
|
+
## Clean public install
|
|
41
|
+
|
|
42
|
+
A new Python 3.13 venv installed
|
|
43
|
+
`project-loop-harness==0.5.2` from PyPI with `--no-cache-dir` and no
|
|
44
|
+
`PYTHONPATH`:
|
|
45
|
+
|
|
46
|
+
- `pcl --version`: `pcl 0.5.2`;
|
|
47
|
+
- `pcl init` on a fresh temporary project: passed;
|
|
48
|
+
- `pcl validate --strict --json`: `ok: true`, no errors or warnings;
|
|
49
|
+
- `pcl render --json`: generated dashboard HTML and JSON successfully.
|
|
50
|
+
|
|
51
|
+
The existing pipx installation was upgraded from 0.5.1 to 0.5.2 and both
|
|
52
|
+
`pcl` and `pcl-mcp` are registered. Pipx separately reported an invalid
|
|
53
|
+
interpreter for unrelated package `haconiwa`; no repair was attempted because
|
|
54
|
+
it is outside this release.
|
|
55
|
+
|
|
56
|
+
## Claim boundary
|
|
57
|
+
|
|
58
|
+
The external five-person first-use cohort is still unrun. This release proves
|
|
59
|
+
artifact integrity and engineering verification only; it does not prove user
|
|
60
|
+
adoption, activation thresholds, or seven-day reuse.
|