docguard-cli 0.36.2__tar.gz → 0.37.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docguard_cli-0.37.0/.agent/architect.md +84 -0
- docguard_cli-0.37.0/.docguard-archive.json +170 -0
- docguard_cli-0.37.0/.docguard-specs.json +351 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.docguard.json +3 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/buglog.json +144 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/cerebrum.md +16 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/AGENTS.md +12 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/CHANGELOG.md +60 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/CONTRIBUTING.md +14 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/DRIFT-LOG.md +2 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/PKG-INFO +24 -19
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/README.md +23 -18
- docguard_cli-0.37.0/ROADMAP.md +162 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/VALIDATION.md +2 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/explain.mjs +28 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/guard.mjs +4 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/llms.mjs +3 -2
- docguard_cli-0.37.0/cli/commands/retire.mjs +352 -0
- docguard_cli-0.37.0/cli/commands/specs.mjs +77 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/trace.mjs +11 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/config.mjs +2 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/docguard.mjs +69 -12
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/findings.mjs +54 -0
- docguard_cli-0.37.0/cli/scanners/document-lifecycle.mjs +184 -0
- docguard_cli-0.37.0/cli/scanners/requirement-evidence.mjs +126 -0
- docguard_cli-0.37.0/cli/scanners/spec-registry.mjs +517 -0
- docguard_cli-0.37.0/cli/shared-requirements.mjs +91 -0
- docguard_cli-0.37.0/cli/validators/document-lifecycle.mjs +51 -0
- docguard_cli-0.37.0/cli/validators/spec-registry.mjs +47 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/traceability.mjs +52 -216
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/ai-integration.md +18 -5
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/commands.md +45 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/quickstart.md +1 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/ARCHITECTURE.md +7 -4
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/DATA-MODEL.md +60 -3
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/SECURITY.md +1 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/TEST-SPEC.md +8 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/README.md +15 -5
- docguard_cli-0.37.0/extensions/spec-kit-docguard/commands/brief.md +34 -0
- docguard_cli-0.37.0/extensions/spec-kit-docguard/commands/preflight.md +52 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/extension.yml +18 -5
- {docguard_cli-0.36.2/.agent → docguard_cli-0.37.0/extensions/spec-kit-docguard}/skills/docguard-fix/SKILL.md +3 -3
- {docguard_cli-0.36.2/.agent → docguard_cli-0.37.0/extensions/spec-kit-docguard}/skills/docguard-guard/SKILL.md +2 -2
- {docguard_cli-0.36.2/.agent → docguard_cli-0.37.0/extensions/spec-kit-docguard}/skills/docguard-review/SKILL.md +2 -2
- {docguard_cli-0.36.2/.agent → docguard_cli-0.37.0/extensions/spec-kit-docguard}/skills/docguard-score/SKILL.md +2 -2
- {docguard_cli-0.36.2/.agent → docguard_cli-0.37.0/extensions/spec-kit-docguard}/skills/docguard-sync/SKILL.md +2 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/templates/extensions.yml +13 -6
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +1 -1
- docguard_cli-0.37.0/llms-full.txt +1627 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/llms.txt +0 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/package-lock.json +2 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/package.json +1 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/pyproject.toml +1 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/schemas/docguard-config.schema.json +2 -0
- docguard_cli-0.37.0/schemas/docguard-specs.schema.json +162 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/server.json +2 -2
- docguard_cli-0.37.0/specs/006-document-lifecycle/plan.md +130 -0
- docguard_cli-0.37.0/specs/006-document-lifecycle/spec.md +336 -0
- docguard_cli-0.37.0/specs/006-document-lifecycle/tasks.md +36 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ci/github-actions.yml +1 -1
- docguard_cli-0.37.0/tests/archive.test.mjs +223 -0
- docguard_cli-0.37.0/tests/document-lifecycle.test.mjs +148 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/feedback-contributions.test.mjs +1 -1
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/hooks-contract.test.mjs +7 -2
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/npm-pack-smoke.test.mjs +2 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/score-assurance.test.mjs +2 -2
- docguard_cli-0.37.0/tests/spec-registry.test.mjs +253 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/trace-features.test.mjs +13 -3
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/traceability.test.mjs +41 -0
- docguard_cli-0.36.2/ROADMAP.md +0 -151
- docguard_cli-0.36.2/docs-canonical/SURFACE-AUDIT.md +0 -345
- docguard_cli-0.36.2/docs-implementation/MIGRATION-v0.20.md +0 -194
- docguard_cli-0.36.2/docs-implementation/OSS-PRECISION-ASSESSMENT.md +0 -97
- docguard_cli-0.36.2/docs-implementation/PRECISION-VALIDATION.md +0 -56
- docguard_cli-0.36.2/docs-implementation/TRUST-ROADMAP.md +0 -182
- docguard_cli-0.36.2/docs-implementation/TRUST-VALIDATION.md +0 -45
- docguard_cli-0.36.2/llms-full.txt +0 -2072
- docguard_cli-0.36.2/specs/001-fix-ignore-validators/plan.md +0 -115
- docguard_cli-0.36.2/specs/001-fix-ignore-validators/spec.md +0 -104
- docguard_cli-0.36.2/specs/001-fix-ignore-validators/tasks.md +0 -49
- docguard_cli-0.36.2/specs/002-fix-test-discovery/plan.md +0 -134
- docguard_cli-0.36.2/specs/002-fix-test-discovery/spec.md +0 -87
- docguard_cli-0.36.2/specs/002-fix-test-discovery/tasks.md +0 -40
- docguard_cli-0.36.2/specs/003-v011-false-positives/plan.md +0 -140
- docguard_cli-0.36.2/specs/003-v011-false-positives/spec.md +0 -191
- docguard_cli-0.36.2/specs/003-v011-false-positives/tasks.md +0 -156
- docguard_cli-0.36.2/specs/004-v020-env-var-false-negative/spec.md +0 -149
- docguard_cli-0.36.2/specs/005-hugocross-next-bugs/spec.md +0 -367
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/docguard.fix.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/docguard.guard.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/docguard.review.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/docguard.score.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.analyze.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.checklist.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.clarify.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.constitution.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.implement.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.plan.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.specify.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.tasks.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/commands/speckit.taskstoissues.md +0 -0
- {docguard_cli-0.36.2/extensions/spec-kit-docguard → docguard_cli-0.37.0/.agent}/skills/docguard-fix/SKILL.md +0 -0
- {docguard_cli-0.36.2/extensions/spec-kit-docguard → docguard_cli-0.37.0/.agent}/skills/docguard-guard/SKILL.md +0 -0
- {docguard_cli-0.36.2/extensions/spec-kit-docguard → docguard_cli-0.37.0/.agent}/skills/docguard-review/SKILL.md +0 -0
- {docguard_cli-0.36.2/extensions/spec-kit-docguard → docguard_cli-0.37.0/.agent}/skills/docguard-score/SKILL.md +0 -0
- {docguard_cli-0.36.2/extensions/spec-kit-docguard → docguard_cli-0.37.0/.agent}/skills/docguard-sync/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-analyze/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-checklist/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-clarify/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-constitution/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-implement/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-plan/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-specify/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-tasks/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.agent/skills/speckit-taskstoissues/SKILL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.claude/rules/openwolf.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.claude/settings.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.docguardignore +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/ISSUE_TEMPLATE/docguard-feedback.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/dependabot.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/scripts/speckit-submission.py +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/auto-merge.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/ci.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/jules-triage.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/release.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/scheduled-release.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/supply-chain.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.github/workflows/sync-speckit-catalog.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.gitignore +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.jules/bolt.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.jules/palette.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.jules/sentinel.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.jules-setup.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.npmignore +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.npmrc +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.pre-commit-hooks.yaml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/extensions/.cache/catalog-metadata.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/extensions/.cache/catalog.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/init-options.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/memory/constitution.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/scripts/bash/check-prerequisites.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/scripts/bash/common.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/scripts/bash/create-new-feature.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/scripts/bash/setup-plan.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/scripts/bash/update-agent-context.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/agent-file-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/checklist-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/constitution-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/plan-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/spec-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.specify/templates/tasks-template.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/OPENWOLF.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/anatomy.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/config.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/cron-manifest.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/cron-state.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/daemon.log +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/designqc-report.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/_session.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/_wrap_up_nudged +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/package.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/post-read.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/post-write.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/pre-read.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/pre-write.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/session-start.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/shared.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/hooks/stop.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/identity.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/memory.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/reframe-frameworks.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/suggestions.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/.wolf/token-ledger.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/CLAUDE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/CODE_OF_CONDUCT.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/COMPARISONS.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/Dockerfile +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/LICENSE +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/PHILOSOPHY.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/PRIVACY.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/README.es.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/README.pt-BR.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/SECURITY.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/STANDARD.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/SUPPLY-CHAIN-AUDIT.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/SUPPORT.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/action.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/assets/bin/docguard +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/assets/demo.gif +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/assets/demo.tape +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/assets/docguard-logo.png +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/agent.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/agents.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/badge.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/ci.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/demo.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/diagnose.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/diff.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/feedback.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/fix.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/generate.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/hooks.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/impact.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/init.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/mcp.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/memory.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/publish.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/report.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/score.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/setup.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/sync-tests.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/upgrade.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/verify.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/commands/watch.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/ensure-skills.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/agent-readability.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/api-doc.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/cdk.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/doc-tools.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/frontend.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/iac.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/instruction-audit.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/integrations.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/inventory.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/js-ast.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/memory-plan.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/project-type.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/py-ast.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/routes.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/schemas.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/semantic-claims.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/scanners/speckit.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-diff.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-doc-roles.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-git.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-ignore.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-ir.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-source.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared-trace-patterns.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/shared.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validator-coverage.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validator-markers.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/api-doc-smells.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/api-surface.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/architecture.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/canonical-sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/changelog.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/cross-reference.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/diff-suspicion.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/doc-quality.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/docs-coverage.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/docs-diff.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/docs-sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/drift.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/environment.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/freshness.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/generated-staleness.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/metadata-sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/metrics-consistency.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/reference-existence.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/schema-sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/security.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/spec-kit.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/structure.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/surface-sync.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/test-spec.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/validators/todo-tracking.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/api-reference.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/baseline.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/doc-generators.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/fix-memory.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/generate-io.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/history.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/junit.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/mechanical.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/sarif.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/cli/writers/sections.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/commands/docguard.fix.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/commands/docguard.guard.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/commands/docguard.review.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/commands/docguard.score.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/configs/fastify.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/configs/generic.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/configs/nextjs.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/configs/python.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docguard_cli/__init__.py +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docguard_cli/wrapper.py +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/configuration.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/doc-sections.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/faq.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/installation.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs/profiles.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/CI-RECIPES.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/ENVIRONMENT.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/docs-canonical/REQUIREMENTS.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/01-express-api/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/01-express-api/package.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/01-express-api/server.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/02-python-flask/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/02-python-flask/app.py +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/02-python-flask/requirements.txt +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/CHANGELOG.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/package.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/src/index.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/tasks.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/03-spec-kit-project/tests/basic.test.js +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/examples/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/LICENSE +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/diagnose.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/fix.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/generate.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/guard.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/init.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/score.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/sync.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/commands/trace.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/glama.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/mcpb/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/mcpb/manifest.template.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/packaging/homebrew/docguard.rb +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/packaging/submissions.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/smithery.yaml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ADR.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/AGENTS.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ARCHITECTURE.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/CHANGELOG.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/CURRENT-STATE.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/DATA-MODEL.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/DEPLOYMENT.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/DRIFT-LOG.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ENVIRONMENT.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/KNOWN-GOTCHAS.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/REQUIREMENTS.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ROADMAP.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/RUNBOOKS.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/SECURITY.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/TEST-SPEC.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/TROUBLESHOOTING.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/VENDOR-BUGS.md.template +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/ci/gitlab-component.yml +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/commands/docguard.fix.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/commands/docguard.guard.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/commands/docguard.init.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/commands/docguard.review.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/commands/docguard.update.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/.docguard.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/.env.example +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/AGENTS.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/CHANGELOG.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/DRIFT-LOG.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/README.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/SECURITY.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/package.json +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/src/api.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/src/notifier.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/src/scheduler.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/templates/demo-fixture/src/worker.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agent-evidence.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agent-readability.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agent.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agents-check-readonly.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agents-command.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/agents-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/anchor-autofix.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/api-authority-precision.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/api-doc-smells.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/api-doc.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/api-surface.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/api-write.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/architecture.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/b7-node-env-symmetry.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/backup-failure.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/badge.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/baseline.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/canonical-docs-nested-phase2.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/canonical-docs-nested.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/canonical-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/catalog-submission.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/cdk-detection.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/changed-only-scoping.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/changed-only.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/changelog.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/check-coverage.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/ci-reproducibility.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/ci-scaffolder.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/commands.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/cross-reference.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/demo-command.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/diagnose-review-guidance.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/diff-suspicion.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/doc-quality.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/doc-role-boundaries.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/doc-role-mapping.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/doc-section-synonyms.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docguardignore.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docs-coverage-reference-evidence.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docs-coverage-scope.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docs-coverage.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docs-diff.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/docs-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/drift.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/ensure-skills-idempotent.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/env-schema-detection.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/environment.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/explain-coverage.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-context-precision.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-diff-precision.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-report-2-cli.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-report-3-deferred.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-report-3.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/field-review-clarity.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/fix-memory.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/fix-suppression.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/fixture-projects.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/freshness.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/frontend-deep.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/frontend.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/generate-io.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/generated-staleness.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/guard-classify.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/guard-no-throw.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/history.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/hooks.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/i18n.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/impact.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/init-smart-detection.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/instruction-audit.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/integrations.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/inventory.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/js-ast.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/junit.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/llms-full-pack.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/mcp-http.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/mcp.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/mechanical.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/memory-plan.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/metadata-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/metrics-consistency.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/metrics-dedup.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/monorepo-scanning.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/multi-spec.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/nudge-hook.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/openapi-parse-honesty.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/patch-0.11.2.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/plan-disk-cache.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/profile-flag.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/project-type.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/py-ast.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/reference-existence.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/regenerate-section.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/report.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/requirement-scope.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/route-field-precision.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/routes-express-mounts.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/routes-fastify.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/routes-multilang.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/routes-nextjs-app-router.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/sarif.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/schema-sync-scope.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/schema-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/schemas-multilang.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/schemas.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/scoping-extended.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/score-suggestions.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/section-na-markers.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/sections.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/security-init-injection.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/security.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/severity.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/shared-diff.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/shared-git.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/shared-ignore-functions.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/shared-ir.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/shared-source.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/spec-kit-helper-json.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/speckit-bugfix.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/speckit-phantom.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/starter-scaffold.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/stress-test.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/structure.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/surface-sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/sweep-nudge.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/sync-since.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/sync.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/test-spec.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/todo-tracking.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/trace-multilang.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/trace-reverse.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/traceability-fixtures.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/traceability-ir.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/upgrade-pr-e2e.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/upgrade-pr.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/upgrade.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/v020-consolidation.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/validator-markers.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/validator-naming.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/verify-change-context.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/version-pin.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/watch-reliability.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/whats-new.test.mjs +0 -0
- {docguard_cli-0.36.2 → docguard_cli-0.37.0}/tests/worker-python-capability.test.mjs +0 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Architecture Decision Journal
|
|
2
|
+
|
|
3
|
+
## 2026-09-14 — Spec lifecycle authority and context retirement
|
|
4
|
+
|
|
5
|
+
**Problem:** Completed feature folders and superseded plans remain beside active
|
|
6
|
+
requirements. Agents can interpret historical prose as current intent, while
|
|
7
|
+
direct implementation changes may never flow back into specs.
|
|
8
|
+
|
|
9
|
+
**Evidence:** Spec Kit deliberately supports flow-back, flow-forward, and living
|
|
10
|
+
spec persistence models rather than selecting one. Its extension API exposes
|
|
11
|
+
`before_specify`, `after_implement`, and related lifecycle hooks. The community
|
|
12
|
+
Archive extension consolidates feature deltas into `.specify/memory/`; the
|
|
13
|
+
Reconcile extension updates a feature's artifacts from a bounded drift report.
|
|
14
|
+
Open Spec Kit issue #620 describes the same cross-feature supersession problem.
|
|
15
|
+
|
|
16
|
+
**Decision:** DocGuard will use a hybrid living-contract model:
|
|
17
|
+
|
|
18
|
+
1. Active approved requirement prose remains the source of intent.
|
|
19
|
+
2. Source, configuration, and tests remain implementation evidence.
|
|
20
|
+
3. `.docguard-specs.json` becomes a deterministic, committed control plane.
|
|
21
|
+
Reviewed fields are authoritative for orthogonal approval, delivery, context,
|
|
22
|
+
storage, persistence policy, lineage, and declared scope;
|
|
23
|
+
generated fields index requirement identities, evidence, and reconciliation
|
|
24
|
+
revision. It points to requirement prose and does not copy it.
|
|
25
|
+
4. Context packs are generated projections of active registry entries and
|
|
26
|
+
canonical docs.
|
|
27
|
+
5. Completed/superseded prose leaves active search paths after consolidation;
|
|
28
|
+
Git plus `.docguard-archive.json` preserve recovery and provenance.
|
|
29
|
+
6. DocGuard validates compatible Archive/Reconcile extension outputs instead of
|
|
30
|
+
recreating their prompt-based merge workflows.
|
|
31
|
+
7. Completion is a delivery transition from `implemented → verified`. Checked tasks
|
|
32
|
+
establish a claim; reconciliation of intent, tests, implementation evidence,
|
|
33
|
+
and current docs establishes verification.
|
|
34
|
+
8. A verified spec receives a bounded outcome record before its historical prose
|
|
35
|
+
leaves active context. Direct code changes either refresh proven mechanical
|
|
36
|
+
facts or create a reviewed amendment/successor decision.
|
|
37
|
+
9. Spec identity comes from immutable metadata, not its directory. Requirement
|
|
38
|
+
evidence uses `specId#requirementId`; retired IDs remain as tombstones so a
|
|
39
|
+
bare `FR-001` can never rebind and certify another feature.
|
|
40
|
+
10. `.docguard-archive.json` owns generic document recovery events, while
|
|
41
|
+
`.docguard-specs.json` owns spec governance. A validator cross-checks both;
|
|
42
|
+
neither duplicates retired prose.
|
|
43
|
+
11. One `docguard specs` command family is the lifecycle-state writer. Guard,
|
|
44
|
+
trace, preflight, completion, and hooks consume the same pure projection.
|
|
45
|
+
|
|
46
|
+
**Rejected alternatives:** Keeping every feature folder in the working tree
|
|
47
|
+
preserves audit history but pollutes agent context. Making code automatically
|
|
48
|
+
rewrite requirements can legitimize regressions. Treating the registry as a
|
|
49
|
+
second prose contract creates another drift surface. Contributing a DocGuard
|
|
50
|
+
policy engine directly to Spec Kit core would couple two tools before the
|
|
51
|
+
interoperability contract has field evidence.
|
|
52
|
+
|
|
53
|
+
**Operational contract:** New-spec preflight refreshes the registry, checks
|
|
54
|
+
identity and lineage, then reports existing implementation evidence, active
|
|
55
|
+
intent conflicts, unreconciled changes, and semantic review items separately.
|
|
56
|
+
Completion regenerates the observed projection and agent context, updates only
|
|
57
|
+
proven mechanical facts automatically, appends the implementation outcome, and
|
|
58
|
+
records the reconciled Git revision. Registry generation is byte-deterministic;
|
|
59
|
+
reviewed control fields survive regeneration.
|
|
60
|
+
|
|
61
|
+
Registry transitions are atomic across governance and recovery metadata. A
|
|
62
|
+
current spec must resolve to a clean tracked path; a retired spec must resolve to
|
|
63
|
+
a matching retained recovery event; supersession must name an approved current
|
|
64
|
+
successor; verification must carry exact revision and requirement-qualified
|
|
65
|
+
evidence.
|
|
66
|
+
|
|
67
|
+
Preflight has two points: an advisory briefing before a spec exists and an
|
|
68
|
+
enforceable structural check after specification but before planning. Spec Kit
|
|
69
|
+
hooks can prompt these actions, while CLI/CI owns the blocking result. DocGuard
|
|
70
|
+
refreshes only its own context outputs and validates compatible extension
|
|
71
|
+
outputs; it does not silently rewrite agent-native instruction files.
|
|
72
|
+
|
|
73
|
+
**Lifecycle representation:** Do not overload one `status`. Approval
|
|
74
|
+
(`draft|approved|rejected`), delivery
|
|
75
|
+
(`planned|in_progress|implemented|verified|released`), context
|
|
76
|
+
(`current|retired`), retirement reason (`completed|superseded|abandoned`),
|
|
77
|
+
storage (`working_tree|git_history`), and persistence policy are independent.
|
|
78
|
+
Archive readiness is stricter than implementation verification because the
|
|
79
|
+
source revision and every live backreference must also remain valid.
|
|
80
|
+
|
|
81
|
+
**Upstream path:** Prove the registry and hooks in DocGuard, interoperate with the
|
|
82
|
+
existing community extensions, then propose a generic lifecycle metadata/hook
|
|
83
|
+
contract on Spec Kit issue #620. Keep DocGuard-specific evidence and enforcement
|
|
84
|
+
outside Spec Kit core.
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"strategy": "git-history",
|
|
4
|
+
"retention": {
|
|
5
|
+
"ref": "refs/remotes/origin/main",
|
|
6
|
+
"objectFormat": "sha1",
|
|
7
|
+
"recoverability": "verified"
|
|
8
|
+
},
|
|
9
|
+
"entries": [
|
|
10
|
+
{
|
|
11
|
+
"path": "docs-canonical/SURFACE-AUDIT.md",
|
|
12
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
13
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
14
|
+
"blob": "a2ba5ab7e6fc4cd6f5893b4584f57a6146749550",
|
|
15
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
16
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-canonical/SURFACE-AUDIT.md"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"path": "docs-implementation/MIGRATION-v0.20.md",
|
|
20
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
21
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
22
|
+
"blob": "400a4a62adc0a9d63b968635811ab5e59369c8d6",
|
|
23
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
24
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-implementation/MIGRATION-v0.20.md"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"path": "docs-implementation/OSS-PRECISION-ASSESSMENT.md",
|
|
28
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
29
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
30
|
+
"blob": "d08f940514deeb2db0aa4c06519c2a7d5c2dd4fc",
|
|
31
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
32
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-implementation/OSS-PRECISION-ASSESSMENT.md"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"path": "docs-implementation/PRECISION-VALIDATION.md",
|
|
36
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
37
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
38
|
+
"blob": "af0b34a37834be34669d5d4a1398820f2f75575f",
|
|
39
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
40
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-implementation/PRECISION-VALIDATION.md"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "docs-implementation/TRUST-ROADMAP.md",
|
|
44
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
45
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
46
|
+
"blob": "3bae2edd854413283b99074ae024f187b29ec263",
|
|
47
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
48
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-implementation/TRUST-ROADMAP.md"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"path": "docs-implementation/TRUST-VALIDATION.md",
|
|
52
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
53
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
54
|
+
"blob": "e5df37fcd648f7d6ae86a1e6941371bf0319882d",
|
|
55
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
56
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- docs-implementation/TRUST-VALIDATION.md"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"path": "specs/001-fix-ignore-validators/plan.md",
|
|
60
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
61
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
62
|
+
"blob": "83ad7c749e4847a9d922403836e37ec4e93904c6",
|
|
63
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
64
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/001-fix-ignore-validators/plan.md"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "specs/001-fix-ignore-validators/spec.md",
|
|
68
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
69
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
70
|
+
"blob": "1bd554afadfb95c014a4510946ce70b8c80a8a55",
|
|
71
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
72
|
+
"requirementIds": [
|
|
73
|
+
"FR-001", "FR-002", "FR-003", "FR-004", "FR-005", "FR-006", "FR-007",
|
|
74
|
+
"FR-008", "FR-009", "FR-010", "FR-011", "FR-012", "FR-013", "FR-014",
|
|
75
|
+
"SC-001", "SC-002", "SC-003", "SC-004", "SC-005", "SC-006"
|
|
76
|
+
],
|
|
77
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/001-fix-ignore-validators/spec.md"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"path": "specs/001-fix-ignore-validators/tasks.md",
|
|
81
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
82
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
83
|
+
"blob": "db1030e5d20e67ab905e9a25bad92d24cfd9fe8e",
|
|
84
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
85
|
+
"requirementIds": [
|
|
86
|
+
"T001", "T002", "T003", "T004", "T005", "T006", "T007", "T008", "T009",
|
|
87
|
+
"T010", "T011", "T012", "T013", "T014", "T015", "T016", "T017", "T018", "T019"
|
|
88
|
+
],
|
|
89
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/001-fix-ignore-validators/tasks.md"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"path": "specs/002-fix-test-discovery/plan.md",
|
|
93
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
94
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
95
|
+
"blob": "5f8d5ff9a49ec3be89c6a1b5432410696ef85d6d",
|
|
96
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
97
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/002-fix-test-discovery/plan.md"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"path": "specs/002-fix-test-discovery/spec.md",
|
|
101
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
102
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
103
|
+
"blob": "93f087a13b3fca5a03f237cfb7909f71f15da9b2",
|
|
104
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
105
|
+
"requirementIds": [
|
|
106
|
+
"FR-001", "FR-002", "FR-003", "FR-004", "FR-005", "FR-006", "FR-007", "FR-008",
|
|
107
|
+
"SC-001", "SC-002", "SC-003", "SC-004", "SC-005"
|
|
108
|
+
],
|
|
109
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/002-fix-test-discovery/spec.md"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "specs/002-fix-test-discovery/tasks.md",
|
|
113
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
114
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
115
|
+
"blob": "dbf69eac7f5c5113c5a1034fb01ebcf5275f9857",
|
|
116
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
117
|
+
"requirementIds": [
|
|
118
|
+
"T001", "T002", "T003", "T004", "T005", "T006", "T007",
|
|
119
|
+
"T008", "T009", "T010", "T011", "T012", "T013", "T014"
|
|
120
|
+
],
|
|
121
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/002-fix-test-discovery/tasks.md"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"path": "specs/003-v011-false-positives/plan.md",
|
|
125
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
126
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
127
|
+
"blob": "ffbc773ffca6bd889cb342b048093cf2a9bebde6",
|
|
128
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
129
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/003-v011-false-positives/plan.md"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"path": "specs/003-v011-false-positives/spec.md",
|
|
133
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
134
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
135
|
+
"blob": "99c99ab6ad8e83398eafaee4a8605eb1481d2bef",
|
|
136
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
137
|
+
"requirementIds": [
|
|
138
|
+
"FR-001", "FR-002", "FR-003", "FR-004", "FR-005", "FR-006", "FR-007", "FR-008",
|
|
139
|
+
"FR-009", "FR-010", "FR-011", "FR-012", "FR-013", "FR-014", "FR-015", "FR-016",
|
|
140
|
+
"SC-001", "SC-002", "SC-003", "SC-004", "SC-005", "SC-006", "SC-007", "SC-008",
|
|
141
|
+
"SC-009", "SC-010"
|
|
142
|
+
],
|
|
143
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/003-v011-false-positives/spec.md"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"path": "specs/003-v011-false-positives/tasks.md",
|
|
147
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
148
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
149
|
+
"blob": "9ac9f4931e360d81756891140ef0bf72ce7b15c0",
|
|
150
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
151
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/003-v011-false-positives/tasks.md"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"path": "specs/004-v020-env-var-false-negative/spec.md",
|
|
155
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
156
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
157
|
+
"blob": "36d1fa4855fa68c33f9d73765206d85d7d2268df",
|
|
158
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
159
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/004-v020-env-var-false-negative/spec.md"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"path": "specs/005-hugocross-next-bugs/spec.md",
|
|
163
|
+
"archivedAt": "2026-09-14T15:26:57.257Z",
|
|
164
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
165
|
+
"blob": "ef774e226a55710a95f49d2ee3e066db86dedf2d",
|
|
166
|
+
"reason": "Released or superseded work; current behavior is represented by canonical docs, tests, and CHANGELOG.md",
|
|
167
|
+
"restore": "git restore --source=b921dcbd0cc3476594100a414e3f8e9d4daa39c8 -- specs/005-hugocross-next-bugs/spec.md"
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
}
|
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raccioly.github.io/docguard/schemas/docguard-specs.schema.json",
|
|
3
|
+
"schemaVersion": 1,
|
|
4
|
+
"specs": [
|
|
5
|
+
{
|
|
6
|
+
"specId": "docguard.document-lifecycle",
|
|
7
|
+
"path": "specs/006-document-lifecycle/spec.md",
|
|
8
|
+
"reviewed": {
|
|
9
|
+
"lifecycle": {
|
|
10
|
+
"approval": "approved",
|
|
11
|
+
"delivery": "in_progress",
|
|
12
|
+
"context": "current",
|
|
13
|
+
"retirementReason": null,
|
|
14
|
+
"storage": "working_tree",
|
|
15
|
+
"persistenceModel": "living"
|
|
16
|
+
},
|
|
17
|
+
"relations": {
|
|
18
|
+
"extends": [],
|
|
19
|
+
"duplicates": [],
|
|
20
|
+
"conflictsWith": [],
|
|
21
|
+
"supersedes": [],
|
|
22
|
+
"supersededBy": []
|
|
23
|
+
},
|
|
24
|
+
"scope": {
|
|
25
|
+
"canonicalDocs": [
|
|
26
|
+
"docs-canonical/ARCHITECTURE.md",
|
|
27
|
+
"docs-canonical/DATA-MODEL.md",
|
|
28
|
+
"docs-canonical/REQUIREMENTS.md",
|
|
29
|
+
"docs-canonical/TEST-SPEC.md"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"reconciliation": {
|
|
33
|
+
"lastReviewedRevision": null
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"intent": {
|
|
37
|
+
"requirements": [
|
|
38
|
+
"docguard.document-lifecycle#FR-001",
|
|
39
|
+
"docguard.document-lifecycle#FR-002",
|
|
40
|
+
"docguard.document-lifecycle#FR-003",
|
|
41
|
+
"docguard.document-lifecycle#FR-004",
|
|
42
|
+
"docguard.document-lifecycle#FR-005",
|
|
43
|
+
"docguard.document-lifecycle#FR-006",
|
|
44
|
+
"docguard.document-lifecycle#FR-007",
|
|
45
|
+
"docguard.document-lifecycle#FR-008",
|
|
46
|
+
"docguard.document-lifecycle#FR-009",
|
|
47
|
+
"docguard.document-lifecycle#FR-010",
|
|
48
|
+
"docguard.document-lifecycle#FR-011",
|
|
49
|
+
"docguard.document-lifecycle#FR-012",
|
|
50
|
+
"docguard.document-lifecycle#FR-013",
|
|
51
|
+
"docguard.document-lifecycle#FR-014",
|
|
52
|
+
"docguard.document-lifecycle#FR-015",
|
|
53
|
+
"docguard.document-lifecycle#FR-016",
|
|
54
|
+
"docguard.document-lifecycle#FR-017",
|
|
55
|
+
"docguard.document-lifecycle#FR-018",
|
|
56
|
+
"docguard.document-lifecycle#FR-019",
|
|
57
|
+
"docguard.document-lifecycle#FR-020",
|
|
58
|
+
"docguard.document-lifecycle#SC-001",
|
|
59
|
+
"docguard.document-lifecycle#SC-002",
|
|
60
|
+
"docguard.document-lifecycle#SC-003",
|
|
61
|
+
"docguard.document-lifecycle#SC-004",
|
|
62
|
+
"docguard.document-lifecycle#SC-005",
|
|
63
|
+
"docguard.document-lifecycle#SC-006",
|
|
64
|
+
"docguard.document-lifecycle#SC-007"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"observed": {
|
|
68
|
+
"artifacts": [
|
|
69
|
+
{
|
|
70
|
+
"path": "specs/006-document-lifecycle/spec.md",
|
|
71
|
+
"digest": "sha256:aa2c1bf75f10408a08deb6665f35c27468f037c58c630303a89443b97ced1d9e"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"path": "specs/006-document-lifecycle/plan.md",
|
|
75
|
+
"digest": "sha256:cbb46666fc2ccae79e0e83fb03b220c920b8bab34e9f05b5ab85960867123a77"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"path": "specs/006-document-lifecycle/tasks.md",
|
|
79
|
+
"digest": "sha256:9bd8203ad8e666f7f71d6302c61ff1cfd1c1e75379da89b84cc790a69aff6a2b"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"taskCompletion": {
|
|
83
|
+
"checked": 14,
|
|
84
|
+
"total": 23
|
|
85
|
+
},
|
|
86
|
+
"implementationEvidence": [],
|
|
87
|
+
"testEvidence": [
|
|
88
|
+
{
|
|
89
|
+
"requirementId": "FR-001",
|
|
90
|
+
"file": "tests/archive.test.mjs",
|
|
91
|
+
"line": 10
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"requirementId": "FR-001",
|
|
95
|
+
"file": "tests/document-lifecycle.test.mjs",
|
|
96
|
+
"line": 9
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"requirementId": "FR-002",
|
|
100
|
+
"file": "tests/archive.test.mjs",
|
|
101
|
+
"line": 11
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"requirementId": "FR-002",
|
|
105
|
+
"file": "tests/document-lifecycle.test.mjs",
|
|
106
|
+
"line": 10
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"requirementId": "FR-003",
|
|
110
|
+
"file": "tests/archive.test.mjs",
|
|
111
|
+
"line": 12
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"requirementId": "FR-004",
|
|
115
|
+
"file": "tests/archive.test.mjs",
|
|
116
|
+
"line": 13
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"requirementId": "FR-005",
|
|
120
|
+
"file": "tests/archive.test.mjs",
|
|
121
|
+
"line": 14
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"requirementId": "FR-006",
|
|
125
|
+
"file": "tests/archive.test.mjs",
|
|
126
|
+
"line": 15
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"requirementId": "FR-007",
|
|
130
|
+
"file": "tests/archive.test.mjs",
|
|
131
|
+
"line": 16
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"requirementId": "FR-008",
|
|
135
|
+
"file": "tests/archive.test.mjs",
|
|
136
|
+
"line": 17
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"requirementId": "FR-008",
|
|
140
|
+
"file": "tests/document-lifecycle.test.mjs",
|
|
141
|
+
"line": 11
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"requirementId": "FR-009",
|
|
145
|
+
"file": "tests/archive.test.mjs",
|
|
146
|
+
"line": 18
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"requirementId": "FR-012",
|
|
150
|
+
"file": "tests/spec-registry.test.mjs",
|
|
151
|
+
"line": 11
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"requirementId": "FR-013",
|
|
155
|
+
"file": "tests/spec-registry.test.mjs",
|
|
156
|
+
"line": 10
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"requirementId": "FR-014",
|
|
160
|
+
"file": "tests/spec-registry.test.mjs",
|
|
161
|
+
"line": 12
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"requirementId": "FR-015",
|
|
165
|
+
"file": "tests/spec-registry.test.mjs",
|
|
166
|
+
"line": 13
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"requirementId": "FR-020",
|
|
170
|
+
"file": "tests/archive.test.mjs",
|
|
171
|
+
"line": 22
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"requirementId": "SC-001",
|
|
175
|
+
"file": "tests/archive.test.mjs",
|
|
176
|
+
"line": 19
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"requirementId": "SC-002",
|
|
180
|
+
"file": "tests/archive.test.mjs",
|
|
181
|
+
"line": 20
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"requirementId": "SC-003",
|
|
185
|
+
"file": "tests/archive.test.mjs",
|
|
186
|
+
"line": 21
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"requirementId": "SC-004",
|
|
190
|
+
"file": "tests/document-lifecycle.test.mjs",
|
|
191
|
+
"line": 12
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"requirementId": "SC-007",
|
|
195
|
+
"file": "tests/spec-registry.test.mjs",
|
|
196
|
+
"line": 14
|
|
197
|
+
}
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"tombstones": [
|
|
203
|
+
{
|
|
204
|
+
"specId": null,
|
|
205
|
+
"path": "specs/001-fix-ignore-validators/spec.md",
|
|
206
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
207
|
+
"blob": "1bd554afadfb95c014a4510946ce70b8c80a8a55",
|
|
208
|
+
"retentionRef": "refs/remotes/origin/main",
|
|
209
|
+
"objectFormat": "sha1",
|
|
210
|
+
"recoverability": "verified",
|
|
211
|
+
"requirements": [
|
|
212
|
+
"specs/001-fix-ignore-validators/spec.md#FR-001",
|
|
213
|
+
"specs/001-fix-ignore-validators/spec.md#FR-002",
|
|
214
|
+
"specs/001-fix-ignore-validators/spec.md#FR-003",
|
|
215
|
+
"specs/001-fix-ignore-validators/spec.md#FR-004",
|
|
216
|
+
"specs/001-fix-ignore-validators/spec.md#FR-005",
|
|
217
|
+
"specs/001-fix-ignore-validators/spec.md#FR-006",
|
|
218
|
+
"specs/001-fix-ignore-validators/spec.md#FR-007",
|
|
219
|
+
"specs/001-fix-ignore-validators/spec.md#FR-008",
|
|
220
|
+
"specs/001-fix-ignore-validators/spec.md#FR-009",
|
|
221
|
+
"specs/001-fix-ignore-validators/spec.md#FR-010",
|
|
222
|
+
"specs/001-fix-ignore-validators/spec.md#FR-011",
|
|
223
|
+
"specs/001-fix-ignore-validators/spec.md#FR-012",
|
|
224
|
+
"specs/001-fix-ignore-validators/spec.md#FR-013",
|
|
225
|
+
"specs/001-fix-ignore-validators/spec.md#FR-014",
|
|
226
|
+
"specs/001-fix-ignore-validators/spec.md#SC-001",
|
|
227
|
+
"specs/001-fix-ignore-validators/spec.md#SC-002",
|
|
228
|
+
"specs/001-fix-ignore-validators/spec.md#SC-003",
|
|
229
|
+
"specs/001-fix-ignore-validators/spec.md#SC-004",
|
|
230
|
+
"specs/001-fix-ignore-validators/spec.md#SC-005",
|
|
231
|
+
"specs/001-fix-ignore-validators/spec.md#SC-006"
|
|
232
|
+
]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"specId": null,
|
|
236
|
+
"path": "specs/001-fix-ignore-validators/tasks.md",
|
|
237
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
238
|
+
"blob": "db1030e5d20e67ab905e9a25bad92d24cfd9fe8e",
|
|
239
|
+
"retentionRef": "refs/remotes/origin/main",
|
|
240
|
+
"objectFormat": "sha1",
|
|
241
|
+
"recoverability": "verified",
|
|
242
|
+
"requirements": [
|
|
243
|
+
"specs/001-fix-ignore-validators/tasks.md#T001",
|
|
244
|
+
"specs/001-fix-ignore-validators/tasks.md#T002",
|
|
245
|
+
"specs/001-fix-ignore-validators/tasks.md#T003",
|
|
246
|
+
"specs/001-fix-ignore-validators/tasks.md#T004",
|
|
247
|
+
"specs/001-fix-ignore-validators/tasks.md#T005",
|
|
248
|
+
"specs/001-fix-ignore-validators/tasks.md#T006",
|
|
249
|
+
"specs/001-fix-ignore-validators/tasks.md#T007",
|
|
250
|
+
"specs/001-fix-ignore-validators/tasks.md#T008",
|
|
251
|
+
"specs/001-fix-ignore-validators/tasks.md#T009",
|
|
252
|
+
"specs/001-fix-ignore-validators/tasks.md#T010",
|
|
253
|
+
"specs/001-fix-ignore-validators/tasks.md#T011",
|
|
254
|
+
"specs/001-fix-ignore-validators/tasks.md#T012",
|
|
255
|
+
"specs/001-fix-ignore-validators/tasks.md#T013",
|
|
256
|
+
"specs/001-fix-ignore-validators/tasks.md#T014",
|
|
257
|
+
"specs/001-fix-ignore-validators/tasks.md#T015",
|
|
258
|
+
"specs/001-fix-ignore-validators/tasks.md#T016",
|
|
259
|
+
"specs/001-fix-ignore-validators/tasks.md#T017",
|
|
260
|
+
"specs/001-fix-ignore-validators/tasks.md#T018",
|
|
261
|
+
"specs/001-fix-ignore-validators/tasks.md#T019"
|
|
262
|
+
]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"specId": null,
|
|
266
|
+
"path": "specs/002-fix-test-discovery/spec.md",
|
|
267
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
268
|
+
"blob": "93f087a13b3fca5a03f237cfb7909f71f15da9b2",
|
|
269
|
+
"retentionRef": "refs/remotes/origin/main",
|
|
270
|
+
"objectFormat": "sha1",
|
|
271
|
+
"recoverability": "verified",
|
|
272
|
+
"requirements": [
|
|
273
|
+
"specs/002-fix-test-discovery/spec.md#FR-001",
|
|
274
|
+
"specs/002-fix-test-discovery/spec.md#FR-002",
|
|
275
|
+
"specs/002-fix-test-discovery/spec.md#FR-003",
|
|
276
|
+
"specs/002-fix-test-discovery/spec.md#FR-004",
|
|
277
|
+
"specs/002-fix-test-discovery/spec.md#FR-005",
|
|
278
|
+
"specs/002-fix-test-discovery/spec.md#FR-006",
|
|
279
|
+
"specs/002-fix-test-discovery/spec.md#FR-007",
|
|
280
|
+
"specs/002-fix-test-discovery/spec.md#FR-008",
|
|
281
|
+
"specs/002-fix-test-discovery/spec.md#SC-001",
|
|
282
|
+
"specs/002-fix-test-discovery/spec.md#SC-002",
|
|
283
|
+
"specs/002-fix-test-discovery/spec.md#SC-003",
|
|
284
|
+
"specs/002-fix-test-discovery/spec.md#SC-004",
|
|
285
|
+
"specs/002-fix-test-discovery/spec.md#SC-005"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"specId": null,
|
|
290
|
+
"path": "specs/002-fix-test-discovery/tasks.md",
|
|
291
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
292
|
+
"blob": "dbf69eac7f5c5113c5a1034fb01ebcf5275f9857",
|
|
293
|
+
"retentionRef": "refs/remotes/origin/main",
|
|
294
|
+
"objectFormat": "sha1",
|
|
295
|
+
"recoverability": "verified",
|
|
296
|
+
"requirements": [
|
|
297
|
+
"specs/002-fix-test-discovery/tasks.md#T001",
|
|
298
|
+
"specs/002-fix-test-discovery/tasks.md#T002",
|
|
299
|
+
"specs/002-fix-test-discovery/tasks.md#T003",
|
|
300
|
+
"specs/002-fix-test-discovery/tasks.md#T004",
|
|
301
|
+
"specs/002-fix-test-discovery/tasks.md#T005",
|
|
302
|
+
"specs/002-fix-test-discovery/tasks.md#T006",
|
|
303
|
+
"specs/002-fix-test-discovery/tasks.md#T007",
|
|
304
|
+
"specs/002-fix-test-discovery/tasks.md#T008",
|
|
305
|
+
"specs/002-fix-test-discovery/tasks.md#T009",
|
|
306
|
+
"specs/002-fix-test-discovery/tasks.md#T010",
|
|
307
|
+
"specs/002-fix-test-discovery/tasks.md#T011",
|
|
308
|
+
"specs/002-fix-test-discovery/tasks.md#T012",
|
|
309
|
+
"specs/002-fix-test-discovery/tasks.md#T013",
|
|
310
|
+
"specs/002-fix-test-discovery/tasks.md#T014"
|
|
311
|
+
]
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"specId": null,
|
|
315
|
+
"path": "specs/003-v011-false-positives/spec.md",
|
|
316
|
+
"archivedFrom": "b921dcbd0cc3476594100a414e3f8e9d4daa39c8",
|
|
317
|
+
"blob": "99c99ab6ad8e83398eafaee4a8605eb1481d2bef",
|
|
318
|
+
"retentionRef": "refs/remotes/origin/main",
|
|
319
|
+
"objectFormat": "sha1",
|
|
320
|
+
"recoverability": "verified",
|
|
321
|
+
"requirements": [
|
|
322
|
+
"specs/003-v011-false-positives/spec.md#FR-001",
|
|
323
|
+
"specs/003-v011-false-positives/spec.md#FR-002",
|
|
324
|
+
"specs/003-v011-false-positives/spec.md#FR-003",
|
|
325
|
+
"specs/003-v011-false-positives/spec.md#FR-004",
|
|
326
|
+
"specs/003-v011-false-positives/spec.md#FR-005",
|
|
327
|
+
"specs/003-v011-false-positives/spec.md#FR-006",
|
|
328
|
+
"specs/003-v011-false-positives/spec.md#FR-007",
|
|
329
|
+
"specs/003-v011-false-positives/spec.md#FR-008",
|
|
330
|
+
"specs/003-v011-false-positives/spec.md#FR-009",
|
|
331
|
+
"specs/003-v011-false-positives/spec.md#FR-010",
|
|
332
|
+
"specs/003-v011-false-positives/spec.md#FR-011",
|
|
333
|
+
"specs/003-v011-false-positives/spec.md#FR-012",
|
|
334
|
+
"specs/003-v011-false-positives/spec.md#FR-013",
|
|
335
|
+
"specs/003-v011-false-positives/spec.md#FR-014",
|
|
336
|
+
"specs/003-v011-false-positives/spec.md#FR-015",
|
|
337
|
+
"specs/003-v011-false-positives/spec.md#FR-016",
|
|
338
|
+
"specs/003-v011-false-positives/spec.md#SC-001",
|
|
339
|
+
"specs/003-v011-false-positives/spec.md#SC-002",
|
|
340
|
+
"specs/003-v011-false-positives/spec.md#SC-003",
|
|
341
|
+
"specs/003-v011-false-positives/spec.md#SC-004",
|
|
342
|
+
"specs/003-v011-false-positives/spec.md#SC-005",
|
|
343
|
+
"specs/003-v011-false-positives/spec.md#SC-006",
|
|
344
|
+
"specs/003-v011-false-positives/spec.md#SC-007",
|
|
345
|
+
"specs/003-v011-false-positives/spec.md#SC-008",
|
|
346
|
+
"specs/003-v011-false-positives/spec.md#SC-009",
|
|
347
|
+
"specs/003-v011-false-positives/spec.md#SC-010"
|
|
348
|
+
]
|
|
349
|
+
}
|
|
350
|
+
]
|
|
351
|
+
}
|