project-loop-harness 0.5.3__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.3/src/project_loop_harness.egg-info → project_loop_harness-0.5.4}/PKG-INFO +1 -1
- 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.3 → project_loop_harness-0.5.4}/agent-tasks/README.md +25 -3
- 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.3 → project_loop_harness-0.5.4}/docs/maintainer-entry-hardening.md +22 -2
- project_loop_harness-0.5.4/docs/plan-refactoring-completion.md +69 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.3.md +13 -6
- project_loop_harness-0.5.4/docs/release-notes/v0.5.4.md +56 -0
- {project_loop_harness-0.5.3 → 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.3/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.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.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/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.3 → project_loop_harness-0.5.4/src/project_loop_harness.egg-info}/PKG-INFO +1 -1
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/SOURCES.txt +42 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/README.md +2 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/pcl-version.json +1 -1
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/mcp/fixtures/wire-transcript.json +1 -1
- 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.4/tests/test_execution_handlers.py +156 -0
- project_loop_harness-0.5.4/tests/test_parser_builders.py +90 -0
- project_loop_harness-0.5.3/src/pcl/__init__.py +0 -1
- project_loop_harness-0.5.3/src/pcl/cli.py +0 -4319
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/LICENSE +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/MANIFEST.in +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/Makefile +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/README.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0001-hardening-cli.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0002-db-migrations.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0003-workflow-runner.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0004-dashboard-renderer.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0005-agent-integration.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0006-codex-plugin.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0007-mcp-server.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0008-loop-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0009-defect-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0010-reporting-evidence.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0011-validation-invariants.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0012-audit-log-integrity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0013-validation-diagnostics.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0014-escalation-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0015-decision-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0016-escalation-decision-linkage.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0017-next-action-guided-loop.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0018-readme-golden-path.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0019-recovery-playbook.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0020-example-project-refresh.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0021-agent-adapter-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0022-agent-output-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0023-codex-exec-adapter-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0024-claude-manual-adapter-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0025-generic-shell-adapter.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0026-agent-job-evidence-ingestion.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0027-dashboard-data-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0028-dashboard-evidence-navigation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0029-dashboard-risk-and-blockers.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0030-distribution-readiness.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0031-workflow-proposal-mode.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0032-workflow-proposal-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0033-workflow-verifier.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0034-limited-execution-sandbox.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0035-automatic-workflow-executor.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0036-executor-dogfood-workflow.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0037-executor-retry-resume.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0038-story-test-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0039-workflow-yaml-rule-expressions.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0040-test-case-evidence-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0041-feature-inspection-commands.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0042-report-coverage-context.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0043-feature-report.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0044-complete-csv-export.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0045-filtered-job-inspection.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0046-feature-status-lifecycle.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0047-feature-coverage-next-action.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0048-migration-status-command.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0049-render-json-artifact-paths.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0050-codex-plugin-package-inventory.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0051-mcp-render-artifact-paths.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0052-lifecycle-failure-job-cleanup.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0053-prompt-job-json-handoff.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0054-human-queue-linkage-cli.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0055-workflow-proposal-list-filter.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0056-sandbox-noop-execution-guard.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0057-executor-no-executable-step-guard.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0058-dogfood-usability-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0059-checkpoint-review-guidance.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0060-pypi-trusted-publishing.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0061-context-pack-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0062-task-backlog-entity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0063-structured-verification-rubric.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0064-task-loop-integration.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0065-dashboard-human-decisions.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0066-agent-registry-lease.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0067-context-pack-improvements.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0068-trust-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0069-explainable-code-context-v0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0070-human-decision-cockpit.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0071-dogfood-impact-precision.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0072-sensitive-omission.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0073-code-context-module-split.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0074-search-snapshot-consistency.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0075-diff-source-modes.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0076-schema-version-integrity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0077-index-output-budget-and-impact-noise.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0078-context-pack-code-context-bridge.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0079-receipt-human-summary.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0080-retrieval-eval-gate.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0081-diff-modes-completion.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0082-receipt-relevance-and-age.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0083-required-section-invariant.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0084-source-commands-honesty.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0085-distribution-source-completeness.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0086-command-surface-alignment.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0087-verification-suggestion-ids.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0088-verification-feedback.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0089-dogfood-fixture-propose.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0090-eval-baseline-record-compare.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0091-refresh-command-scope-fidelity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0092-idempotent-status-transitions.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0093-evidence-add-command.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0094-job-completion-evidence.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0095-supporting-evidence-health.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0096-evidence-add-path-guards.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0097-evidence-durability-design.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/agent-tasks/0099-evidence-copy-mode.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0100-evidence-task-linking.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0101-evidence-id-allocation-race.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0102-source-drift-health-warning.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0103-security-policy-v02x.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0104-python-ci-matrix.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0105-evidence-copy-observability.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0106-release-checklist.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0107-agent-tasks-backlog-index.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0108-target-bound-code-context-receipts.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0113-evidence-links-table.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0114-source-hash-drift.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0115-context-pack-contract-fixtures.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0116-receipt-link-agreement-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0117-markdown-target-refresh-command.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0118-canonical-target-bound-handoff-docs.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0119-context-check-preflight.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0120-pcl-finish-terminal-closeout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0121-human-gate-japanese-guidance.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0122-feature-coverage-noop.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0123-master-trace-intent-index-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0124-baseline-fixtures-v0-3-1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0125-mcp-stdio-framing-negotiation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0126-mcp-external-conformance.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0127-transactional-audit-outbox-design.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0128-event-outbox-jsonl-projector.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0129-audit-check-repair-rebuild.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0130-crash-concurrency-test-suite.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0131-guarded-executor-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0132-master-trace-context-pack-section.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0133-windows-lock-fallback.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0134-completion-packet-v1-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0135-finish-emits-completion-packet.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0136-lite-pcl-start.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0137-handoff-packet-pcl-resume.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0138-kpi-report-surface.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0139-executable-resume-context.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0140-kpi-post-integration-sources.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0140a-skill-cli-contract-parity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0140b-lifecycle-integrity-gate.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0140c-fail-open-check-guard.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0141-idle-routing-repair.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0142-lifecycle-repair-planner.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0143-terminal-link-repair.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0144-skill-runtime-provenance.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0145-structured-validation-diagnostics.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0145a-integrity-migration-dogfood.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0145b-v0.4.1-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0146-work-brief-evidence-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0147-deterministic-route-recommendation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0148-adaptive-policy-resolve-explain.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0149-route-policy-override-integration.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0149a-adaptive-entry-dogfood.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0149b-v0.4.2-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0150-evidence-set-completeness-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0151-completion-policy-terminal-preflight.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0152-next-action-approval-provenance.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0153-cross-skill-integrity-dogfood.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0153b-v0.4.3-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0154-profile-boundary-adr-contract-freeze.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0155-profile-contract-runtime-and-registry.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0156-profile-read-only-prepare.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0157-profile-bundle-validation-dry-run.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0158-profile-bundle-atomic-ingest.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0159-decision-proposal-human-selection.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0160-council-profile-offline-e2e.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0161-council-dogfood-skill-parity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0162-council-evaluation-adoption-gate.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0163-adoption-first-release-readiness.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0164-guided-dashboard-review-experience.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0165-v043-field-feedback-friction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0166-local-skill-usage-improvement-loop.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0167-actionable-skill-usage-retry-signals.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0168-structured-command-guide.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0169-dashboard-decision-summary.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0170-exit-status-aware-skill-usage-friction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0171-actionable-finish-timeout-recovery.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0172-composite-pcl-result-status.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0173-v050-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0174-v050-publication-closeout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0175-maintainer-entry-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0176-scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0177-advisory-checkpoint-routing.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0178-trace-contract-fixture-freeze.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0179-intent-index-source-binding-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0180-claim-bound-context-resume.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0181-controlled-trace-resume-evaluation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0182-v051-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0183-v051-publication-closeout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0184-cli-stage1-presentation-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0185-cli-stage2-guide-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0186-cli-stage2-loop-status-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0187-cli-stage2-doctor-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0188-cli-stage2-report-artifact-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0189-v052-adoption-proof.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0190-v052-adoption-proof-evaluator.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0191-installed-skill-freshness.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0192-audit-evidence-impact-classification.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0193-target-bound-next-routing.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0194-skill-prose-runtime-parity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0195-shared-task-goal-target-resolver.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0196-active-proof-historical-findings.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0197-layered-harness-ablation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0197b-layered-ablation-fixture-materializer.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0198-evidence-gated-direct-flow-reduction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0199-v052-release-publication.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0200-gap-report-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0201-gap-report-integrity-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/agent-tasks/0202-v053-local-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adaptive-policy-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adoption-guide.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adoption-proof-v0.5.2-participant-kit.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adoption-proof-v0.5.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adr/0001-hybrid-state.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adr/0002-cli-is-the-runtime.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adr/0003-static-workflows-before-dynamic-workflows.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/adr/ADR-002-transactional-audit-outbox.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/agent-adapter-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/agent-output-template.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/agent-roles.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/approval-provenance-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/architecture.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/canonical-state-baseline-v0.4.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/code-context.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/command-guide.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/completion-packet-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/completion-policy-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/context-check.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/context-pack.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/council-profile.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/crash-concurrency-reliability.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dashboard-data-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dashboard-design.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/data-model.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/distribution.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood/adaptive-entry-v0.4.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood/lp-production-cross-skill-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood/v0.4.3-cross-skill-integrity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood/v0.5.0-council-profile.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood-report-v0.4.1-integrity-migration.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/dogfood-report-v0.4.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/layered-harness-ablation-offline-evaluator.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/layered-harness-ablation-runbook.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.0-council-evaluation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-resume-runbook.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-02-a.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-02-b.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-a.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evaluation/v0.5.1-trace-source-b.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/event-outbox-compatibility.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0136-pcl-start-demo.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0146-work-brief-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0147-route-recommendation-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0148-adaptive-policy-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0149-route-override-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0150-evidence-set-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0151-completion-policy-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0152-next-action-approval-provenance-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0152a-agent-mediated-human-approval-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0153-human-dogfood-approval.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0155-profile-contract-runtime-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0156-profile-read-only-prepare-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0157-profile-bundle-dry-run-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0158-atomic-profile-bundle-ingest-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0159-profile-decisions-authorization-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0160-council-discovery-offline-e2e-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0162-final-verification.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0162-human-adoption-outcome.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0163-adoption-first-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-codex-remediation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-red-tests.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0164-guided-dashboard-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0165-v043-field-feedback-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0166-local-skill-usage-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0167-actionable-skill-usage-signals-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0168-structured-command-guide-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0169-dashboard-decision-summary-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0170-exit-status-aware-skill-usage-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0171-actionable-finish-timeout-recovery-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0172-composite-pcl-result-status-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0174-v050-publication-verification.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0175-ci-portability-repair.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0176-scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0176-test-reverify-and-legacy-feature-receipts.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0177-advisory-checkpoint-routing.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0177-f0022-receipt-modernization.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0178-maintainer-entry-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0178-trace-contract-fixture-freeze.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0179-intent-index-source-binding-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0180-claim-bound-context-resume.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-evaluation-rerun.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-evaluation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0181-controlled-trace-resume-full-qa.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0182-v051-local-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0183-v051-publication-closeout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0184-cli-stage1-presentation-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0185-cli-stage2-guide-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0186-cli-stage2-loop-status-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0186-dashboard-inline-card-details.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0187-cli-stage2-doctor-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0188-cli-stage2-report-artifact-handler-extraction.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0189-v052-adoption-proof.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0190-v052-adoption-proof-evaluator.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0191-installed-skill-freshness.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0191-v052-local-verification-matrix.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0191b-final-review-addendum.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0192-audit-evidence-impact-classification.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0192-v052-legacy-config-repair.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0193-target-bound-next-routing-20260718.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0194-0196-harness-minimization-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0196-active-proof-historical-findings-20260718.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0197-layered-harness-ablation-results.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0199-v052-ci-history-repair.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0199-v052-publication-closeout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0199-v052-release-candidate.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0201-gap-report-integrity-hardening.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/0202-v053-local-release-preparation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/d0002-autonomous-continuation-validation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/node-finish-utsuro-dogfood.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence/node-init-autodetection-dogfood.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence-durability-design.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence-entry-paths-design.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/evidence-set-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/feedback/2026-07-06-ax1-moc1-agent-feedback.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/feedback/2026-07-16-kikulab-project-control-loop-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/finish.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/gap-report-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/golden-path.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/growth-plan-v0.2.4-v0.5.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/handoff-packet-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/implementation-plan.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/en-hn-reddit-draft.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/feedback-study.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/hn-human-authoring-brief.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/ja-zenn-draft.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/launch/v0.5.0/launch-checklist.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/docs/master-trace-handoff.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/master-trace-intent-index.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/mcp-compatibility.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/mcp-manual-smoke-runbook.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/pcl-start.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-observation-evidence-validity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-post-v0.5.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.4.0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.4.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.4.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.4.3.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.5.0-council-profile.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.5.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plan-v0.5.2-adoption-proof.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plh_v0_1_11_review_agenda.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/plh_v0_1_12_review_agenda.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/project-loop-harness-v0.2.3-third-party-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/ADR-005-external-council-profile-boundary.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/README.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/contract-freeze.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/external-runner-spec-v0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/implementation-proposal.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/proposals/council-profile/validation-transcript.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/pypi-publishing.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/recovery-playbook.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-checklist.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.2.4.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.3.3.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.4.3.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/release-notes/v0.5.2.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/releases/v0.3.1-baseline.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/releases/v0.3.3-mcp-stdio.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/research/2026-07-18-akihiro-genai-post-interpretation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0154-council-contract-freeze-claude-fable-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0155-0157-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0156-route-binding-claude-fable-advice.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0158-0160-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0159-decision-authorization-claude-fable-advice.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0161-0162-claude-fable-milestone-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0163-adoption-first-claude-fable-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-codex-final-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-codex-rereview.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/0164-guided-dashboard-plan-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/2026-07-13-business-technical-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/reviews/plan-v0.5.0-council-profile-review.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/00-executive-roadmap.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/01-adaptive-loop-architecture.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/02-contracts-and-data-model.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/03-implementation-plan.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/04-evaluation-and-rollout.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/05-pdm-discussion-guide.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/06-cli-contract-draft.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/07-state-machines-and-events.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/08-repository-integration.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/09-ai-plc-integration-mapping.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/ADOPTION.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/README.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/SOURCE_BASIS.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/VALIDATION_REPORT.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-001-profile-not-entity.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-002-transactional-audit-outbox.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-003-adaptive-policy-axes.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/adr/ADR-004-contract-first-promotion.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0125-mcp-external-conformance.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0130-guarded-executor-hardening.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0133-lite-pcl-start.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0136-deterministic-route-recommendation.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0139-stale-invalidation-propagation.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0140-verifier-provenance-separation.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0142-profile-contract-boundary.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0143-discovery-reference-profile.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0146-capability-profile-v0.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0149-knowledge-proposal-experiment.md +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0151-design-partner-operations.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/0152-adoption-stability-release.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/agent-tasks-proposed/README.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/ARCHITECTURE_REVIEW_PROMPT.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/IMPLEMENTATION_AGENT_PROMPT.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/integrated/handoff/PDM_REVIEW_PROMPT.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/roadmap/priority-reset-2026-07-13.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/route-recommendation-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/safety-permissions.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/scale-baseline-event-log-policy.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/skill-usage-report.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/stability-policy.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/trace-resume-evaluation-v0.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/v0.2.0-plan.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/verification-feedback-design.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/verification-feedback.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/verification-rubric.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/work-brief-v1.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/docs/workflow-contract.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/scripts/evaluate_adoption_proof.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/scripts/evaluate_layered_harness_ablation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/scripts/materialize_layered_harness_ablation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/scripts/run_advisory_retrieval_eval.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/scripts/verify_sdist_contracts.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/setup.cfg +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/__main__.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/adaptive_policy.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/agents.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/approval_provenance.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/audit.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/checkpoints.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/__init__.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/diff.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/eval.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/impact.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/receipts.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/scan.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/search.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/store.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/summary.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/symbols.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_context/test_hints.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/code_index.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/command_guide.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/completion_policies.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/context.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/context_binding.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/context_usage.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/__init__.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/_profile_contract.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/claim_set.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/completion_packet.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/completion_policy.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/council_run.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/decision_proposal.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/evidence_set.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/gap_report.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/handoff_packet.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/intent_index.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/policies/adaptive-policy-v1-default.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_manifest.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_output_bundle.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/profile_run_request.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/route_override.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/route_recommendation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/adaptive-policy-resolution-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/claim-set-v0.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/completion-packet-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/completion-policy-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/council-run-v0.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/decision-proposal-v0.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/evidence-set-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/gap-report-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/handoff-packet-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-manifest-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-output-bundle-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/profile-run-request-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/route-override-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/route-recommendation-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/verification-plan-v0.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/schemas/work-brief-v1.schema.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/verification_plan.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/contracts/work_brief.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/001_initial.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/002_tasks.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/003_agent_registry.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/004_code_index.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/005_verification_feedback.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/006_evidence_task_link.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/007_evidence_links.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/migrations/008_event_outbox.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db/schema.sql +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/db.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/decisions.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/dispatch.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/errors.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/escalations.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/events.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/evidence.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/evidence_sets.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/evidence_show.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/exporters.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/finish_execution.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/finish_recovery.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/gap_reports.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/guarded_process.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/guards.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/ids.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/init_project.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/kpi_report.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/lifecycle.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/lifecycle_repair.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/links.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/locales.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/locks.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/mcp_server.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/migrations.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/outbox.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/paths.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/presentation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_authorization.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_bundle_store.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_decisions.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_fixture_runner.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_ingest.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profile_prepare.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profiles/builtin/council.discovery.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profiles/fixtures/council.discovery/scenarios.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/profiles.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/project_config.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/read_handlers.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/receipt_show.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/redaction.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/registry.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/relationship_repair.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/renderer.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/reports.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/resources.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/resume.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/route_overrides.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/routing.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/rubric.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/skill_usage_report.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/start.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/stories.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/strict_evidence.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/target_resolver.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/tasks.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/dashboard/dashboard.html +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/project/AGENTS.block.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/project/CLAUDE.block.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/project/gitignore.fragment +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/project/pcl.yaml +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/skills/project-control-loop/SKILL.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/defect_repair.yaml +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/executor_smoke.yaml +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/feature_coverage.yaml +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/templates/workflows/regression_loop.yaml +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/test_faults.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/timeutil.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/token_estimation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/update_check.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/validators.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/verification_feedback.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/verifications.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/work_briefs.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_executor.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_proposal_validation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_proposals.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_sandbox.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_verifier.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflow_yaml.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/pcl/workflows.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/dependency_links.txt +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/entry_points.txt +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/requires.txt +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/src/project_loop_harness.egg-info/top_level.txt +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/baseline_fixture_tools.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/code_context_summary_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/full.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-budget-next-action.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-cases.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-critical-proof.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_packet/negative-passed-result.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/completion_policy/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/context_pack_code_context_contract_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/context_receipt_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/context_receipt_v0_legacy_string_suggestions.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/completion_verdict.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/coordinate_report.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/report-manifest.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/complete/reports/responsive_report.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/completion-policy.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/completion_verdict.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/coordinate_report.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/report-manifest.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/cross_skill_dogfood/incomplete/reports/responsive_report.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/report-manifest.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/evidence_set/visual-check.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/gap_report/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/handoff_packet/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/kpi_report_empty_v1.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/layered_harness_ablation_v0/evaluator-scenarios.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/layered_harness_ablation_v0/layered-harness-ablation-fixture.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/lifecycle_repair/all_classifications_v1.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/master_trace_context_contract_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/profile_bundle/cases.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/profile_e2e/decision-projection.expected.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/profile_e2e/run_offline_e2e.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_adversarial_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_real_history_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/retrieval_v0.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/scale_baseline_v1/README.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/scale_baseline_v1/manifest.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/start_initialized_v1.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/master-trace.md +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/release-smoke-invalid-trace-binding.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/release-smoke-valid-trace-binding.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/trace-binding-fixtures.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/trace_binding_v0/trace-resume-evaluation-fixture.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/context-check-help.json +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-next-json.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/empty-render-json.json +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/next-help.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/pcl-help.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/render-help.json +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-next-json.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/representative-render-json.json +0 -0
- {project_loop_harness-0.5.3 → 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.3 → project_loop_harness-0.5.4}/tests/fixtures/v0.3.1-baseline/snapshots/validate-help.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/work_brief/minimal.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/fixtures/work_brief/negative-embedded-route.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/mcp/conftest.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/mcp/fixtures/negative-matrix.json +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/mcp/test_external_conformance.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_adaptive_policy.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_adoption_docs.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_adoption_proof_evaluator.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_advisory_retrieval_eval_script.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_agent_adapter_contract.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_agent_output_validation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_agents.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_audit_commands.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_audit_log_integrity.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_baseline_fixtures.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_checkpoints.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_claude_manual_adapter.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_cli_init.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_code_context_summary.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_code_index.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_codex_exec_adapter.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_codex_plugin.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_command_guide.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_completion_packet_contract.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_completion_packet_package.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_completion_policy.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_context.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_context_check.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_contract_cli.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_council_evaluation_cohort.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_council_profile_proposal_contracts.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_crash_concurrency.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_cross_skill_integrity_dogfood.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_dashboard.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_dashboard_data_contract.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_decisions.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_defects.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_dispatch.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_distribution.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_escalations.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_event_outbox.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_evidence_add.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_evidence_sets.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_evidence_show.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_examples.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_execution_provenance.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_features.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_field_feedback_0165.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_finish.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_gap_reports.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_generic_shell_adapter.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_golden_path.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_guarded_process.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_handoff_packet_contract.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_integrity_migration_dogfood.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_kpi_report.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_cohort.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_evaluator.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_layered_harness_ablation_materializer.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_lifecycle.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_lifecycle_integrity.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_lifecycle_repair.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_locks.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_mcp_server.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_migrations.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_next_actions.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_presentation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_profile_contracts.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_profile_fixture_e2e.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_profile_ingest_dry_run.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_profile_prepare.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_pypi_publishing.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_read_handlers.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_receipt_show.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_recovery_playbook.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_registry.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_reports.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_resume.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_route_overrides.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_route_recommendation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_rubric.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_scale_baseline_fixture.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_skill_command_examples.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_skill_usage_report.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_start.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_stories.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_tasks.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_trace_contract_fixtures.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_cohort.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_cohort_02.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_results.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_trace_resume_evaluation_results_02.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_update_check.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_v050_adoption_demo.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_validation.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_validation_diagnostics.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_validation_finding_sources.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_validation_proof_scope.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_verification_feedback.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_work_briefs.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_workflow_executor.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_workflow_proposals.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_workflow_sandbox.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_workflow_verifier.py +0 -0
- {project_loop_harness-0.5.3 → project_loop_harness-0.5.4}/tests/test_workflows.py +0 -0
|
@@ -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.
|
|
@@ -120,6 +120,14 @@ implement from the spec file, not from prompt summaries.
|
|
|
120
120
|
| 0200 | `gap-report/v1` Harness Gap Evidence | Harness Engineering Feedback Loop | P0 | done |
|
|
121
121
|
| 0201 | `gap-report/v1` Integrity Hardening | Harness Engineering Feedback Loop | P1 | done |
|
|
122
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 |
|
|
123
131
|
|
|
124
132
|
v0.3.0 dispatch order: **0113 + 0114 in parallel** (independent; different
|
|
125
133
|
`evidence.py` surfaces) → **0108** (needs 0113 merged) → **0115** (freezes the
|
|
@@ -200,8 +208,20 @@ external first-use cohort remains open and no adoption claim is made. Task
|
|
|
200
208
|
owner's separate publication instruction.
|
|
201
209
|
|
|
202
210
|
v0.5.3 packages event-anchored strict Evidence resolution and the bounded
|
|
203
|
-
`gap-report/v1` feedback layer. Task **0202**
|
|
204
|
-
release candidate;
|
|
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.
|
|
205
225
|
|
|
206
226
|
## Planned next (see growth plan for scope)
|
|
207
227
|
|
|
@@ -218,7 +238,9 @@ release candidate; tagging, pushing, and public publication remain separate.
|
|
|
218
238
|
| v0.5.1 | Trace & Efficient Handoff: source-bound claims-not-facts handoff plus controlled cross-session/runtime resume evidence |
|
|
219
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 |
|
|
220
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 |
|
|
221
|
-
| v0.5.3 | strict copied-Evidence resolution → 0200 Gap Report contract → 0201 integrity hardening → 0202 local
|
|
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 |
|
|
222
244
|
|
|
223
245
|
Everything with an ID below 0102 is completed design history; see `TASKS.md`
|
|
224
246
|
for the one-line summary of each.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# 0203 v0.5.3 publication closeout
|
|
2
|
+
|
|
3
|
+
**Verified:** 2026-07-20
|
|
4
|
+
|
|
5
|
+
**Outcome:** published and publicly verified
|
|
6
|
+
|
|
7
|
+
## Immutable source chain
|
|
8
|
+
|
|
9
|
+
- Release commit: `6e49ac43986e8b965f1777eef9a88f7c73236ef6`
|
|
10
|
+
- Annotated tag object: `b5eb54666e8b537b17fd459bd1d9aa5cba94db89`
|
|
11
|
+
- Tag target: `6e49ac43986e8b965f1777eef9a88f7c73236ef6`
|
|
12
|
+
- GitHub Release:
|
|
13
|
+
`https://github.com/mocchalera/project-loop-harness/releases/tag/v0.5.3`
|
|
14
|
+
- Release published at: `2026-07-20T06:30:42Z`
|
|
15
|
+
- Release is neither draft nor prerelease.
|
|
16
|
+
|
|
17
|
+
## CI and publication
|
|
18
|
+
|
|
19
|
+
- Release-commit CI run `29721069992`: success across Python 3.10, 3.11,
|
|
20
|
+
3.12, and 3.13; Ubuntu/Windows MCP conformance; Windows CLI smoke; build;
|
|
21
|
+
installed CLI smoke; and sdist contracts.
|
|
22
|
+
- Release-triggered Trusted Publishing run `29721897474`: success.
|
|
23
|
+
- Build-distributions job `88286464842`: success.
|
|
24
|
+
- Publish-to-PyPI job `88286529538`: success.
|
|
25
|
+
- TestPyPI was intentionally skipped by the production Release workflow.
|
|
26
|
+
|
|
27
|
+
GitHub Actions emitted its platform warning that `actions/checkout@v4`,
|
|
28
|
+
`actions/setup-python@v5`, and `actions/upload-artifact@v4` target deprecated
|
|
29
|
+
Node.js 20 and were forced onto Node.js 24. The jobs passed; upgrading these
|
|
30
|
+
actions remains follow-up maintenance rather than a v0.5.3 publication blocker.
|
|
31
|
+
|
|
32
|
+
## Public PyPI artifacts
|
|
33
|
+
|
|
34
|
+
PyPI reports `project-loop-harness 0.5.3`, `Requires-Python >=3.10`, one wheel,
|
|
35
|
+
and one sdist. Independently downloaded bytes matched the PyPI JSON digests.
|
|
36
|
+
|
|
37
|
+
| Artifact | Size | Uploaded | SHA-256 |
|
|
38
|
+
| --- | ---: | --- | --- |
|
|
39
|
+
| `project_loop_harness-0.5.3-py3-none-any.whl` | 504394 | `2026-07-20T06:31:34.657058Z` | `0ce97a13c6deedf6525a8487aaba8080744e303c96845ee22028ad5bd623c54f` |
|
|
40
|
+
| `project_loop_harness-0.5.3.tar.gz` | 1462126 | `2026-07-20T06:31:36.400376Z` | `448166e9ed78c68ccba2c13dd4d9a20038c2e5e105b717ca97d5ebb02b07eb0a` |
|
|
41
|
+
|
|
42
|
+
## Clean public install
|
|
43
|
+
|
|
44
|
+
A new Python 3.13 venv at `/tmp/pcl-v053-public-verify.DPhCjr` installed
|
|
45
|
+
`project-loop-harness==0.5.3` from PyPI with `--no-cache-dir` and no
|
|
46
|
+
`PYTHONPATH`:
|
|
47
|
+
|
|
48
|
+
- CLI, imported package, and installed metadata all reported `0.5.3`;
|
|
49
|
+
- the packaged `gap-report/v1` validator accepted the minimal fixture;
|
|
50
|
+
- non-empty-project init dry-run and apply passed;
|
|
51
|
+
- strict doctor and strict validation returned zero findings;
|
|
52
|
+
- audit was clean with 9 matching SQLite/JSONL events and zero anomalies;
|
|
53
|
+
- dashboard render passed.
|
|
54
|
+
|
|
55
|
+
The pipx installation was replaced with the explicit public spec
|
|
56
|
+
`project-loop-harness==0.5.3`; both `pcl` and `pcl-mcp` are registered and the
|
|
57
|
+
installed package is no longer editable from the local repository. Pipx still
|
|
58
|
+
reports an invalid interpreter for unrelated package `haconiwa`; no repair was
|
|
59
|
+
attempted because it is outside this release.
|
|
60
|
+
|
|
61
|
+
## Repository harness state
|
|
62
|
+
|
|
63
|
+
- `pcl validate --strict --json`: `ok: true`; 3 active and 26 historical
|
|
64
|
+
warnings from pre-existing Evidence/lifecycle history.
|
|
65
|
+
- `pcl audit check --json`: 55 pre-existing human-review anomalies, with no
|
|
66
|
+
repairable or unsupported anomalies. This publication does not rewrite
|
|
67
|
+
historical Evidence or repair unrelated records.
|
|
68
|
+
- Validation ran before the final dashboard render.
|
|
69
|
+
|
|
70
|
+
## Claim boundary
|
|
71
|
+
|
|
72
|
+
This release proves artifact integrity and engineering verification only. It
|
|
73
|
+
does not establish external adoption, activation thresholds, or seven-day
|
|
74
|
+
reuse. The prepared external first-use cohort remains separate evidence work.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# 0204 CLI Stage 3 entity handlers evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
Goal, Task, Feature, Story, Test, and Defect CLI orchestration now lives in
|
|
6
|
+
`src/pcl/entity_handlers.py`. Parser definitions and service-layer mutation,
|
|
7
|
+
transaction, event, and outbox ownership remain unchanged.
|
|
8
|
+
|
|
9
|
+
## Revision
|
|
10
|
+
|
|
11
|
+
- Implementation commit: `d7d38ea` (`refactor: extract entity command handlers`)
|
|
12
|
+
- `src/pcl/cli.py`: 4,319 -> 3,836 lines
|
|
13
|
+
- Direct handler characterization: `tests/test_entity_handlers.py`
|
|
14
|
+
|
|
15
|
+
## Verification
|
|
16
|
+
|
|
17
|
+
- Baseline before movement: 1,160 passed, 1 skipped.
|
|
18
|
+
- Targeted entity/CLI/lifecycle tests: 67 passed.
|
|
19
|
+
- Skill examples and distribution tests: 32 passed.
|
|
20
|
+
- Full regression after movement: 1,164 passed, 1 skipped in 230.78s.
|
|
21
|
+
- `ruff check .`: passed.
|
|
22
|
+
- Source-checkout doctor: passed with zero findings.
|
|
23
|
+
- Strict validation: passed with no errors; the same three active and 26
|
|
24
|
+
historical pre-existing warnings remain.
|
|
25
|
+
- Render: passed.
|
|
26
|
+
- `git diff --check`: passed.
|
|
27
|
+
|
|
28
|
+
## Boundary review
|
|
29
|
+
|
|
30
|
+
- No command, flag, help, JSON/text output, typed error, or exit-code change.
|
|
31
|
+
- No dependency, schema, database migration, provider, telemetry, or external
|
|
32
|
+
write.
|
|
33
|
+
- Unrelated `.claude/**`, `.playwright-cli/`, `.project-loop/*.lock`, and
|
|
34
|
+
`.work/` paths were preserved and excluded from the commit.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# 0205 CLI Stage 3 execution and Evidence handlers evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
Workflow/Loop, Jobs, Agent, Evidence, Verification, Decision, Escalation, and
|
|
6
|
+
checkpoint CLI orchestration now lives in bounded execution and governance
|
|
7
|
+
handler modules. Existing services retain mutation, transaction, event,
|
|
8
|
+
outbox, artifact, and human-gate ownership.
|
|
9
|
+
|
|
10
|
+
## Revision
|
|
11
|
+
|
|
12
|
+
- Implementation commit: `dd9a327`
|
|
13
|
+
- `src/pcl/cli.py`: 3,836 -> 3,111 lines
|
|
14
|
+
- `src/pcl/execution_handlers.py`: 453 lines
|
|
15
|
+
- `src/pcl/governance_handlers.py`: 332 lines
|
|
16
|
+
- Direct characterization: `tests/test_execution_handlers.py`
|
|
17
|
+
|
|
18
|
+
## Verification
|
|
19
|
+
|
|
20
|
+
- Targeted execution/Evidence/governance tests: 162 passed.
|
|
21
|
+
- Skill examples and distribution tests: 32 passed.
|
|
22
|
+
- Full regression: 1,169 passed, 1 skipped in 224.22s.
|
|
23
|
+
- `ruff check .`: passed.
|
|
24
|
+
- Source-checkout doctor: passed with zero findings.
|
|
25
|
+
- Strict validation: passed with no errors and the unchanged pre-existing
|
|
26
|
+
warning set (three active, 26 historical).
|
|
27
|
+
- Render and `git diff --check`: passed.
|
|
28
|
+
|
|
29
|
+
## Boundary review
|
|
30
|
+
|
|
31
|
+
- No CLI contract, typed error, exit code, event/outbox, Evidence, or human
|
|
32
|
+
authorization behavior changed.
|
|
33
|
+
- No dependency, schema, migration, provider, telemetry, or external write.
|
|
34
|
+
- Unrelated dirty paths were preserved and excluded from the commit.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# 0206 CLI Stage 3 control and Profile handlers evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
Profile/contracts, project control, context/code-index, and planning/report
|
|
6
|
+
CLI orchestration now lives in four bounded handler modules. `cli.py` retains
|
|
7
|
+
parser construction, global option normalization, handler routing, and shared
|
|
8
|
+
top-level error translation.
|
|
9
|
+
|
|
10
|
+
## Revision
|
|
11
|
+
|
|
12
|
+
- Implementation commit: `d2e4e32`
|
|
13
|
+
- `src/pcl/cli.py`: 3,111 -> 1,893 lines
|
|
14
|
+
- New handlers: 1,335 lines across four modules
|
|
15
|
+
- Direct characterization: `tests/test_control_handlers.py`
|
|
16
|
+
|
|
17
|
+
## Verification
|
|
18
|
+
|
|
19
|
+
- Targeted compatibility tests: 516 passed.
|
|
20
|
+
- Direct handler characterization: 4 passed.
|
|
21
|
+
- Full regression: 1,173 passed, 1 skipped in 308.98s.
|
|
22
|
+
- `ruff check .`: passed.
|
|
23
|
+
- Source-checkout doctor: passed with zero findings.
|
|
24
|
+
- Strict validation: passed with no errors and the unchanged pre-existing
|
|
25
|
+
warning set (three active, 26 historical).
|
|
26
|
+
- CLI help, render, and `git diff --check`: passed.
|
|
27
|
+
|
|
28
|
+
## Boundary review
|
|
29
|
+
|
|
30
|
+
- Existing JSON/text/error/exit-code behavior and dry-run/human gates remain
|
|
31
|
+
unchanged.
|
|
32
|
+
- Existing `pcl.cli` monkeypatch seams for time and audit failure tests remain
|
|
33
|
+
injectable through the thin router.
|
|
34
|
+
- No dependency, schema, migration, provider, telemetry, or external write.
|
|
35
|
+
- Unrelated dirty paths were preserved and excluded from the commit.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# 0207 Command service responsibility split evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
`pcl.commands` is now a 54-line compatibility facade over domain operations,
|
|
6
|
+
next-action routing, and finish planning. Existing public imports remain valid,
|
|
7
|
+
while each responsibility has an explicit one-way dependency boundary.
|
|
8
|
+
|
|
9
|
+
## Revision
|
|
10
|
+
|
|
11
|
+
- Implementation commit: `d515542`
|
|
12
|
+
- `src/pcl/commands.py`: 2,444 -> 54 lines
|
|
13
|
+
- `src/pcl/command_domain.py`: 472 lines
|
|
14
|
+
- `src/pcl/action_routing.py`: 1,785 lines
|
|
15
|
+
- `src/pcl/finish_planning.py`: 214 lines
|
|
16
|
+
- Direct facade characterization: `tests/test_commands_facade.py`
|
|
17
|
+
|
|
18
|
+
## Verification
|
|
19
|
+
|
|
20
|
+
- Targeted domain/routing/finish/dashboard tests: 156 passed.
|
|
21
|
+
- Final focused facade/next/finish tests: 48 passed.
|
|
22
|
+
- Full regression: 1,175 passed, 1 skipped in 324.31s.
|
|
23
|
+
- `ruff check .`: passed.
|
|
24
|
+
- Source-checkout doctor: passed with zero findings.
|
|
25
|
+
- Strict validation: passed with no errors and the unchanged pre-existing
|
|
26
|
+
warning set (three active, 26 historical).
|
|
27
|
+
- CLI help, render, and `git diff --check`: passed.
|
|
28
|
+
|
|
29
|
+
## Boundary review
|
|
30
|
+
|
|
31
|
+
- Public constants, call signatures, query ordering, transactions, event
|
|
32
|
+
payloads, routing priority, serialized actions, and finish plans are unchanged.
|
|
33
|
+
- `start.py`, `renderer.py`, `finish_execution.py`, handlers, and direct test
|
|
34
|
+
imports continue to use `pcl.commands` without changes.
|
|
35
|
+
- No dependency, schema, migration, provider, telemetry, or external write.
|
|
36
|
+
- Unrelated dirty paths were preserved and excluded from the commit.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# 0208 CLI Stage 4 parser construction evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
Parser construction now uses seven command-family builders behind the stable
|
|
6
|
+
`pcl.parser.build_parser` facade, which remains re-exported from `pcl.cli`.
|
|
7
|
+
Registration order and every existing argparse contract remain unchanged.
|
|
8
|
+
|
|
9
|
+
## Revision
|
|
10
|
+
|
|
11
|
+
- Implementation commit: `1a78d7c`
|
|
12
|
+
- `src/pcl/cli.py`: 1,893 -> 231 lines
|
|
13
|
+
- Parser facade/common code: 36 lines
|
|
14
|
+
- Seven family builders: 1,628 lines
|
|
15
|
+
- Direct parser characterization: `tests/test_parser_builders.py`
|
|
16
|
+
|
|
17
|
+
## Verification
|
|
18
|
+
|
|
19
|
+
- Existing help/baseline/Skill/parser tests: 111 passed.
|
|
20
|
+
- Full command-order, top-level help, and representative-default tests: passed.
|
|
21
|
+
- Wheel and sdist distribution tests: 4 passed.
|
|
22
|
+
- Full regression: 1,178 passed, 1 skipped in 294.91s.
|
|
23
|
+
- `ruff check .`: passed.
|
|
24
|
+
- Source-checkout doctor: passed with zero findings.
|
|
25
|
+
- Strict validation: passed with no errors and the unchanged pre-existing
|
|
26
|
+
warning set (three active, 26 historical).
|
|
27
|
+
- CLI help, render, and `git diff --check`: passed.
|
|
28
|
+
|
|
29
|
+
## Boundary review
|
|
30
|
+
|
|
31
|
+
- One temporary retrieval-fixture regression was traced to an unnecessary
|
|
32
|
+
direct import in the new parser test; the test was decoupled and the failing
|
|
33
|
+
fixture plus full suite passed afterward.
|
|
34
|
+
- Commands, flags, defaults, choices, aliases, help order/text, parser errors,
|
|
35
|
+
source entry point, wheel entry point, and sdist content remain compatible.
|
|
36
|
+
- No dependency, schema, migration, provider, telemetry, or external write.
|
|
37
|
+
- Unrelated dirty paths were preserved and excluded from the commit.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# 0209 Refactoring integrated verification evidence
|
|
2
|
+
|
|
3
|
+
## Result
|
|
4
|
+
|
|
5
|
+
The frozen four-stage CLI and command-service refactor is complete. All
|
|
6
|
+
orchestration, service, parser, public import, source, wheel, and sdist
|
|
7
|
+
compatibility gates passed without intentional behavior changes.
|
|
8
|
+
|
|
9
|
+
## Scope and revisions
|
|
10
|
+
|
|
11
|
+
- Baseline: `1ea685a` (`cli.py` 4,319 lines; `commands.py` 2,444 lines).
|
|
12
|
+
- Planning: `dd7fc7c`.
|
|
13
|
+
- Entity handlers: `d7d38ea`; Evidence E-0551.
|
|
14
|
+
- Execution/governance handlers: `dd9a327`; Evidence E-0552.
|
|
15
|
+
- Control/Profile/context/planning handlers: `d2e4e32`; Evidence E-0553.
|
|
16
|
+
- Command services and compatibility facade: `d515542`; Evidence E-0554.
|
|
17
|
+
- Parser family builders: `1a78d7c`; Evidence E-0555.
|
|
18
|
+
- Stage closeout documentation commits: `e0fbc79`, `318126d`, `ddcf2e9`,
|
|
19
|
+
`2c614ed`, and `38b505a`.
|
|
20
|
+
|
|
21
|
+
## Final architecture
|
|
22
|
+
|
|
23
|
+
- `src/pcl/cli.py`: 231-line global-option, routing, and error facade.
|
|
24
|
+
- `src/pcl/commands.py`: 54-line stable import facade.
|
|
25
|
+
- Command handlers: read, entity, execution, governance, profile, control,
|
|
26
|
+
context, and planning families.
|
|
27
|
+
- Services: domain operations, next-action routing, and finish planning.
|
|
28
|
+
- Parser: one facade, one shared helper, and seven ordered family builders.
|
|
29
|
+
|
|
30
|
+
## Final verification
|
|
31
|
+
|
|
32
|
+
- Full regression: 1,178 passed, 1 skipped in 294.91s.
|
|
33
|
+
- New characterization coverage: 18 tests across handler, command-facade, and
|
|
34
|
+
parser-family boundaries.
|
|
35
|
+
- Baseline/help/Skill parser tests and all top-level command help smoke passed.
|
|
36
|
+
- Wheel install and sdist content/runtime smoke passed.
|
|
37
|
+
- Ruff and `git diff --check` passed.
|
|
38
|
+
- Source-checkout doctor passed with zero findings.
|
|
39
|
+
- Strict validation passed with no errors; the pre-existing warning set stayed
|
|
40
|
+
at three active and 26 historical findings.
|
|
41
|
+
- Render passed. Audit check confirmed 1,903 SQLite events, JSONL events, and
|
|
42
|
+
delivered outbox rows with no pending/failed rows. It returned exit 6 for 55
|
|
43
|
+
pre-existing human-review Evidence anomalies (E-0018 through E-0508); none
|
|
44
|
+
belongs to the refactor Evidence E-0551 through E-0555.
|
|
45
|
+
|
|
46
|
+
## Boundary and residual state
|
|
47
|
+
|
|
48
|
+
- No command, flag, help, output, exit code, typed error, transaction, event,
|
|
49
|
+
outbox, Evidence, human-gate, schema, dependency, or generated-artifact
|
|
50
|
+
contract changed intentionally.
|
|
51
|
+
- No publish, push, provider call, telemetry, or production write occurred.
|
|
52
|
+
- Existing `.claude`, `.playwright-cli`, `.work`, and Project Loop lock files
|
|
53
|
+
remain unrelated and uncommitted.
|
|
54
|
+
- Pre-existing E-0018 and E-0182 integrity warnings remain outside this
|
|
55
|
+
refactor and were not modified.
|