docguard-cli 0.24.0__tar.gz → 0.25.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.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard → docguard_cli-0.25.0/.agent}/skills/docguard-fix/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard → docguard_cli-0.25.0/.agent}/skills/docguard-guard/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.agent/skills/docguard-review/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.agent/skills/docguard-score/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.agent/skills/docguard-sync/SKILL.md +2 -1
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.github/workflows/release.yml +17 -10
- docguard_cli-0.25.0/.wolf/buglog.json +465 -0
- docguard_cli-0.25.0/.wolf/cerebrum.md +26 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/cron-state.json +1 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/CHANGELOG.md +47 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/PKG-INFO +1 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/ROADMAP.md +2 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/generate.mjs +67 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/init.mjs +6 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/sync.mjs +6 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/docguard.mjs +141 -6
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/cli/scanners/project-type.mjs +11 -4
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/shared-ignore.mjs +7 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/shared.mjs +32 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/cli/validators/generated-staleness.mjs +16 -1
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/extensions/spec-kit-docguard/extension.yml +1 -1
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent → docguard_cli-0.25.0/extensions/spec-kit-docguard}/skills/docguard-fix/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent → docguard_cli-0.25.0/extensions/spec-kit-docguard}/skills/docguard-guard/SKILL.md +2 -2
- {docguard_cli-0.24.0/.agent → docguard_cli-0.25.0/extensions/spec-kit-docguard}/skills/docguard-review/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/skills/docguard-score/SKILL.md +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/skills/docguard-sync/SKILL.md +2 -1
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +2 -2
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/package-lock.json +2 -2
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/package.json +1 -1
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/pyproject.toml +1 -1
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/tests/commands.test.mjs +137 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/docguardignore.test.mjs +42 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/tests/generated-staleness.test.mjs +30 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/project-type.test.mjs +21 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/tests/sync.test.mjs +16 -0
- docguard_cli-0.24.0/.agent/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/.agent/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/.agent/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/.agent/skills/docguard-sync/SKILL.md +0 -112
- docguard_cli-0.24.0/.claude/settings.local.json +0 -24
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.analyze.md +0 -184
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.checklist.md +0 -295
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.clarify.md +0 -181
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.constitution.md +0 -84
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.implement.md +0 -198
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.plan.md +0 -90
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.specify.md +0 -237
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.tasks.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/commands/speckit.taskstoissues.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-analyze/SKILL.md +0 -193
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-checklist/SKILL.md +0 -304
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-clarify/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-constitution/SKILL.md +0 -89
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-implement/SKILL.md +0 -207
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-plan/SKILL.md +0 -91
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-specify/SKILL.md +0 -239
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-tasks/SKILL.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.agent/skills/speckit-taskstoissues/SKILL.md +0 -37
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.claude/rules/openwolf.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.claude/settings.json +0 -72
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.claude/settings.local.json +0 -24
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.docguard.json +0 -44
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.docguardignore +0 -33
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.git +0 -1
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.github/dependabot.yml +0 -20
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.github/scripts/patch-catalog.py +0 -104
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.github/workflows/ci.yml +0 -90
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.github/workflows/sync-speckit-catalog.yml +0 -182
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.gitignore +0 -36
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.jules/bolt.md +0 -7
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.jules/palette.md +0 -7
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.npmignore +0 -28
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.specify/memory/constitution.md +0 -76
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/anatomy.md +0 -553
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/buglog.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/cerebrum.md +0 -23
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/cron-state.json +0 -7
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/daemon.log +0 -136
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/memory.md +0 -4
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/.wolf/token-ledger.json +0 -21
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/AGENTS.md +0 -119
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/CHANGELOG.md +0 -1292
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/CONTRIBUTING.md +0 -139
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/README.md +0 -676
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/ROADMAP.md +0 -124
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/SECURITY.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/action.yml +0 -331
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/demo.mjs +0 -241
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/diff.mjs +0 -389
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/explain.mjs +0 -286
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/fix.mjs +0 -820
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/generate.mjs +0 -1474
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/guard.mjs +0 -574
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/hooks.mjs +0 -334
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/init.mjs +0 -499
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/memory.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/score.mjs +0 -897
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/setup.mjs +0 -485
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/trace.mjs +0 -490
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/commands/upgrade.mjs +0 -324
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/docguard.mjs +0 -688
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/ensure-skills.mjs +0 -363
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/api-doc.mjs +0 -122
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/doc-tools.mjs +0 -351
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/frontend.mjs +0 -438
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/memory-plan.mjs +0 -399
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/project-type.mjs +0 -310
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/routes.mjs +0 -623
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/schemas.mjs +0 -765
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/scanners/speckit.mjs +0 -465
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/shared-git.mjs +0 -0
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/shared-ignore.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/shared-source.mjs +0 -269
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/shared.mjs +0 -203
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/api-surface.mjs +0 -270
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/canonical-sync.mjs +0 -211
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/doc-quality.mjs +0 -676
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/docs-coverage.mjs +0 -504
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/docs-diff.mjs +0 -295
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/docs-sync.mjs +0 -260
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/drift.mjs +0 -120
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/environment.mjs +0 -130
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/freshness.mjs +0 -256
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/generated-staleness.mjs +0 -219
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/metadata-sync.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/metrics-consistency.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/security.mjs +0 -162
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/structure.mjs +0 -127
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/test-spec.mjs +0 -322
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/todo-tracking.mjs +0 -403
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/validators/traceability.mjs +0 -376
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/cli/writers/sections.mjs +0 -148
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docguard_cli/wrapper.py +0 -101
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs/commands.md +0 -239
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs/configuration.md +0 -96
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs/faq.md +0 -155
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs/quickstart.md +0 -94
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/ARCHITECTURE.md +0 -184
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/CI-RECIPES.md +0 -216
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/DATA-MODEL.md +0 -150
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/ENVIRONMENT.md +0 -70
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/REQUIREMENTS.md +0 -68
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/SECURITY.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/SURFACE-AUDIT.md +0 -334
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/docs-canonical/TEST-SPEC.md +0 -98
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/README.md +0 -106
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/commands/guard.md +0 -74
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/extension.yml +0 -106
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +0 -51
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +0 -48
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/package.json +0 -61
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/pyproject.toml +0 -41
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/schemas/docguard-config.schema.json +0 -155
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/specs/002-fix-test-discovery/plan.md +0 -113
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/api-doc.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/canonical-sync.test.mjs +0 -148
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/changed-only.test.mjs +0 -77
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/commands.test.mjs +0 -805
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/doc-quality.test.mjs +0 -93
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/docs-coverage.test.mjs +0 -258
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/docs-diff.test.mjs +0 -62
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/environment.test.mjs +0 -146
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/freshness.test.mjs +0 -162
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/generated-staleness.test.mjs +0 -144
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/metadata-sync.test.mjs +0 -138
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/metrics-consistency.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/npm-pack-smoke.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/plan-disk-cache.test.mjs +0 -119
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/schemas.test.mjs +0 -126
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/sections.test.mjs +0 -116
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/security-init-injection.test.mjs +0 -145
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/security.test.mjs +0 -146
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/severity.test.mjs +0 -179
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/shared-git.test.mjs +0 -190
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/shared-source.test.mjs +0 -86
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/sync.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/test-spec.test.mjs +0 -245
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/traceability.test.mjs +0 -147
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/tests/upgrade.test.mjs +0 -131
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/vscode-extension/.vscodeignore +0 -4
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/vscode-extension/README.md +0 -49
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/vscode-extension/extension.js +0 -504
- docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc/vscode-extension/package.json +0 -93
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.analyze.md +0 -184
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.checklist.md +0 -295
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.clarify.md +0 -181
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.constitution.md +0 -84
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.implement.md +0 -198
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.plan.md +0 -90
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.specify.md +0 -237
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.tasks.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/commands/speckit.taskstoissues.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/docguard-sync/SKILL.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-analyze/SKILL.md +0 -193
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-checklist/SKILL.md +0 -304
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-clarify/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-constitution/SKILL.md +0 -89
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-implement/SKILL.md +0 -207
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-plan/SKILL.md +0 -91
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-specify/SKILL.md +0 -239
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-tasks/SKILL.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.agent/skills/speckit-taskstoissues/SKILL.md +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.claude/settings.local.json +0 -24
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.git +0 -1
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.github/ISSUE_TEMPLATE/feature_request.md +0 -27
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.github/workflows/ci.yml +0 -90
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.github/workflows/release.yml +0 -327
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.github/workflows/supply-chain.yml +0 -24
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.jules/sentinel.md +0 -4
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.npmrc +0 -7
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -595
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/extensions/.cache/catalog-metadata.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/extensions/.cache/catalog.json +0 -21
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/init-options.json +0 -9
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/scripts/bash/check-prerequisites.sh +0 -190
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/scripts/bash/common.sh +0 -253
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/scripts/bash/create-new-feature.sh +0 -333
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/scripts/bash/setup-plan.sh +0 -73
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/scripts/bash/update-agent-context.sh +0 -808
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/agent-file-template.md +0 -28
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/checklist-template.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/constitution-template.md +0 -50
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/plan-template.md +0 -104
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/spec-template.md +0 -115
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/.specify/templates/tasks-template.md +0 -251
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/AGENTS.md +0 -119
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/CHANGELOG.md +0 -1544
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/CODE_OF_CONDUCT.md +0 -52
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/COMPARISONS.md +0 -242
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/DRIFT-LOG.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/LICENSE +0 -21
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/PHILOSOPHY.md +0 -125
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/ROADMAP.md +0 -135
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/STANDARD.md +0 -751
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/SUPPLY-CHAIN-AUDIT.md +0 -84
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/SUPPORT.md +0 -51
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/assets/bin/docguard +0 -2
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/assets/demo.gif +0 -0
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/assets/demo.tape +0 -27
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/agents.mjs +0 -221
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/badge.mjs +0 -72
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/ci.mjs +0 -80
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/diagnose.mjs +0 -624
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/diff.mjs +0 -400
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/explain.mjs +0 -308
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/fix.mjs +0 -820
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/generate.mjs +0 -1474
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/guard.mjs +0 -617
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/impact.mjs +0 -169
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/init.mjs +0 -499
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/llms.mjs +0 -159
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/publish.mjs +0 -246
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/score.mjs +0 -897
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/setup.mjs +0 -485
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/sync.mjs +0 -173
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/trace.mjs +0 -392
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/upgrade.mjs +0 -336
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/commands/watch.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/config.mjs +0 -228
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/docguard.mjs +0 -473
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/ensure-skills.mjs +0 -363
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/api-doc.mjs +0 -122
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/cdk.mjs +0 -10
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/doc-tools.mjs +0 -351
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/frontend.mjs +0 -438
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/iac.mjs +0 -235
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/integrations.mjs +0 -116
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/js-ast.mjs +0 -182
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/memory-plan.mjs +0 -399
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/project-type.mjs +0 -310
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/routes.mjs +0 -629
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/scanners/schemas.mjs +0 -772
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/shared-ignore.mjs +0 -211
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/shared-source.mjs +0 -278
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/shared-trace-patterns.mjs +0 -105
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/shared.mjs +0 -203
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/api-surface.mjs +0 -269
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/architecture.mjs +0 -396
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/canonical-sync.mjs +0 -211
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/changelog.mjs +0 -80
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/cross-reference.mjs +0 -421
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/docs-coverage.mjs +0 -504
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/freshness.mjs +0 -286
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/generated-staleness.mjs +0 -219
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/metadata-sync.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/metrics-consistency.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/schema-sync.mjs +0 -228
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/spec-kit.mjs +0 -14
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/structure.mjs +0 -127
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/surface-sync.mjs +0 -365
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/test-spec.mjs +0 -322
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/todo-tracking.mjs +0 -403
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/validators/traceability.mjs +0 -391
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/writers/api-reference.mjs +0 -101
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/writers/fix-memory.mjs +0 -181
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/cli/writers/mechanical.mjs +0 -251
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/commands/docguard.fix.md +0 -81
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/commands/docguard.guard.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/commands/docguard.review.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/commands/docguard.score.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/configs/fastify.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/configs/generic.json +0 -22
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/configs/nextjs.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/configs/python.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docguard_cli/__init__.py +0 -1
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docguard_cli/wrapper.py +0 -101
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs/ai-integration.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs/configuration.md +0 -96
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs/doc-sections.md +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs/installation.md +0 -99
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs/profiles.md +0 -103
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-canonical/ARCHITECTURE.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-canonical/DATA-MODEL.md +0 -150
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-canonical/ENVIRONMENT.md +0 -71
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-canonical/SECURITY.md +0 -113
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-canonical/TEST-SPEC.md +0 -100
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/docs-implementation/MIGRATION-v0.20.md +0 -194
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/01-express-api/README.md +0 -3
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/01-express-api/package.json +0 -12
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/01-express-api/server.js +0 -37
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/02-python-flask/README.md +0 -24
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/02-python-flask/app.py +0 -50
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -26
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/02-python-flask/requirements.txt +0 -1
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/CHANGELOG.md +0 -9
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/README.md +0 -35
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -28
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/package.json +0 -10
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/src/index.js +0 -50
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/03-spec-kit-project/tests/basic.test.js +0 -23
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/examples/README.md +0 -44
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/LICENSE +0 -21
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/diagnose.md +0 -43
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/fix.md +0 -74
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/generate.md +0 -73
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/init.md +0 -38
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/score.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/sync.md +0 -62
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/commands/trace.md +0 -56
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -106
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -153
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -153
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -107
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/skills/docguard-sync/SKILL.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/templates/extensions.yml +0 -39
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +0 -51
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/package-lock.json +0 -68
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/pr_description.md +0 -16
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/pyproject.toml +0 -41
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/001-fix-ignore-validators/plan.md +0 -115
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/001-fix-ignore-validators/spec.md +0 -104
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/001-fix-ignore-validators/tasks.md +0 -49
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/002-fix-test-discovery/spec.md +0 -87
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/002-fix-test-discovery/tasks.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/003-v011-false-positives/plan.md +0 -140
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/003-v011-false-positives/spec.md +0 -191
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/specs/003-v011-false-positives/tasks.md +0 -156
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/ADR.md.template +0 -64
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/AGENTS.md.template +0 -88
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/ARCHITECTURE.md.template +0 -130
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/CHANGELOG.md.template +0 -16
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/CURRENT-STATE.md.template +0 -64
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/DATA-MODEL.md.template +0 -66
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/DEPLOYMENT.md.template +0 -66
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/DRIFT-LOG.md.template +0 -18
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/ENVIRONMENT.md.template +0 -43
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/KNOWN-GOTCHAS.md.template +0 -69
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/REQUIREMENTS.md.template +0 -68
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/ROADMAP.md.template +0 -82
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/RUNBOOKS.md.template +0 -115
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/SECURITY.md.template +0 -42
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/TEST-SPEC.md.template +0 -68
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/TROUBLESHOOTING.md.template +0 -96
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/VENDOR-BUGS.md.template +0 -74
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/ci/github-actions.yml +0 -39
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/commands/docguard.fix.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/commands/docguard.guard.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/commands/docguard.init.md +0 -69
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/commands/docguard.review.md +0 -54
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/commands/docguard.update.md +0 -55
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/.docguard.json +0 -8
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/.env.example +0 -5
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/AGENTS.md +0 -14
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/CHANGELOG.md +0 -13
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/DRIFT-LOG.md +0 -3
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/README.md +0 -17
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -36
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -20
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/SECURITY.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -10
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/package.json +0 -10
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/src/api.mjs +0 -18
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/src/notifier.mjs +0 -23
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/src/scheduler.mjs +0 -8
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/templates/demo-fixture/src/worker.mjs +0 -15
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/test-draft.js +0 -20
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/test-metrics.js +0 -2
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/anchor-autofix.test.mjs +0 -144
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/api-doc.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/api-surface.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/api-write.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/architecture.test.mjs +0 -113
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/b7-node-env-symmetry.test.mjs +0 -97
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/backup-failure.test.mjs +0 -60
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/canonical-sync.test.mjs +0 -148
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/cdk-detection.test.mjs +0 -292
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/changed-only-scoping.test.mjs +0 -118
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/changelog.test.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/commands.test.mjs +0 -805
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/cross-reference.test.mjs +0 -282
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/demo-command.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/docguardignore.test.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/docs-coverage.test.mjs +0 -258
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/docs-sync.test.mjs +0 -295
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/drift.test.mjs +0 -84
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/fix-memory.test.mjs +0 -141
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/fix-suppression.test.mjs +0 -129
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/fixture-projects.test.mjs +0 -201
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/freshness.test.mjs +0 -238
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/frontend-deep.test.mjs +0 -102
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/frontend.test.mjs +0 -90
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/generated-staleness.test.mjs +0 -144
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/guard-classify.test.mjs +0 -41
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/guard-no-throw.test.mjs +0 -119
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/hooks.test.mjs +0 -154
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/i18n.test.mjs +0 -70
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/impact.test.mjs +0 -125
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/init-smart-detection.test.mjs +0 -124
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/integrations.test.mjs +0 -101
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/js-ast.test.mjs +0 -0
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/mechanical.test.mjs +0 -59
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/memory-plan.test.mjs +0 -97
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/metadata-sync.test.mjs +0 -138
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/metrics-consistency.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/metrics-dedup.test.mjs +0 -112
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/monorepo-scanning.test.mjs +0 -64
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/multi-spec.test.mjs +0 -79
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/patch-0.11.2.test.mjs +0 -107
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/profile-flag.test.mjs +0 -68
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/project-type.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/regenerate-section.test.mjs +0 -134
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/routes-multilang.test.mjs +0 -110
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/routes-nextjs-app-router.test.mjs +0 -72
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/schema-sync.test.mjs +0 -112
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/schemas-multilang.test.mjs +0 -174
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/schemas.test.mjs +0 -126
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/scoping-extended.test.mjs +0 -90
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/section-na-markers.test.mjs +0 -91
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/shared-source.test.mjs +0 -86
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/stress-test.test.mjs +0 -111
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/structure.test.mjs +0 -132
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/sweep-nudge.test.mjs +0 -110
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/sync-since.test.mjs +0 -99
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/sync.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/test-spec.test.mjs +0 -245
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/todo-tracking.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/trace-multilang.test.mjs +0 -139
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/trace-reverse.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/traceability.test.mjs +0 -208
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/upgrade-pr-e2e.test.mjs +0 -175
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/upgrade-pr.test.mjs +0 -79
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/upgrade.test.mjs +0 -131
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/v020-consolidation.test.mjs +0 -200
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/validator-naming.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/version-pin.test.mjs +0 -91
- docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179/tests/whats-new.test.mjs +0 -65
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.analyze.md +0 -184
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.checklist.md +0 -295
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.clarify.md +0 -181
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.constitution.md +0 -84
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.implement.md +0 -198
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.plan.md +0 -90
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.specify.md +0 -237
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.tasks.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/commands/speckit.taskstoissues.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/docguard-sync/SKILL.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-analyze/SKILL.md +0 -193
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-checklist/SKILL.md +0 -304
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-clarify/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-constitution/SKILL.md +0 -89
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-implement/SKILL.md +0 -207
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-plan/SKILL.md +0 -91
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-specify/SKILL.md +0 -239
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-tasks/SKILL.md +0 -200
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.agent/skills/speckit-taskstoissues/SKILL.md +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.claude/rules/openwolf.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.claude/settings.json +0 -72
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.claude/settings.local.json +0 -24
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.docguard.json +0 -44
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.docguardignore +0 -33
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.git +0 -1
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/ISSUE_TEMPLATE/feature_request.md +0 -27
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/dependabot.yml +0 -20
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/scripts/patch-catalog.py +0 -104
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/workflows/ci.yml +0 -90
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/workflows/release.yml +0 -327
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/workflows/supply-chain.yml +0 -24
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.github/workflows/sync-speckit-catalog.yml +0 -182
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.gitignore +0 -36
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.jules/bolt.md +0 -7
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.jules/palette.md +0 -7
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.jules/sentinel.md +0 -4
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.npmignore +0 -28
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.npmrc +0 -7
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -595
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/extensions/.cache/catalog-metadata.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/extensions/.cache/catalog.json +0 -21
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/init-options.json +0 -9
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/memory/constitution.md +0 -76
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/scripts/bash/check-prerequisites.sh +0 -190
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/scripts/bash/common.sh +0 -253
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/scripts/bash/create-new-feature.sh +0 -333
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/scripts/bash/setup-plan.sh +0 -73
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/scripts/bash/update-agent-context.sh +0 -808
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/agent-file-template.md +0 -28
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/checklist-template.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/constitution-template.md +0 -50
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/plan-template.md +0 -104
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/spec-template.md +0 -115
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.specify/templates/tasks-template.md +0 -251
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/OPENWOLF.md +0 -135
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/buglog.json +0 -357
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/cerebrum.md +0 -12
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/config.json +0 -73
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/cron-manifest.json +0 -97
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/designqc-report.json +0 -6
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/package.json +0 -3
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/post-read.js +0 -69
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/post-write.js +0 -503
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/pre-read.js +0 -80
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/pre-write.js +0 -121
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/session-start.js +0 -77
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/shared.js +0 -614
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/hooks/stop.js +0 -147
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/identity.md +0 -9
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/reframe-frameworks.md +0 -597
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/.wolf/suggestions.json +0 -4
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/AGENTS.md +0 -119
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/CHANGELOG.md +0 -1292
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/CLAUDE.md +0 -5
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/CODE_OF_CONDUCT.md +0 -52
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/COMPARISONS.md +0 -242
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/CONTRIBUTING.md +0 -139
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/DRIFT-LOG.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/LICENSE +0 -21
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/PHILOSOPHY.md +0 -125
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/README.md +0 -676
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/ROADMAP.md +0 -124
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/SECURITY.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/STANDARD.md +0 -751
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/SUPPLY-CHAIN-AUDIT.md +0 -84
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/SUPPORT.md +0 -51
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/action.yml +0 -331
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/assets/bin/docguard +0 -2
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/assets/demo.gif +0 -0
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/assets/demo.tape +0 -27
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/agents.mjs +0 -221
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/badge.mjs +0 -72
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/ci.mjs +0 -80
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/demo.mjs +0 -241
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/diagnose.mjs +0 -624
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/diff.mjs +0 -389
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/explain.mjs +0 -286
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/fix.mjs +0 -820
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/generate.mjs +0 -1474
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/guard.mjs +0 -574
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/hooks.mjs +0 -334
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/impact.mjs +0 -169
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/init.mjs +0 -499
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/llms.mjs +0 -159
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/memory.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/publish.mjs +0 -246
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/score.mjs +0 -897
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/setup.mjs +0 -485
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/sync.mjs +0 -173
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/trace.mjs +0 -490
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/upgrade.mjs +0 -324
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/commands/watch.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/docguard.mjs +0 -688
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/ensure-skills.mjs +0 -363
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/api-doc.mjs +0 -122
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/cdk.mjs +0 -10
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/doc-tools.mjs +0 -351
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/frontend.mjs +0 -438
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/iac.mjs +0 -235
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/integrations.mjs +0 -116
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/memory-plan.mjs +0 -399
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/routes.mjs +0 -623
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/schemas.mjs +0 -765
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/scanners/speckit.mjs +0 -465
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/shared-git.mjs +0 -0
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/shared-ignore.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/shared-source.mjs +0 -269
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/shared.mjs +0 -203
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/api-surface.mjs +0 -270
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/architecture.mjs +0 -396
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/canonical-sync.mjs +0 -211
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/changelog.mjs +0 -80
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/cross-reference.mjs +0 -421
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/doc-quality.mjs +0 -676
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/docs-coverage.mjs +0 -504
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/docs-diff.mjs +0 -295
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/docs-sync.mjs +0 -260
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/drift.mjs +0 -120
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/environment.mjs +0 -130
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/freshness.mjs +0 -256
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/metadata-sync.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/metrics-consistency.mjs +0 -196
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/schema-sync.mjs +0 -228
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/security.mjs +0 -162
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/spec-kit.mjs +0 -14
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/structure.mjs +0 -127
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/test-spec.mjs +0 -322
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/todo-tracking.mjs +0 -403
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/validators/traceability.mjs +0 -376
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/writers/api-reference.mjs +0 -101
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/writers/fix-memory.mjs +0 -181
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/writers/mechanical.mjs +0 -251
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/cli/writers/sections.mjs +0 -148
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/commands/docguard.fix.md +0 -81
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/commands/docguard.guard.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/commands/docguard.review.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/commands/docguard.score.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/configs/fastify.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/configs/generic.json +0 -22
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/configs/nextjs.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/configs/python.json +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docguard_cli/__init__.py +0 -1
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docguard_cli/wrapper.py +0 -101
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/ai-integration.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/commands.md +0 -239
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/configuration.md +0 -96
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/doc-sections.md +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/faq.md +0 -155
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/installation.md +0 -99
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/profiles.md +0 -103
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs/quickstart.md +0 -94
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/ARCHITECTURE.md +0 -184
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/CI-RECIPES.md +0 -216
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/DATA-MODEL.md +0 -150
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/ENVIRONMENT.md +0 -70
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/REQUIREMENTS.md +0 -68
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/SECURITY.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/SURFACE-AUDIT.md +0 -334
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-canonical/TEST-SPEC.md +0 -98
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/docs-implementation/MIGRATION-v0.20.md +0 -194
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/01-express-api/README.md +0 -3
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/01-express-api/package.json +0 -12
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/01-express-api/server.js +0 -37
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/02-python-flask/README.md +0 -24
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/02-python-flask/app.py +0 -50
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -26
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/02-python-flask/requirements.txt +0 -1
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/CHANGELOG.md +0 -9
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/README.md +0 -35
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -28
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/package.json +0 -10
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/src/index.js +0 -50
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/03-spec-kit-project/tests/basic.test.js +0 -23
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/examples/README.md +0 -44
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/LICENSE +0 -21
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/README.md +0 -106
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/diagnose.md +0 -43
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/fix.md +0 -74
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/generate.md +0 -73
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/guard.md +0 -74
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/init.md +0 -38
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/score.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/sync.md +0 -62
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/commands/trace.md +0 -56
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/extension.yml +0 -106
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -106
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -153
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -153
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -107
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/skills/docguard-sync/SKILL.md +0 -111
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/templates/extensions.yml +0 -39
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +0 -51
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +0 -48
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/package.json +0 -61
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/pr_description.md +0 -16
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/schemas/docguard-config.schema.json +0 -155
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/001-fix-ignore-validators/plan.md +0 -115
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/001-fix-ignore-validators/spec.md +0 -104
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/001-fix-ignore-validators/tasks.md +0 -49
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/002-fix-test-discovery/plan.md +0 -113
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/002-fix-test-discovery/spec.md +0 -87
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/002-fix-test-discovery/tasks.md +0 -40
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/003-v011-false-positives/plan.md +0 -140
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/003-v011-false-positives/spec.md +0 -191
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/specs/003-v011-false-positives/tasks.md +0 -156
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/ADR.md.template +0 -64
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/AGENTS.md.template +0 -88
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/ARCHITECTURE.md.template +0 -130
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/CHANGELOG.md.template +0 -16
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/CURRENT-STATE.md.template +0 -64
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/DATA-MODEL.md.template +0 -66
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/DEPLOYMENT.md.template +0 -66
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/DRIFT-LOG.md.template +0 -18
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/ENVIRONMENT.md.template +0 -43
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/KNOWN-GOTCHAS.md.template +0 -69
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/REQUIREMENTS.md.template +0 -68
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/ROADMAP.md.template +0 -82
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/RUNBOOKS.md.template +0 -115
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/SECURITY.md.template +0 -42
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/TEST-SPEC.md.template +0 -68
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/TROUBLESHOOTING.md.template +0 -96
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/VENDOR-BUGS.md.template +0 -74
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/ci/github-actions.yml +0 -39
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/commands/docguard.fix.md +0 -61
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/commands/docguard.guard.md +0 -53
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/commands/docguard.init.md +0 -69
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/commands/docguard.review.md +0 -54
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/commands/docguard.update.md +0 -55
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/.docguard.json +0 -8
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/.env.example +0 -5
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/AGENTS.md +0 -14
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/CHANGELOG.md +0 -13
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/DRIFT-LOG.md +0 -3
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/README.md +0 -17
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -36
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -30
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -20
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/SECURITY.md +0 -15
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -10
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/package.json +0 -10
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/src/api.mjs +0 -18
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/src/notifier.mjs +0 -23
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/src/scheduler.mjs +0 -8
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/templates/demo-fixture/src/worker.mjs +0 -15
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/test-draft.js +0 -20
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/test-metrics.js +0 -2
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/anchor-autofix.test.mjs +0 -144
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/api-doc.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/api-surface.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/api-write.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/architecture.test.mjs +0 -113
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/b7-node-env-symmetry.test.mjs +0 -97
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/backup-failure.test.mjs +0 -60
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/canonical-sync.test.mjs +0 -148
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/cdk-detection.test.mjs +0 -292
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/changed-only-scoping.test.mjs +0 -118
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/changed-only.test.mjs +0 -77
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/changelog.test.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/cross-reference.test.mjs +0 -282
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/demo-command.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/doc-quality.test.mjs +0 -93
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/docguardignore.test.mjs +0 -143
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/docs-coverage.test.mjs +0 -258
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/docs-diff.test.mjs +0 -62
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/docs-sync.test.mjs +0 -295
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/drift.test.mjs +0 -84
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/environment.test.mjs +0 -146
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/fix-memory.test.mjs +0 -141
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/fix-suppression.test.mjs +0 -129
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/fixture-projects.test.mjs +0 -201
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/freshness.test.mjs +0 -162
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/frontend-deep.test.mjs +0 -102
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/frontend.test.mjs +0 -90
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/guard-classify.test.mjs +0 -41
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/guard-no-throw.test.mjs +0 -119
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/hooks.test.mjs +0 -154
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/i18n.test.mjs +0 -70
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/impact.test.mjs +0 -125
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/init-smart-detection.test.mjs +0 -124
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/integrations.test.mjs +0 -101
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/mechanical.test.mjs +0 -59
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/memory-plan.test.mjs +0 -97
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/metadata-sync.test.mjs +0 -138
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/metrics-consistency.test.mjs +0 -103
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/metrics-dedup.test.mjs +0 -112
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/monorepo-scanning.test.mjs +0 -64
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/multi-spec.test.mjs +0 -79
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/npm-pack-smoke.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/patch-0.11.2.test.mjs +0 -107
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/plan-disk-cache.test.mjs +0 -119
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/profile-flag.test.mjs +0 -68
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/project-type.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/regenerate-section.test.mjs +0 -134
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/routes-multilang.test.mjs +0 -110
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/schema-sync.test.mjs +0 -112
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/schemas-multilang.test.mjs +0 -174
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/schemas.test.mjs +0 -126
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/scoping-extended.test.mjs +0 -90
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/section-na-markers.test.mjs +0 -91
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/sections.test.mjs +0 -116
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/security-init-injection.test.mjs +0 -145
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/security.test.mjs +0 -146
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/severity.test.mjs +0 -179
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/shared-git.test.mjs +0 -190
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/shared-source.test.mjs +0 -86
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/stress-test.test.mjs +0 -111
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/structure.test.mjs +0 -132
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/sweep-nudge.test.mjs +0 -110
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/sync-since.test.mjs +0 -99
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/test-spec.test.mjs +0 -245
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/todo-tracking.test.mjs +0 -128
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/trace-multilang.test.mjs +0 -139
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/trace-reverse.test.mjs +0 -96
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/traceability.test.mjs +0 -147
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/upgrade-pr-e2e.test.mjs +0 -175
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/upgrade-pr.test.mjs +0 -79
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/upgrade.test.mjs +0 -131
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/v020-consolidation.test.mjs +0 -200
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/validator-naming.test.mjs +0 -104
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/version-pin.test.mjs +0 -91
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/tests/whats-new.test.mjs +0 -65
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/vscode-extension/.vscodeignore +0 -4
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/vscode-extension/README.md +0 -49
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/vscode-extension/extension.js +0 -504
- docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d/vscode-extension/package.json +0 -93
- docguard_cli-0.24.0/.docguard.json +0 -79
- docguard_cli-0.24.0/.docguardignore +0 -30
- docguard_cli-0.24.0/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- docguard_cli-0.24.0/.github/ISSUE_TEMPLATE/feature_request.md +0 -27
- docguard_cli-0.24.0/.github/dependabot.yml +0 -23
- docguard_cli-0.24.0/.github/scripts/patch-catalog.py +0 -104
- docguard_cli-0.24.0/.github/workflows/release.yml +0 -327
- docguard_cli-0.24.0/.github/workflows/supply-chain.yml +0 -24
- docguard_cli-0.24.0/.github/workflows/sync-speckit-catalog.yml +0 -182
- docguard_cli-0.24.0/.gitignore +0 -41
- docguard_cli-0.24.0/.jules/bolt.md +0 -10
- docguard_cli-0.24.0/.jules/palette.md +0 -11
- docguard_cli-0.24.0/.jules/sentinel.md +0 -4
- docguard_cli-0.24.0/.npmignore +0 -27
- docguard_cli-0.24.0/.npmrc +0 -7
- docguard_cli-0.24.0/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -4
- docguard_cli-0.24.0/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -595
- docguard_cli-0.24.0/.specify/extensions/.cache/catalog-metadata.json +0 -4
- docguard_cli-0.24.0/.specify/extensions/.cache/catalog.json +0 -21
- docguard_cli-0.24.0/.specify/init-options.json +0 -9
- docguard_cli-0.24.0/.specify/memory/constitution.md +0 -78
- docguard_cli-0.24.0/.specify/scripts/bash/check-prerequisites.sh +0 -190
- docguard_cli-0.24.0/.specify/scripts/bash/common.sh +0 -253
- docguard_cli-0.24.0/.specify/scripts/bash/create-new-feature.sh +0 -333
- docguard_cli-0.24.0/.specify/scripts/bash/setup-plan.sh +0 -73
- docguard_cli-0.24.0/.specify/scripts/bash/update-agent-context.sh +0 -808
- docguard_cli-0.24.0/.specify/templates/agent-file-template.md +0 -28
- docguard_cli-0.24.0/.specify/templates/checklist-template.md +0 -40
- docguard_cli-0.24.0/.specify/templates/constitution-template.md +0 -50
- docguard_cli-0.24.0/.specify/templates/plan-template.md +0 -104
- docguard_cli-0.24.0/.specify/templates/spec-template.md +0 -115
- docguard_cli-0.24.0/.specify/templates/tasks-template.md +0 -251
- docguard_cli-0.24.0/CLAUDE.md +0 -5
- docguard_cli-0.24.0/CODE_OF_CONDUCT.md +0 -52
- docguard_cli-0.24.0/COMPARISONS.md +0 -242
- docguard_cli-0.24.0/CONTRIBUTING.md +0 -138
- docguard_cli-0.24.0/DRIFT-LOG.md +0 -15
- docguard_cli-0.24.0/LICENSE +0 -21
- docguard_cli-0.24.0/PHILOSOPHY.md +0 -125
- docguard_cli-0.24.0/README.md +0 -680
- docguard_cli-0.24.0/SECURITY.md +0 -40
- docguard_cli-0.24.0/STANDARD.md +0 -751
- docguard_cli-0.24.0/SUPPLY-CHAIN-AUDIT.md +0 -84
- docguard_cli-0.24.0/SUPPORT.md +0 -51
- docguard_cli-0.24.0/action.yml +0 -372
- docguard_cli-0.24.0/assets/bin/docguard +0 -2
- docguard_cli-0.24.0/assets/demo.gif +0 -0
- docguard_cli-0.24.0/assets/demo.tape +0 -27
- docguard_cli-0.24.0/assets/docguard-logo.png +0 -0
- docguard_cli-0.24.0/cli/commands/agents.mjs +0 -221
- docguard_cli-0.24.0/cli/commands/badge.mjs +0 -72
- docguard_cli-0.24.0/cli/commands/ci.mjs +0 -80
- docguard_cli-0.24.0/cli/commands/demo.mjs +0 -241
- docguard_cli-0.24.0/cli/commands/diagnose.mjs +0 -624
- docguard_cli-0.24.0/cli/commands/hooks.mjs +0 -339
- docguard_cli-0.24.0/cli/commands/impact.mjs +0 -169
- docguard_cli-0.24.0/cli/commands/llms.mjs +0 -159
- docguard_cli-0.24.0/cli/commands/memory.mjs +0 -153
- docguard_cli-0.24.0/cli/commands/publish.mjs +0 -246
- docguard_cli-0.24.0/cli/commands/sync.mjs +0 -173
- docguard_cli-0.24.0/cli/commands/watch.mjs +0 -143
- docguard_cli-0.24.0/cli/scanners/cdk.mjs +0 -10
- docguard_cli-0.24.0/cli/scanners/iac.mjs +0 -235
- docguard_cli-0.24.0/cli/scanners/integrations.mjs +0 -116
- docguard_cli-0.24.0/cli/scanners/project-type.mjs +0 -310
- docguard_cli-0.24.0/cli/scanners/speckit.mjs +0 -479
- docguard_cli-0.24.0/cli/shared-git.mjs +0 -185
- docguard_cli-0.24.0/cli/validators/architecture.mjs +0 -396
- docguard_cli-0.24.0/cli/validators/changelog.mjs +0 -80
- docguard_cli-0.24.0/cli/validators/cross-reference.mjs +0 -421
- docguard_cli-0.24.0/cli/validators/doc-quality.mjs +0 -659
- docguard_cli-0.24.0/cli/validators/docs-diff.mjs +0 -320
- docguard_cli-0.24.0/cli/validators/docs-sync.mjs +0 -261
- docguard_cli-0.24.0/cli/validators/drift.mjs +0 -121
- docguard_cli-0.24.0/cli/validators/environment.mjs +0 -143
- docguard_cli-0.24.0/cli/validators/generated-staleness.mjs +0 -219
- docguard_cli-0.24.0/cli/validators/schema-sync.mjs +0 -228
- docguard_cli-0.24.0/cli/validators/security.mjs +0 -170
- docguard_cli-0.24.0/cli/validators/spec-kit.mjs +0 -14
- docguard_cli-0.24.0/cli/writers/api-reference.mjs +0 -101
- docguard_cli-0.24.0/cli/writers/fix-memory.mjs +0 -181
- docguard_cli-0.24.0/cli/writers/mechanical.mjs +0 -251
- docguard_cli-0.24.0/cli/writers/sections.mjs +0 -161
- docguard_cli-0.24.0/commands/docguard.fix.md +0 -81
- docguard_cli-0.24.0/commands/docguard.guard.md +0 -61
- docguard_cli-0.24.0/commands/docguard.review.md +0 -53
- docguard_cli-0.24.0/commands/docguard.score.md +0 -61
- docguard_cli-0.24.0/configs/fastify.json +0 -37
- docguard_cli-0.24.0/configs/generic.json +0 -22
- docguard_cli-0.24.0/configs/nextjs.json +0 -37
- docguard_cli-0.24.0/configs/python.json +0 -37
- docguard_cli-0.24.0/docguard_cli/__init__.py +0 -1
- docguard_cli-0.24.0/docs/ai-integration.md +0 -179
- docguard_cli-0.24.0/docs/commands.md +0 -239
- docguard_cli-0.24.0/docs/doc-sections.md +0 -37
- docguard_cli-0.24.0/docs/faq.md +0 -155
- docguard_cli-0.24.0/docs/installation.md +0 -99
- docguard_cli-0.24.0/docs/profiles.md +0 -103
- docguard_cli-0.24.0/docs/quickstart.md +0 -94
- docguard_cli-0.24.0/docs-canonical/CI-RECIPES.md +0 -218
- docguard_cli-0.24.0/docs-canonical/REQUIREMENTS.md +0 -68
- docguard_cli-0.24.0/docs-canonical/SURFACE-AUDIT.md +0 -336
- docguard_cli-0.24.0/docs-implementation/MIGRATION-v0.20.md +0 -194
- docguard_cli-0.24.0/examples/01-express-api/README.md +0 -3
- docguard_cli-0.24.0/examples/01-express-api/package.json +0 -12
- docguard_cli-0.24.0/examples/01-express-api/server.js +0 -37
- docguard_cli-0.24.0/examples/02-python-flask/README.md +0 -24
- docguard_cli-0.24.0/examples/02-python-flask/app.py +0 -50
- docguard_cli-0.24.0/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -26
- docguard_cli-0.24.0/examples/02-python-flask/requirements.txt +0 -1
- docguard_cli-0.24.0/examples/03-spec-kit-project/CHANGELOG.md +0 -9
- docguard_cli-0.24.0/examples/03-spec-kit-project/README.md +0 -35
- docguard_cli-0.24.0/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -40
- docguard_cli-0.24.0/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -28
- docguard_cli-0.24.0/examples/03-spec-kit-project/package.json +0 -10
- docguard_cli-0.24.0/examples/03-spec-kit-project/src/index.js +0 -50
- docguard_cli-0.24.0/examples/03-spec-kit-project/tests/basic.test.js +0 -23
- docguard_cli-0.24.0/examples/README.md +0 -44
- docguard_cli-0.24.0/extensions/spec-kit-docguard/LICENSE +0 -21
- docguard_cli-0.24.0/extensions/spec-kit-docguard/README.md +0 -106
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/diagnose.md +0 -43
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/fix.md +0 -74
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/generate.md +0 -73
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/guard.md +0 -74
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/init.md +0 -38
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/score.md +0 -53
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/sync.md +0 -62
- docguard_cli-0.24.0/extensions/spec-kit-docguard/commands/trace.md +0 -56
- docguard_cli-0.24.0/extensions/spec-kit-docguard/extension.yml +0 -106
- docguard_cli-0.24.0/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -106
- docguard_cli-0.24.0/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -153
- docguard_cli-0.24.0/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -153
- docguard_cli-0.24.0/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -107
- docguard_cli-0.24.0/extensions/spec-kit-docguard/skills/docguard-fix/SKILL.md +0 -229
- docguard_cli-0.24.0/extensions/spec-kit-docguard/skills/docguard-guard/SKILL.md +0 -173
- docguard_cli-0.24.0/extensions/spec-kit-docguard/skills/docguard-review/SKILL.md +0 -186
- docguard_cli-0.24.0/extensions/spec-kit-docguard/skills/docguard-score/SKILL.md +0 -179
- docguard_cli-0.24.0/extensions/spec-kit-docguard/skills/docguard-sync/SKILL.md +0 -112
- docguard_cli-0.24.0/extensions/spec-kit-docguard/templates/extensions.yml +0 -39
- docguard_cli-0.24.0/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +0 -48
- docguard_cli-0.24.0/package.json +0 -63
- docguard_cli-0.24.0/pr_description.md +0 -16
- docguard_cli-0.24.0/pyproject.toml +0 -41
- docguard_cli-0.24.0/schemas/docguard-config.schema.json +0 -181
- docguard_cli-0.24.0/specs/001-fix-ignore-validators/plan.md +0 -115
- docguard_cli-0.24.0/specs/001-fix-ignore-validators/spec.md +0 -104
- docguard_cli-0.24.0/specs/001-fix-ignore-validators/tasks.md +0 -49
- docguard_cli-0.24.0/specs/002-fix-test-discovery/plan.md +0 -134
- docguard_cli-0.24.0/specs/002-fix-test-discovery/spec.md +0 -87
- docguard_cli-0.24.0/specs/002-fix-test-discovery/tasks.md +0 -40
- docguard_cli-0.24.0/specs/003-v011-false-positives/plan.md +0 -140
- docguard_cli-0.24.0/specs/003-v011-false-positives/spec.md +0 -191
- docguard_cli-0.24.0/specs/003-v011-false-positives/tasks.md +0 -156
- docguard_cli-0.24.0/specs/004-v020-env-var-false-negative/spec.md +0 -149
- docguard_cli-0.24.0/specs/005-hugocross-next-bugs/spec.md +0 -367
- docguard_cli-0.24.0/templates/ADR.md.template +0 -64
- docguard_cli-0.24.0/templates/AGENTS.md.template +0 -88
- docguard_cli-0.24.0/templates/ARCHITECTURE.md.template +0 -130
- docguard_cli-0.24.0/templates/CHANGELOG.md.template +0 -16
- docguard_cli-0.24.0/templates/CURRENT-STATE.md.template +0 -64
- docguard_cli-0.24.0/templates/DATA-MODEL.md.template +0 -66
- docguard_cli-0.24.0/templates/DEPLOYMENT.md.template +0 -66
- docguard_cli-0.24.0/templates/DRIFT-LOG.md.template +0 -18
- docguard_cli-0.24.0/templates/ENVIRONMENT.md.template +0 -43
- docguard_cli-0.24.0/templates/KNOWN-GOTCHAS.md.template +0 -69
- docguard_cli-0.24.0/templates/REQUIREMENTS.md.template +0 -68
- docguard_cli-0.24.0/templates/ROADMAP.md.template +0 -82
- docguard_cli-0.24.0/templates/RUNBOOKS.md.template +0 -115
- docguard_cli-0.24.0/templates/SECURITY.md.template +0 -42
- docguard_cli-0.24.0/templates/TEST-SPEC.md.template +0 -68
- docguard_cli-0.24.0/templates/TROUBLESHOOTING.md.template +0 -96
- docguard_cli-0.24.0/templates/VENDOR-BUGS.md.template +0 -74
- docguard_cli-0.24.0/templates/ci/github-actions.yml +0 -39
- docguard_cli-0.24.0/templates/commands/docguard.fix.md +0 -61
- docguard_cli-0.24.0/templates/commands/docguard.guard.md +0 -53
- docguard_cli-0.24.0/templates/commands/docguard.init.md +0 -69
- docguard_cli-0.24.0/templates/commands/docguard.review.md +0 -54
- docguard_cli-0.24.0/templates/commands/docguard.update.md +0 -55
- docguard_cli-0.24.0/templates/demo-fixture/.docguard.json +0 -8
- docguard_cli-0.24.0/templates/demo-fixture/.env.example +0 -5
- docguard_cli-0.24.0/templates/demo-fixture/AGENTS.md +0 -14
- docguard_cli-0.24.0/templates/demo-fixture/CHANGELOG.md +0 -13
- docguard_cli-0.24.0/templates/demo-fixture/DRIFT-LOG.md +0 -3
- docguard_cli-0.24.0/templates/demo-fixture/README.md +0 -17
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -36
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -30
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -30
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -20
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/SECURITY.md +0 -15
- docguard_cli-0.24.0/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -10
- docguard_cli-0.24.0/templates/demo-fixture/package.json +0 -10
- docguard_cli-0.24.0/templates/demo-fixture/src/api.mjs +0 -18
- docguard_cli-0.24.0/templates/demo-fixture/src/notifier.mjs +0 -23
- docguard_cli-0.24.0/templates/demo-fixture/src/scheduler.mjs +0 -8
- docguard_cli-0.24.0/templates/demo-fixture/src/worker.mjs +0 -15
- docguard_cli-0.24.0/test-draft.js +0 -20
- docguard_cli-0.24.0/test-metrics.js +0 -2
- docguard_cli-0.24.0/tests/anchor-autofix.test.mjs +0 -144
- docguard_cli-0.24.0/tests/api-surface.test.mjs +0 -96
- docguard_cli-0.24.0/tests/api-write.test.mjs +0 -128
- docguard_cli-0.24.0/tests/architecture.test.mjs +0 -113
- docguard_cli-0.24.0/tests/b7-node-env-symmetry.test.mjs +0 -97
- docguard_cli-0.24.0/tests/backup-failure.test.mjs +0 -60
- docguard_cli-0.24.0/tests/cdk-detection.test.mjs +0 -292
- docguard_cli-0.24.0/tests/changed-only-scoping.test.mjs +0 -118
- docguard_cli-0.24.0/tests/changed-only.test.mjs +0 -109
- docguard_cli-0.24.0/tests/changelog.test.mjs +0 -143
- docguard_cli-0.24.0/tests/commands.test.mjs +0 -805
- docguard_cli-0.24.0/tests/cross-reference.test.mjs +0 -282
- docguard_cli-0.24.0/tests/demo-command.test.mjs +0 -96
- docguard_cli-0.24.0/tests/doc-quality.test.mjs +0 -134
- docguard_cli-0.24.0/tests/docguardignore.test.mjs +0 -143
- docguard_cli-0.24.0/tests/docs-diff.test.mjs +0 -85
- docguard_cli-0.24.0/tests/docs-sync.test.mjs +0 -295
- docguard_cli-0.24.0/tests/drift.test.mjs +0 -84
- docguard_cli-0.24.0/tests/environment.test.mjs +0 -208
- docguard_cli-0.24.0/tests/fix-memory.test.mjs +0 -141
- docguard_cli-0.24.0/tests/fix-suppression.test.mjs +0 -129
- docguard_cli-0.24.0/tests/fixture-projects.test.mjs +0 -201
- docguard_cli-0.24.0/tests/frontend-deep.test.mjs +0 -102
- docguard_cli-0.24.0/tests/frontend.test.mjs +0 -90
- docguard_cli-0.24.0/tests/generated-staleness.test.mjs +0 -144
- docguard_cli-0.24.0/tests/guard-classify.test.mjs +0 -41
- docguard_cli-0.24.0/tests/guard-no-throw.test.mjs +0 -119
- docguard_cli-0.24.0/tests/hooks.test.mjs +0 -154
- docguard_cli-0.24.0/tests/i18n.test.mjs +0 -70
- docguard_cli-0.24.0/tests/impact.test.mjs +0 -125
- docguard_cli-0.24.0/tests/init-smart-detection.test.mjs +0 -124
- docguard_cli-0.24.0/tests/integrations.test.mjs +0 -101
- docguard_cli-0.24.0/tests/mechanical.test.mjs +0 -59
- docguard_cli-0.24.0/tests/memory-plan.test.mjs +0 -97
- docguard_cli-0.24.0/tests/metrics-dedup.test.mjs +0 -112
- docguard_cli-0.24.0/tests/monorepo-scanning.test.mjs +0 -64
- docguard_cli-0.24.0/tests/multi-spec.test.mjs +0 -79
- docguard_cli-0.24.0/tests/npm-pack-smoke.test.mjs +0 -130
- docguard_cli-0.24.0/tests/patch-0.11.2.test.mjs +0 -107
- docguard_cli-0.24.0/tests/plan-disk-cache.test.mjs +0 -121
- docguard_cli-0.24.0/tests/profile-flag.test.mjs +0 -68
- docguard_cli-0.24.0/tests/project-type.test.mjs +0 -104
- docguard_cli-0.24.0/tests/regenerate-section.test.mjs +0 -134
- docguard_cli-0.24.0/tests/routes-multilang.test.mjs +0 -110
- docguard_cli-0.24.0/tests/schema-sync.test.mjs +0 -112
- docguard_cli-0.24.0/tests/schemas-multilang.test.mjs +0 -174
- docguard_cli-0.24.0/tests/scoping-extended.test.mjs +0 -90
- docguard_cli-0.24.0/tests/section-na-markers.test.mjs +0 -91
- docguard_cli-0.24.0/tests/sections.test.mjs +0 -162
- docguard_cli-0.24.0/tests/security-init-injection.test.mjs +0 -147
- docguard_cli-0.24.0/tests/security.test.mjs +0 -166
- docguard_cli-0.24.0/tests/severity.test.mjs +0 -239
- docguard_cli-0.24.0/tests/shared-git.test.mjs +0 -207
- docguard_cli-0.24.0/tests/speckit-bugfix.test.mjs +0 -72
- docguard_cli-0.24.0/tests/stress-test.test.mjs +0 -111
- docguard_cli-0.24.0/tests/structure.test.mjs +0 -132
- docguard_cli-0.24.0/tests/surface-sync.test.mjs +0 -339
- docguard_cli-0.24.0/tests/sweep-nudge.test.mjs +0 -110
- docguard_cli-0.24.0/tests/sync-since.test.mjs +0 -99
- docguard_cli-0.24.0/tests/sync.test.mjs +0 -104
- docguard_cli-0.24.0/tests/todo-tracking.test.mjs +0 -128
- docguard_cli-0.24.0/tests/trace-multilang.test.mjs +0 -139
- docguard_cli-0.24.0/tests/trace-reverse.test.mjs +0 -96
- docguard_cli-0.24.0/tests/upgrade-pr-e2e.test.mjs +0 -175
- docguard_cli-0.24.0/tests/upgrade-pr.test.mjs +0 -79
- docguard_cli-0.24.0/tests/v020-consolidation.test.mjs +0 -200
- docguard_cli-0.24.0/tests/validator-naming.test.mjs +0 -104
- docguard_cli-0.24.0/tests/version-pin.test.mjs +0 -91
- docguard_cli-0.24.0/tests/whats-new.test.mjs +0 -65
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/docguard.fix.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/docguard.guard.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/docguard.review.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/docguard.score.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.analyze.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.checklist.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.clarify.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.constitution.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.implement.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.plan.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.specify.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.tasks.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/commands/speckit.taskstoissues.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-analyze/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-checklist/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-clarify/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-constitution/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-implement/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-plan/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-specify/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-tasks/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.agent/skills/speckit-taskstoissues/SKILL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.claude/rules/openwolf.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.claude/settings.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.docguard.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.docguardignore +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.github/dependabot.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.github/scripts/patch-catalog.py +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.github/workflows/ci.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.github/workflows/supply-chain.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.github/workflows/sync-speckit-catalog.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.gitignore +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.jules/bolt.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.jules/palette.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.jules/sentinel.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/.jules-setup.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.npmignore +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.npmrc +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/extensions/.cache/catalog-metadata.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/extensions/.cache/catalog.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/init-options.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/.specify/memory/constitution.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/scripts/bash/check-prerequisites.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/scripts/bash/common.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/scripts/bash/create-new-feature.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/scripts/bash/setup-plan.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/scripts/bash/update-agent-context.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/agent-file-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/checklist-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/constitution-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/plan-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/spec-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.specify/templates/tasks-template.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/OPENWOLF.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/anatomy.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/config.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/cron-manifest.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/daemon.log +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/designqc-report.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/hooks/_session.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/hooks/_wrap_up_nudged +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/package.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/post-read.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/post-write.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/pre-read.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/pre-write.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/session-start.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/shared.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/hooks/stop.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/identity.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/memory.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/reframe-frameworks.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/.wolf/suggestions.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/zealous-ardinghelli-facf7d → docguard_cli-0.25.0}/.wolf/token-ledger.json +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/AGENTS.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/CLAUDE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/CODE_OF_CONDUCT.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/COMPARISONS.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/CONTRIBUTING.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/DRIFT-LOG.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/LICENSE +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/PHILOSOPHY.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/SECURITY.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/STANDARD.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/SUPPLY-CHAIN-AUDIT.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/SUPPORT.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/action.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/assets/bin/docguard +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/assets/demo.gif +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/assets/demo.tape +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/assets/docguard-logo.png +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/agents.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/badge.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/ci.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/commands/demo.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/diagnose.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/diff.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/explain.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/fix.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/guard.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/commands/hooks.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/impact.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/llms.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/commands/memory.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/publish.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/score.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/setup.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/trace.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/commands/upgrade.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/commands/watch.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/config.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/ensure-skills.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/api-doc.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/scanners/cdk.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/doc-tools.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/frontend.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/scanners/iac.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/scanners/integrations.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/js-ast.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/memory-plan.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/py-ast.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/routes.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/scanners/schemas.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/scanners/speckit.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/shared-git.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/shared-source.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/shared-trace-patterns.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validator-markers.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/api-surface.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/validators/architecture.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/canonical-sync.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/validators/changelog.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/validators/cross-reference.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/doc-quality.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/docs-coverage.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/docs-diff.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/docs-sync.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/drift.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/environment.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/freshness.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/metadata-sync.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/metrics-consistency.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/validators/schema-sync.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/validators/security.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/validators/spec-kit.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/structure.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/surface-sync.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/test-spec.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/todo-tracking.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/cli/validators/traceability.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/writers/api-reference.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/writers/fix-memory.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/cli/writers/mechanical.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/cli/writers/sections.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/commands/docguard.fix.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/commands/docguard.guard.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/commands/docguard.review.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/commands/docguard.score.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/configs/fastify.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/configs/generic.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/configs/nextjs.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/configs/python.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docguard_cli/__init__.py +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docguard_cli/wrapper.py +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docs/ai-integration.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs/commands.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs/configuration.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docs/doc-sections.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs/faq.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docs/installation.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docs/profiles.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs/quickstart.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs-canonical/CI-RECIPES.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs-canonical/DATA-MODEL.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs-canonical/ENVIRONMENT.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs-canonical/REQUIREMENTS.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs-canonical/SECURITY.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/docs-canonical/SURFACE-AUDIT.md +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/docs-canonical/TEST-SPEC.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/docs-implementation/MIGRATION-v0.20.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/01-express-api/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/01-express-api/package.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/01-express-api/server.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/02-python-flask/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/02-python-flask/app.py +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/02-python-flask/requirements.txt +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/CHANGELOG.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/package.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/src/index.js +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/examples/03-spec-kit-project/tasks.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/03-spec-kit-project/tests/basic.test.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/examples/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/LICENSE +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/extensions/spec-kit-docguard/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/diagnose.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/fix.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/generate.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/guard.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/init.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/score.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/sync.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/commands/trace.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/extensions/spec-kit-docguard/templates/extensions.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/pr_description.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/schemas/docguard-config.schema.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/001-fix-ignore-validators/plan.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/001-fix-ignore-validators/spec.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/001-fix-ignore-validators/tasks.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/specs/002-fix-test-discovery/plan.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/002-fix-test-discovery/spec.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/002-fix-test-discovery/tasks.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/003-v011-false-positives/plan.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/003-v011-false-positives/spec.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/specs/003-v011-false-positives/tasks.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/specs/004-v020-env-var-false-negative/spec.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/specs/005-hugocross-next-bugs/spec.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/ADR.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/AGENTS.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/ARCHITECTURE.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/CHANGELOG.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/CURRENT-STATE.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/DATA-MODEL.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/DEPLOYMENT.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/DRIFT-LOG.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/ENVIRONMENT.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/KNOWN-GOTCHAS.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/REQUIREMENTS.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/ROADMAP.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/RUNBOOKS.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/SECURITY.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/TEST-SPEC.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/TROUBLESHOOTING.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/VENDOR-BUGS.md.template +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/ci/github-actions.yml +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/commands/docguard.fix.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/commands/docguard.guard.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/commands/docguard.init.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/commands/docguard.review.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/commands/docguard.update.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/.docguard.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/.env.example +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/AGENTS.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/CHANGELOG.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/DRIFT-LOG.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/README.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/SECURITY.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/package.json +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/src/api.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/src/notifier.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/src/scheduler.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/templates/demo-fixture/src/worker.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/test-draft.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/test-metrics.js +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/anchor-autofix.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/api-doc.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/api-surface.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/api-write.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/architecture.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/b7-node-env-symmetry.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/backup-failure.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/canonical-sync.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/cdk-detection.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/changed-only-scoping.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/changed-only.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/changelog.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/cross-reference.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/demo-command.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/doc-quality.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/doc-section-synonyms.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/docs-coverage.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/docs-diff.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/docs-sync.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/drift.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/ensure-skills-idempotent.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/env-schema-detection.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/environment.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/explain-coverage.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/field-report-2-cli.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/fix-memory.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/fix-suppression.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/fixture-projects.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/freshness.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/frontend-deep.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/frontend.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/guard-classify.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/guard-no-throw.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/hooks.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/i18n.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/impact.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/init-smart-detection.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/integrations.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/js-ast.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/mechanical.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/memory-plan.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/metadata-sync.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/metrics-consistency.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/metrics-dedup.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/monorepo-scanning.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/multi-spec.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/npm-pack-smoke.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/openapi-parse-honesty.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/patch-0.11.2.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/plan-disk-cache.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/profile-flag.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/py-ast.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/regenerate-section.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/routes-express-mounts.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/routes-fastify.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/routes-multilang.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/routes-nextjs-app-router.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/schema-sync.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/schemas-multilang.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/schemas.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/scoping-extended.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/score-suggestions.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/section-na-markers.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/sections.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/security-init-injection.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/security.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/severity.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/shared-git.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/shared-source.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/speckit-bugfix.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/starter-scaffold.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/stress-test.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/structure.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/objective-robinson-841179 → docguard_cli-0.25.0}/tests/surface-sync.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/sweep-nudge.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/sync-since.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/test-spec.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/todo-tracking.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/trace-multilang.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/trace-reverse.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/traceability.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/upgrade-pr-e2e.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/upgrade-pr.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/upgrade.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/v020-consolidation.test.mjs +0 -0
- {docguard_cli-0.24.0 → docguard_cli-0.25.0}/tests/validator-markers.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/validator-naming.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/version-pin.test.mjs +0 -0
- {docguard_cli-0.24.0/.claude/worktrees/gallant-bhabha-0b72fc → docguard_cli-0.25.0}/tests/whats-new.test.mjs +0 -0
|
@@ -6,10 +6,10 @@ description: AI-driven documentation repair with structured research workflow, t
|
|
|
6
6
|
compatibility: Requires DocGuard CLI installed (npm i -g docguard-cli or npx docguard-cli)
|
|
7
7
|
metadata:
|
|
8
8
|
author: docguard
|
|
9
|
-
version: 0.
|
|
9
|
+
version: 0.25.0
|
|
10
10
|
source: extensions/spec-kit-docguard/skills/docguard-fix
|
|
11
11
|
---
|
|
12
|
-
<!-- docguard:version: 0.
|
|
12
|
+
<!-- docguard:version: 0.25.0 -->
|
|
13
13
|
|
|
14
14
|
# DocGuard Fix Skill
|
|
15
15
|
|
|
@@ -7,10 +7,10 @@ description: Run DocGuard guard validation against Canonical-Driven Development
|
|
|
7
7
|
compatibility: Requires DocGuard CLI installed (npm i -g docguard-cli or npx docguard-cli)
|
|
8
8
|
metadata:
|
|
9
9
|
author: docguard
|
|
10
|
-
version: 0.
|
|
10
|
+
version: 0.25.0
|
|
11
11
|
source: extensions/spec-kit-docguard/skills/docguard-guard
|
|
12
12
|
---
|
|
13
|
-
<!-- docguard:version: 0.
|
|
13
|
+
<!-- docguard:version: 0.25.0 -->
|
|
14
14
|
|
|
15
15
|
# DocGuard Guard Skill
|
|
16
16
|
|
|
@@ -6,10 +6,10 @@ description: Cross-document consistency analysis and quality assessment. Perform
|
|
|
6
6
|
compatibility: Requires DocGuard CLI installed (npm i -g docguard-cli or npx docguard-cli)
|
|
7
7
|
metadata:
|
|
8
8
|
author: docguard
|
|
9
|
-
version: 0.
|
|
9
|
+
version: 0.25.0
|
|
10
10
|
source: extensions/spec-kit-docguard/skills/docguard-review
|
|
11
11
|
---
|
|
12
|
-
<!-- docguard:version: 0.
|
|
12
|
+
<!-- docguard:version: 0.25.0 -->
|
|
13
13
|
|
|
14
14
|
# DocGuard Review Skill
|
|
15
15
|
|
|
@@ -6,10 +6,10 @@ description: CDD maturity assessment with category-aware improvement roadmap. Ru
|
|
|
6
6
|
compatibility: Requires DocGuard CLI installed (npm i -g docguard-cli or npx docguard-cli)
|
|
7
7
|
metadata:
|
|
8
8
|
author: docguard
|
|
9
|
-
version: 0.
|
|
9
|
+
version: 0.25.0
|
|
10
10
|
source: extensions/spec-kit-docguard/skills/docguard-score
|
|
11
11
|
---
|
|
12
|
-
<!-- docguard:version: 0.
|
|
12
|
+
<!-- docguard:version: 0.25.0 -->
|
|
13
13
|
|
|
14
14
|
# DocGuard Score Skill
|
|
15
15
|
|
|
@@ -4,9 +4,10 @@ description: Keep canonical documentation ALWAYS UP TO DATE. Refreshes code-trut
|
|
|
4
4
|
compatibility: Requires DocGuard CLI installed (npm i -g docguard-cli or npx docguard-cli)
|
|
5
5
|
metadata:
|
|
6
6
|
author: docguard
|
|
7
|
-
version: 0.
|
|
7
|
+
version: 0.25.0
|
|
8
8
|
source: extensions/spec-kit-docguard/skills/docguard-sync
|
|
9
9
|
---
|
|
10
|
+
<!-- docguard:version: 0.25.0 -->
|
|
10
11
|
|
|
11
12
|
# DocGuard Sync Skill
|
|
12
13
|
|
|
@@ -21,23 +21,28 @@ jobs:
|
|
|
21
21
|
steps:
|
|
22
22
|
- uses: actions/checkout@v6
|
|
23
23
|
with:
|
|
24
|
-
fetch-depth:
|
|
24
|
+
fetch-depth: 1 # only need HEAD's package.json; the tag check hits the remote
|
|
25
25
|
|
|
26
|
-
- name: Check if version
|
|
26
|
+
- name: Check if this version needs releasing
|
|
27
27
|
id: check
|
|
28
28
|
run: |
|
|
29
29
|
CURRENT=$(node -p "require('./package.json').version")
|
|
30
|
-
|
|
31
|
-
PREVIOUS=$(git show HEAD~1:package.json 2>/dev/null | node -p "JSON.parse(require('fs').readFileSync('/dev/stdin','utf-8')).version" 2>/dev/null || echo "0.0.0")
|
|
30
|
+
TAG="v${CURRENT}"
|
|
32
31
|
echo "current=$CURRENT"
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
# TAG-DRIVEN gate (not HEAD~1): a version needs releasing iff no tag
|
|
33
|
+
# v$CURRENT exists yet. The old HEAD~1 comparison skipped the release
|
|
34
|
+
# whenever a push carried commits AFTER the version-bump commit (the
|
|
35
|
+
# bump wasn't the tip) — e.g. a batched push of several commits. It saw
|
|
36
|
+
# HEAD and HEAD~1 both already carrying the new version and wrongly
|
|
37
|
+
# concluded "unchanged", silently skipping npm/PyPI/GitHub-Release.
|
|
38
|
+
# Checking the tag is also idempotent: a re-run won't double-publish.
|
|
39
|
+
if git ls-remote --tags origin "refs/tags/$TAG" | grep -q "refs/tags/$TAG$"; then
|
|
40
|
+
echo "changed=false" >> "$GITHUB_OUTPUT"
|
|
41
|
+
echo "⏭️ $TAG already released — nothing to do"
|
|
42
|
+
else
|
|
35
43
|
echo "version=$CURRENT" >> "$GITHUB_OUTPUT"
|
|
36
44
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
37
|
-
echo "✅
|
|
38
|
-
else
|
|
39
|
-
echo "changed=false" >> "$GITHUB_OUTPUT"
|
|
40
|
-
echo "⏭️ Version unchanged ($CURRENT), skipping release"
|
|
45
|
+
echo "✅ $TAG is not yet released — releasing"
|
|
41
46
|
fi
|
|
42
47
|
|
|
43
48
|
# ── Step 2: Run full test suite ────────────────────────────────────────
|
|
@@ -55,6 +60,8 @@ jobs:
|
|
|
55
60
|
- uses: actions/setup-node@v6
|
|
56
61
|
with:
|
|
57
62
|
node-version: ${{ matrix.node-version }}
|
|
63
|
+
- name: Install dependencies
|
|
64
|
+
run: npm ci
|
|
58
65
|
- name: Run Tests
|
|
59
66
|
run: npm test
|
|
60
67
|
- name: Guard (self-check)
|
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"bugs": [
|
|
4
|
+
{
|
|
5
|
+
"id": "bug-001",
|
|
6
|
+
"timestamp": "2026-05-26T16:08:44.583Z",
|
|
7
|
+
"error_message": "Incorrect value in code",
|
|
8
|
+
"file": "assets/demo.tape",
|
|
9
|
+
"root_cause": "Had \"/Users/ricardoaccioly/.gemini/canonical-spec-kit/",
|
|
10
|
+
"fix": "Changed to \"/Users/ricardoaccioly/.gemini/canonical-spec-kit/",
|
|
11
|
+
"tags": [
|
|
12
|
+
"auto-detected",
|
|
13
|
+
"wrong-value",
|
|
14
|
+
"tape"
|
|
15
|
+
],
|
|
16
|
+
"related_bugs": [],
|
|
17
|
+
"occurrences": 1,
|
|
18
|
+
"last_seen": "2026-05-26T16:08:44.583Z"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "bug-002",
|
|
22
|
+
"timestamp": "2026-05-26T16:43:46.987Z",
|
|
23
|
+
"error_message": "Significant refactor of ",
|
|
24
|
+
"file": ".github/workflows/sync-speckit-catalog.yml",
|
|
25
|
+
"root_cause": "8 lines replaced/restructured",
|
|
26
|
+
"fix": "Rewrote 25→28 lines (8 removed)",
|
|
27
|
+
"tags": [
|
|
28
|
+
"auto-detected",
|
|
29
|
+
"refactor",
|
|
30
|
+
"yml"
|
|
31
|
+
],
|
|
32
|
+
"related_bugs": [],
|
|
33
|
+
"occurrences": 1,
|
|
34
|
+
"last_seen": "2026-05-26T16:43:46.987Z"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "bug-003",
|
|
38
|
+
"timestamp": "2026-05-28T23:39:41.943Z",
|
|
39
|
+
"error_message": "Incorrect value in code",
|
|
40
|
+
"file": "../../../package.json",
|
|
41
|
+
"root_cause": "Had \"0.21.1\"",
|
|
42
|
+
"fix": "Changed to \"0.22.0\"",
|
|
43
|
+
"tags": [
|
|
44
|
+
"auto-detected",
|
|
45
|
+
"wrong-value",
|
|
46
|
+
"json"
|
|
47
|
+
],
|
|
48
|
+
"related_bugs": [],
|
|
49
|
+
"occurrences": 1,
|
|
50
|
+
"last_seen": "2026-05-28T23:39:41.943Z"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "bug-004",
|
|
54
|
+
"timestamp": "2026-05-28T23:43:47.639Z",
|
|
55
|
+
"error_message": "Incorrect value in code",
|
|
56
|
+
"file": "../../../README.md",
|
|
57
|
+
"root_cause": "Had \"Validators (23)\"",
|
|
58
|
+
"fix": "Changed to \"Validators (24)\"",
|
|
59
|
+
"tags": [
|
|
60
|
+
"auto-detected",
|
|
61
|
+
"wrong-value",
|
|
62
|
+
"md"
|
|
63
|
+
],
|
|
64
|
+
"related_bugs": [],
|
|
65
|
+
"occurrences": 2,
|
|
66
|
+
"last_seen": "2026-05-28T23:45:21.168Z"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "bug-005",
|
|
70
|
+
"timestamp": "2026-05-29T14:47:36.135Z",
|
|
71
|
+
"error_message": "Incorrect value in code",
|
|
72
|
+
"file": "../../../extensions/spec-kit-docguard/commands/guard.md",
|
|
73
|
+
"root_cause": "Had \"Run 19-validator quality gate with severity triag",
|
|
74
|
+
"fix": "Changed to \"Run the full quality gate with severity triage an",
|
|
75
|
+
"tags": [
|
|
76
|
+
"auto-detected",
|
|
77
|
+
"wrong-value",
|
|
78
|
+
"md"
|
|
79
|
+
],
|
|
80
|
+
"related_bugs": [],
|
|
81
|
+
"occurrences": 1,
|
|
82
|
+
"last_seen": "2026-05-29T14:47:36.135Z"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "bug-006",
|
|
86
|
+
"timestamp": "2026-05-29T14:47:39.737Z",
|
|
87
|
+
"error_message": "Incorrect value in code",
|
|
88
|
+
"file": "../../../cli/validators/test-spec.mjs",
|
|
89
|
+
"root_cause": "Had 'TEST-SPEC.md declares no service-to-test mappings",
|
|
90
|
+
"fix": "Changed to 'TEST-SPEC.md declares no service-to-test mappings",
|
|
91
|
+
"tags": [
|
|
92
|
+
"auto-detected",
|
|
93
|
+
"wrong-value",
|
|
94
|
+
"mjs"
|
|
95
|
+
],
|
|
96
|
+
"related_bugs": [],
|
|
97
|
+
"occurrences": 1,
|
|
98
|
+
"last_seen": "2026-05-29T14:47:39.737Z"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "bug-007",
|
|
102
|
+
"timestamp": "2026-05-29T14:50:14.653Z",
|
|
103
|
+
"error_message": "Significant refactor of ",
|
|
104
|
+
"file": "../../../docs-canonical/REQUIREMENTS.md",
|
|
105
|
+
"root_cause": "5 lines replaced/restructured",
|
|
106
|
+
"fix": "Rewrote 5→5 lines (5 removed)",
|
|
107
|
+
"tags": [
|
|
108
|
+
"auto-detected",
|
|
109
|
+
"refactor",
|
|
110
|
+
"md"
|
|
111
|
+
],
|
|
112
|
+
"related_bugs": [],
|
|
113
|
+
"occurrences": 1,
|
|
114
|
+
"last_seen": "2026-05-29T14:50:14.653Z"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "bug-008",
|
|
118
|
+
"timestamp": "2026-05-29T14:53:55.230Z",
|
|
119
|
+
"error_message": "Incorrect value in code",
|
|
120
|
+
"file": "../../../package.json",
|
|
121
|
+
"root_cause": "Had \"0.22.0\"",
|
|
122
|
+
"fix": "Changed to \"0.22.1\"",
|
|
123
|
+
"tags": [
|
|
124
|
+
"auto-detected",
|
|
125
|
+
"wrong-value",
|
|
126
|
+
"json"
|
|
127
|
+
],
|
|
128
|
+
"related_bugs": [],
|
|
129
|
+
"occurrences": 1,
|
|
130
|
+
"last_seen": "2026-05-29T14:53:55.230Z"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "bug-009",
|
|
134
|
+
"timestamp": "2026-05-29T16:02:34.086Z",
|
|
135
|
+
"error_message": "Wrong reference: execSync should be execFileSync",
|
|
136
|
+
"file": "../../../vscode-extension/extension.js",
|
|
137
|
+
"root_cause": "Used \"execSync\" instead of \"execFileSync\"",
|
|
138
|
+
"fix": "Changed execSync → execFileSync",
|
|
139
|
+
"tags": [
|
|
140
|
+
"auto-detected",
|
|
141
|
+
"wrong-reference",
|
|
142
|
+
"js"
|
|
143
|
+
],
|
|
144
|
+
"related_bugs": [],
|
|
145
|
+
"occurrences": 1,
|
|
146
|
+
"last_seen": "2026-05-29T16:02:34.086Z"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "bug-010",
|
|
150
|
+
"timestamp": "2026-05-29T16:02:42.285Z",
|
|
151
|
+
"error_message": "Significant refactor of ",
|
|
152
|
+
"file": "../../../vscode-extension/extension.js",
|
|
153
|
+
"root_cause": "4 lines replaced/restructured",
|
|
154
|
+
"fix": "Rewrote 21→37 lines (4 removed)",
|
|
155
|
+
"tags": [
|
|
156
|
+
"auto-detected",
|
|
157
|
+
"refactor",
|
|
158
|
+
"js"
|
|
159
|
+
],
|
|
160
|
+
"related_bugs": [],
|
|
161
|
+
"occurrences": 1,
|
|
162
|
+
"last_seen": "2026-05-29T16:02:42.285Z"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "bug-011",
|
|
166
|
+
"timestamp": "2026-05-29T16:02:55.385Z",
|
|
167
|
+
"error_message": "Incorrect value in code",
|
|
168
|
+
"file": "../../../vscode-extension/package.json",
|
|
169
|
+
"root_cause": "Had \"0.4.0\"",
|
|
170
|
+
"fix": "Changed to \"0.4.1\"",
|
|
171
|
+
"tags": [
|
|
172
|
+
"auto-detected",
|
|
173
|
+
"wrong-value",
|
|
174
|
+
"json"
|
|
175
|
+
],
|
|
176
|
+
"related_bugs": [],
|
|
177
|
+
"occurrences": 1,
|
|
178
|
+
"last_seen": "2026-05-29T16:02:55.385Z"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "bug-012",
|
|
182
|
+
"timestamp": "2026-05-29T16:23:42.591Z",
|
|
183
|
+
"error_message": "Incorrect value in code",
|
|
184
|
+
"file": "../../../vscode-extension/package.json",
|
|
185
|
+
"root_cause": "Had \"raccioly\"",
|
|
186
|
+
"fix": "Changed to \"DocGuard\"",
|
|
187
|
+
"tags": [
|
|
188
|
+
"auto-detected",
|
|
189
|
+
"wrong-value",
|
|
190
|
+
"json"
|
|
191
|
+
],
|
|
192
|
+
"related_bugs": [],
|
|
193
|
+
"occurrences": 1,
|
|
194
|
+
"last_seen": "2026-05-29T16:23:42.591Z"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"id": "bug-013",
|
|
198
|
+
"timestamp": "2026-05-29T17:41:52.724Z",
|
|
199
|
+
"error_message": "Incorrect value in code",
|
|
200
|
+
"file": "../../../cli/commands/demo.mjs",
|
|
201
|
+
"root_cause": "Had '../docguard.mjs'",
|
|
202
|
+
"fix": "Changed to '../config.mjs'",
|
|
203
|
+
"tags": [
|
|
204
|
+
"auto-detected",
|
|
205
|
+
"wrong-value",
|
|
206
|
+
"mjs"
|
|
207
|
+
],
|
|
208
|
+
"related_bugs": [],
|
|
209
|
+
"occurrences": 1,
|
|
210
|
+
"last_seen": "2026-05-29T17:41:52.724Z"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "bug-014",
|
|
214
|
+
"timestamp": "2026-05-29T17:46:42.520Z",
|
|
215
|
+
"error_message": "Missing guard clause",
|
|
216
|
+
"file": "../../../cli/validators/doc-quality.mjs",
|
|
217
|
+
"root_cause": "No early return/throw for edge case: !m",
|
|
218
|
+
"fix": "Added guard clause: if (!m)",
|
|
219
|
+
"tags": [
|
|
220
|
+
"auto-detected",
|
|
221
|
+
"guard-clause",
|
|
222
|
+
"mjs"
|
|
223
|
+
],
|
|
224
|
+
"related_bugs": [],
|
|
225
|
+
"occurrences": 1,
|
|
226
|
+
"last_seen": "2026-05-29T17:46:42.520Z"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"id": "bug-015",
|
|
230
|
+
"timestamp": "2026-05-29T17:46:53.523Z",
|
|
231
|
+
"error_message": "Null/undefined access in ",
|
|
232
|
+
"file": "../../../cli/validators/doc-quality.mjs",
|
|
233
|
+
"root_cause": "Property access on potentially null/undefined value",
|
|
234
|
+
"fix": "Added null safety (optional chaining or null check)",
|
|
235
|
+
"tags": [
|
|
236
|
+
"auto-detected",
|
|
237
|
+
"null-safety",
|
|
238
|
+
"mjs"
|
|
239
|
+
],
|
|
240
|
+
"related_bugs": [],
|
|
241
|
+
"occurrences": 1,
|
|
242
|
+
"last_seen": "2026-05-29T17:46:53.523Z"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "bug-016",
|
|
246
|
+
"timestamp": "2026-05-29T17:47:26.119Z",
|
|
247
|
+
"error_message": "Missing error handling in unknown",
|
|
248
|
+
"file": "../../../docs-canonical/SURFACE-AUDIT.md",
|
|
249
|
+
"root_cause": "Code path had no error handling — exceptions would propagate uncaught",
|
|
250
|
+
"fix": "Added try/catch block",
|
|
251
|
+
"tags": [
|
|
252
|
+
"auto-detected",
|
|
253
|
+
"error-handling",
|
|
254
|
+
"md"
|
|
255
|
+
],
|
|
256
|
+
"related_bugs": [],
|
|
257
|
+
"occurrences": 1,
|
|
258
|
+
"last_seen": "2026-05-29T17:47:26.119Z"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "bug-017",
|
|
262
|
+
"timestamp": "2026-05-29T19:49:12.053Z",
|
|
263
|
+
"error_message": "Incorrect value in code",
|
|
264
|
+
"file": "../../../README.md",
|
|
265
|
+
"root_cause": "Had `trace`",
|
|
266
|
+
"fix": "Changed to `cli/shared-trace-patterns.mjs`",
|
|
267
|
+
"tags": [
|
|
268
|
+
"auto-detected",
|
|
269
|
+
"wrong-value",
|
|
270
|
+
"md"
|
|
271
|
+
],
|
|
272
|
+
"related_bugs": [],
|
|
273
|
+
"occurrences": 1,
|
|
274
|
+
"last_seen": "2026-05-29T19:49:12.053Z"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "bug-018",
|
|
278
|
+
"timestamp": "2026-05-29T19:52:21.944Z",
|
|
279
|
+
"error_message": "Significant refactor of ",
|
|
280
|
+
"file": "../../../docs-canonical/ARCHITECTURE.md",
|
|
281
|
+
"root_cause": "4 lines replaced/restructured",
|
|
282
|
+
"fix": "Rewrote 5→6 lines (4 removed)",
|
|
283
|
+
"tags": [
|
|
284
|
+
"auto-detected",
|
|
285
|
+
"refactor",
|
|
286
|
+
"md"
|
|
287
|
+
],
|
|
288
|
+
"related_bugs": [],
|
|
289
|
+
"occurrences": 1,
|
|
290
|
+
"last_seen": "2026-05-29T19:52:21.944Z"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"id": "bug-019",
|
|
294
|
+
"timestamp": "2026-05-29T19:52:38.733Z",
|
|
295
|
+
"error_message": "Incorrect value in code",
|
|
296
|
+
"file": "../../../docs-canonical/ARCHITECTURE.md",
|
|
297
|
+
"root_cause": "Had `DEFAULT_IGNORE_DIRS`",
|
|
298
|
+
"fix": "Changed to `cli/config.mjs`",
|
|
299
|
+
"tags": [
|
|
300
|
+
"auto-detected",
|
|
301
|
+
"wrong-value",
|
|
302
|
+
"md"
|
|
303
|
+
],
|
|
304
|
+
"related_bugs": [],
|
|
305
|
+
"occurrences": 1,
|
|
306
|
+
"last_seen": "2026-05-29T19:52:38.733Z"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"id": "bug-020",
|
|
310
|
+
"timestamp": "2026-05-29T19:54:57.149Z",
|
|
311
|
+
"error_message": "Incorrect value in code",
|
|
312
|
+
"file": "../../../docs-canonical/SECURITY.md",
|
|
313
|
+
"root_cause": "Had `git`",
|
|
314
|
+
"fix": "Changed to `specify init`",
|
|
315
|
+
"tags": [
|
|
316
|
+
"auto-detected",
|
|
317
|
+
"wrong-value",
|
|
318
|
+
"md"
|
|
319
|
+
],
|
|
320
|
+
"related_bugs": [],
|
|
321
|
+
"occurrences": 2,
|
|
322
|
+
"last_seen": "2026-05-29T19:54:58.869Z"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": "bug-021",
|
|
326
|
+
"timestamp": "2026-05-29T19:55:22.428Z",
|
|
327
|
+
"error_message": "Incorrect value in code",
|
|
328
|
+
"file": "../../../ROADMAP.md",
|
|
329
|
+
"root_cause": "Had `0.4.0`",
|
|
330
|
+
"fix": "Changed to `0.5.0`",
|
|
331
|
+
"tags": [
|
|
332
|
+
"auto-detected",
|
|
333
|
+
"wrong-value",
|
|
334
|
+
"md"
|
|
335
|
+
],
|
|
336
|
+
"related_bugs": [],
|
|
337
|
+
"occurrences": 1,
|
|
338
|
+
"last_seen": "2026-05-29T19:55:22.428Z"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "bug-022",
|
|
342
|
+
"timestamp": "2026-05-29T19:59:24.106Z",
|
|
343
|
+
"error_message": "Incorrect value in code",
|
|
344
|
+
"file": "../../../package.json",
|
|
345
|
+
"root_cause": "Had \"0.22.1\"",
|
|
346
|
+
"fix": "Changed to \"0.23.0\"",
|
|
347
|
+
"tags": [
|
|
348
|
+
"auto-detected",
|
|
349
|
+
"wrong-value",
|
|
350
|
+
"json"
|
|
351
|
+
],
|
|
352
|
+
"related_bugs": [],
|
|
353
|
+
"occurrences": 1,
|
|
354
|
+
"last_seen": "2026-05-29T19:59:24.106Z"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "bug-023",
|
|
358
|
+
"timestamp": "2026-06-02T15:41:53Z",
|
|
359
|
+
"error_message": ".docguardignore trailing-slash dir patterns (e.g. 'tests/', 'base-research/') silently match nothing — ignored dirs were still scanned/flagged by every shouldIgnore + buildIgnoreFilter consumer",
|
|
360
|
+
"file": "cli/shared-ignore.mjs",
|
|
361
|
+
"root_cause": "globToRegex did not strip a gitignore-style trailing slash, so 'dir/' built an alternation that could only match a literal 'dir//' (double slash) — never a real path. routes.mjs and todo-tracking.mjs WERE correctly wired to shouldIgnore (fcc7264); the glob translator itself was broken. The test suite used 'dir/' forms only in loader/merge assertions and never asserted they MATCH a file, so it stayed green — a false-green coverage gap.",
|
|
362
|
+
"fix": "Strip a trailing slash in globToRegex (const normalized = pattern.replace trailing-slash || pattern) so 'dir', 'dir/' and 'dir/**' behave identically. Added 4 end-to-end regression tests in tests/docguardignore.test.mjs that assert trailing-slash patterns actually match and do not over-match a sibling sharing the prefix.",
|
|
363
|
+
"tags": ["ignore", "glob", "false-green", "security-relevant", "field-report", "websec-validator", "B1a"],
|
|
364
|
+
"related_bugs": [],
|
|
365
|
+
"occurrences": 1,
|
|
366
|
+
"last_seen": "2026-06-02T15:41:53Z"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"id": "bug-024",
|
|
370
|
+
"timestamp": "2026-06-02T15:41:53Z",
|
|
371
|
+
"error_message": "generate --plan --write crashes with ENOENT creating docs-implementation/KNOWN-GOTCHAS.md",
|
|
372
|
+
"file": "cli/commands/generate.mjs",
|
|
373
|
+
"root_cause": "The --plan --write loop mkdir'd only docs-canonical/, then wrote each doc with a raw writeFileSync. buildMemoryPlan unconditionally plans docs-implementation/ docs (KNOWN-GOTCHAS.md, CURRENT-STATE.md), so the first write into that not-yet-created dir threw ENOENT — docs-canonical docs written, first docs-implementation write crashed.",
|
|
374
|
+
"fix": "Folded mkdirSync(dirname(filePath),{recursive:true}) into the safeWrite helper and routed the --plan --write loop through safeWrite instead of raw writeFileSync (also gains the .bak backup that path previously lacked). Added a regression test in tests/commands.test.mjs running generate --plan --write in a temp project with no docs-implementation/.",
|
|
375
|
+
"tags": ["generate", "enoent", "mkdir", "field-report", "websec-validator", "B2"],
|
|
376
|
+
"related_bugs": [],
|
|
377
|
+
"occurrences": 1,
|
|
378
|
+
"last_seen": "2026-06-02T15:41:53Z"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "bug-025",
|
|
382
|
+
"timestamp": "2026-06-02T19:16:48Z",
|
|
383
|
+
"error_message": "docguard init --fix drops into the interactive doc-picker (\"Which canonical docs does your project need?\") and hangs/fails with no TTY — contradicts its documented \"Auto-create missing files from templates\"",
|
|
384
|
+
"file": "cli/commands/init.mjs",
|
|
385
|
+
"root_cause": "--fix was a dead flag: documented (docguard.mjs:111) and set (docguard.mjs:186) but consumed nowhere. init.mjs never read flags.fix, so init ran its normal path; with no skeleton/skipPrompts/wizard/profile set it fell into the interactive askQuestion loop, which blocks/fails without a TTY (CI/agent use).",
|
|
386
|
+
"fix": "Wired flags.fix into init.mjs: shouldRunGenerate() returns false on --fix (skip the interactive scan-and-propose preview) and the non-interactive branch fires on flags.fix (use profile defaults). The create-loop already skips existing files, so --fix only fills gaps. Added a regression test asserting init --fix creates docs without entering the picker.",
|
|
387
|
+
"tags": ["init", "cli-flag", "dead-flag", "headless", "field-report", "websec-validator", "B3"],
|
|
388
|
+
"related_bugs": [],
|
|
389
|
+
"occurrences": 1,
|
|
390
|
+
"last_seen": "2026-06-02T19:16:48Z"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"id": "bug-026",
|
|
394
|
+
"timestamp": "2026-06-02T19:16:48Z",
|
|
395
|
+
"error_message": "docguard generate --plan (a read-only preview) has side effects — scaffolds .agent/skills, .agent/commands, .specify/ and runs an npm/pip step",
|
|
396
|
+
"file": "cli/docguard.mjs",
|
|
397
|
+
"root_cause": "The dispatcher runs ensureSkills() on any command that is not setup/init and not headless. headless = jsonMode||write||checkOnly||changedOnly||quiet, which excluded a bare --plan — so generate --plan triggered ensureSkills' writes. Inconsistent: generate --plan --write was already headless (flags.write) and did NOT scaffold.",
|
|
398
|
+
"fix": "Added flags.plan to the headless set in docguard.mjs so generate --plan suppresses the banner AND ensureSkills, matching --plan --write. Verified by a before/after probe: a non-headless generate creates .agent (YES), generate --plan does not (no). Added a regression test asserting --plan leaves .agent/ and .specify/ untouched.",
|
|
399
|
+
"tags": ["generate", "plan", "side-effects", "ensure-skills", "least-surprise", "field-report", "websec-validator", "B4"],
|
|
400
|
+
"related_bugs": [],
|
|
401
|
+
"occurrences": 1,
|
|
402
|
+
"last_seen": "2026-06-02T19:16:48Z"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "bug-027",
|
|
406
|
+
"timestamp": "2026-06-02T19:30:13Z",
|
|
407
|
+
"error_message": "project-type detection (generate --plan) misclassifies a Click CLI as 'Express, Flask' — it ingests tests/fixtures/*/package.json + requirements.txt because ignored dirs are not honored",
|
|
408
|
+
"file": "cli/scanners/project-type.mjs",
|
|
409
|
+
"root_cause": "findManifests pruned only a hardcoded IGNORE_DIRS set + dot-dirs and never honored config.ignore/.docguardignore. detectEcosystems received config but marked it _config and never passed it to findManifests, so fixture/vendored manifests in user-ignored dirs polluted the detected frameworks/profile. This is the buildMemoryPlan/--plan path (generate's full path uses its own detectStack).",
|
|
410
|
+
"fix": "Threaded the already-arriving config into findManifests and pruned dirs + skipped manifest files via shouldIgnore(relPosix(root, child), config); detectEcosystems now passes config through (was _config). Depends on bug-023's trailing-slash glob fix so a 'tests/' pattern matches. Regression test in tests/project-type.test.mjs uses a control (fixtures pollute without ignore) + the fix (tests/ ignore drops Express/Flask, keeps the real Click).",
|
|
411
|
+
"tags": ["project-type", "ignore", "classification", "field-report", "websec-validator", "B1b"],
|
|
412
|
+
"related_bugs": ["bug-023"],
|
|
413
|
+
"occurrences": 1,
|
|
414
|
+
"last_seen": "2026-06-02T19:30:13Z"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"id": "bug-028",
|
|
418
|
+
"timestamp": "2026-06-03T01:32:47Z",
|
|
419
|
+
"error_message": "A hand-corrected source=code section (scanner mislabeled it) is flagged stale forever, and the suggested remedy `sync --write` reverts the correction — no override existed",
|
|
420
|
+
"file": "cli/validators/generated-staleness.mjs",
|
|
421
|
+
"root_cause": "Generated-Staleness compared every source=code section against scanner output with no per-section opt-out (quality checks had one; code sections didn't), and sync --write unconditionally replaced source=code sections. So a legitimately hand-maintained section had no escape from the stale-forever / auto-revert trap.",
|
|
422
|
+
"fix": "Honor a `pinned` attribute on the section marker (<!-- docguard:section id=… source=code pinned=\"reason\" -->), already parsed by parseSections. generated-staleness exempts pinned sections (counted as a pass, mirroring the docguard:quality opt-out) and appends a discoverability hint to the stale warning; sync.mjs skips pinned sections. Tests in generated-staleness.test.mjs (control+fix) and sync.test.mjs (don't-revert).",
|
|
423
|
+
"tags": ["generated-staleness", "sync", "marker", "false-positive", "field-report", "websec-validator", "B5"],
|
|
424
|
+
"related_bugs": [],
|
|
425
|
+
"occurrences": 1,
|
|
426
|
+
"last_seen": "2026-06-03T01:32:47Z"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"id": "bug-029",
|
|
430
|
+
"timestamp": "2026-06-03T01:32:47Z",
|
|
431
|
+
"error_message": "docguard <command> --help printed the global help, not the command's own flags — flag discovery (generate --plan --write, init --skeleton/--wizard/--with) was impossible from --help",
|
|
432
|
+
"file": "cli/docguard.mjs",
|
|
433
|
+
"root_cause": "v0.24 made <command> --help non-destructive but routed it to printHelp() (global) because there was no per-command help; the global help lists commands but not each command's full flag set + examples.",
|
|
434
|
+
"fix": "Added a COMMAND_HELP map (init/generate/guard/score/diff/sync/fix/trace/upgrade/ci/memory) + printCommandHelp(command); the --help dispatch now calls it. Unmapped commands fall back to global help. Flags derived from the vetted global help to avoid documenting non-existent flags. Tests assert generate/init --help show their flags and watch --help falls back without starting the watcher.",
|
|
435
|
+
"tags": ["cli", "help", "ux", "field-report", "websec-validator", "B6"],
|
|
436
|
+
"related_bugs": [],
|
|
437
|
+
"occurrences": 1,
|
|
438
|
+
"last_seen": "2026-06-03T01:32:47Z"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"id": "bug-030",
|
|
442
|
+
"timestamp": "2026-06-03T01:32:47Z",
|
|
443
|
+
"error_message": "generate emits docs-canonical/API-REFERENCE.md, then guard warns it 'exists but is not in your requiredFiles config' — the generator's own output is flagged orphaned",
|
|
444
|
+
"file": "cli/commands/generate.mjs",
|
|
445
|
+
"root_cause": "generate's standard doc set is a superset of the profile's requiredFiles.canonical, and generate never updated requiredFiles, so the traceability orphan-check (traceability.mjs:133) flagged docs the generator just created.",
|
|
446
|
+
"fix": "Added registerGeneratedCanonicalDocs(): after writing, generate merges the canonical docs it emitted into .docguard.json requiredFiles.canonical (additive only, only docs-canonical/*.md that exist on disk, only when a config exists, idempotent). Wired into both the full generate path and the --plan --write path. Test asserts requiredFiles.canonical gains ARCHITECTURE after generate --plan --write.",
|
|
447
|
+
"tags": ["generate", "traceability", "requiredFiles", "consistency", "field-report", "websec-validator", "B7"],
|
|
448
|
+
"related_bugs": [],
|
|
449
|
+
"occurrences": 1,
|
|
450
|
+
"last_seen": "2026-06-03T01:32:47Z"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"id": "bug-031",
|
|
454
|
+
"timestamp": "2026-06-03T03:44:15Z",
|
|
455
|
+
"error_message": "generate --plan mislabels a security/scanner tool's own pattern-strings as real surface (websec-validator flagged as using express/boto3/jwt because its recon code mentions them)",
|
|
456
|
+
"file": "cli/commands/generate.mjs",
|
|
457
|
+
"root_cause": "The route/SDK/auth source scanners match pattern-strings; for a cli/library/tool whose source CONTAINS those strings as detection patterns, the auto-extracted surface is the tool's own code, not real usage. No confidence signal existed to warn the user.",
|
|
458
|
+
"fix": "F1 (chosen scope: flag, don't suppress — suppression would risk a false-green). Added surfaceConfidence(kind): web kinds (webapp/api/service) = 'normal', everything else = 'low'. generate --plan --format json now emits surface.confidence; the text output prints a 'Low-confidence surface — verify, pin with pinned=...' advisory when a non-web kind has web surface. Guard detection unchanged. Test asserts cli→low, api→normal.",
|
|
459
|
+
"tags": ["generate", "scanner-tool", "false-positive", "confidence", "field-report", "websec-validator", "F1"],
|
|
460
|
+
"related_bugs": ["bug-023", "bug-028"],
|
|
461
|
+
"occurrences": 1,
|
|
462
|
+
"last_seen": "2026-06-03T03:44:15Z"
|
|
463
|
+
}
|
|
464
|
+
]
|
|
465
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Cerebrum — docguard-cli
|
|
2
|
+
|
|
3
|
+
> OpenWolf learning memory for **docguard-cli** — the enforcement tool for Canonical-Driven Development (CDD). Audits, generates, and guards project documentation.
|
|
4
|
+
> Last updated: 2026-06-02
|
|
5
|
+
|
|
6
|
+
## User Preferences
|
|
7
|
+
|
|
8
|
+
- On field/bug reports, Ricardo prefers **"triage & verify first"** over jumping to fixes — confirm each item against current code (reproduce where possible) and explicitly challenge the report's own stated root-cause before writing any fix. (Chosen on the websec-validator field report, 2026-06-02.)
|
|
9
|
+
|
|
10
|
+
## Key Learnings
|
|
11
|
+
|
|
12
|
+
- **Ignore wiring map (as of fcc7264):** all `shared-ignore` consumers — incl. `routes.mjs:90` and `todo-tracking.mjs:307,383` — call `shouldIgnore`. `project-type.mjs` did NOT until the B1b fix (2026-06-02): its `walk()` in `findManifests` now honors config.ignore (prunes dirs + skips manifest files via shouldIgnore). It detects frameworks from **dependency manifests** (`has(deps,'express'/'flask')`), so before the fix it ingested fixture `package.json`/`requirements.txt`. Two different mechanisms: glob filtering on results vs. `DEFAULT_IGNORE_DIRS` (bare dir-name Set) during walks.
|
|
13
|
+
- **`globToRegex` (shared-ignore.mjs:115) silently mishandles trailing-slash dir patterns.** Verified by execution: `buildIgnoreFilter(['tests/'])('tests/fixtures/x.js')` → `false`; `['tests']` and `['tests/**']` → `true`. Gitignore-style `dir/` (the natural form) matches nothing. This makes ignore look wired-but-broken across every consumer. (Fixed 2026-06-02 by stripping the trailing slash.)
|
|
14
|
+
- **The dispatcher (docguard.mjs) installs DocGuard's own agent tooling as a side effect.** `ensureSkills()` runs on every command except `setup`/`init` and except when `headless` (= jsonMode||write||checkOnly||changedOnly||quiet||plan after the B4 fix). It writes `.agent/skills` + `.agent/commands` and can spawn the `specify` CLI (→ `.specify/` + pip/npm). So read-shaped commands must be added to the `headless` set to stay side-effect-free. `headless` is consumed in exactly two places: the banner and this ensureSkills gate.
|
|
15
|
+
|
|
16
|
+
## Do-Not-Repeat
|
|
17
|
+
|
|
18
|
+
- **2026-06-02** — Don't trust a bug report's stated root cause. The websec B1 report blamed "scanners/validators skip the ignore file"; the real defect was the trailing-slash glob (above). Fixing per the report ("centralize ignore handling") would have changed nothing AND left a false-green — the exact failure mode this tool exists to prevent.
|
|
19
|
+
- **2026-06-02** — Don't assume a documented CLI flag is wired. `--fix` is documented (`docguard.mjs:111` "Auto-create missing files from templates") and set (`:186`) but read **nowhere** — `init.mjs` never consumes `flags.fix`. `grep` the flag's *consumption*, not just its declaration.
|
|
20
|
+
|
|
21
|
+
## Decision Log
|
|
22
|
+
|
|
23
|
+
- **2026-06-02** — Triage-only pass on the websec-validator field report (no code changed, user's choice). Outcome that justified it: B1's reported root-cause was wrong (glob bug, not wiring), B4 is real-on-main via the dispatcher's `ensureSkills` (not the `--plan` code), B6 is partly-fixed/deferred-by-design. Full verified fix-list lives in the cross-session memory `websec-field-feedback-triage.md`.
|
|
24
|
+
- **2026-06-03** — F1 scope: **flag, don't suppress.** For scanner/tool false-positives, generate marks auto-extracted surface 'low' confidence for non-web kinds (cli/library/unknown) but never removes it from guard — suppressing a real surface would be a false-green, the failure mode this tool exists to prevent. User chose this over require-import (which risks false-negatives).
|
|
25
|
+
- **2026-06-03** — F3 scope: added `cli`/`library` **profiles** (non-web required sets) as the contained fix for the web-app-centric doc model. Deliberately did NOT build a bespoke `CLI-REFERENCE` doc *type* (template + documentTypes registry + TRACE_MAP + memory-plan + writer = 5+ files) — that's a separate larger feature. Until then `library` reuses API-REFERENCE as the module-API doc.
|
|
26
|
+
- **2026-06-03** — Pattern for non-trivial validator tests: provoke the deterministic always-emitted section (`tech-stack` in ARCHITECTURE, `memory-plan.mjs:243`) and assert with a **control** (unpinned→stale) + **fix** (pinned→exempt). Same control discipline used for B4 (.agent created by full generate, not by --plan) and F1 (cli→low, api→normal). Keeps tests non-vacuous.
|