docguard-cli 0.27.0__tar.gz → 0.29.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.
Files changed (443) hide show
  1. docguard_cli-0.29.0/.agent/commands/docguard.fix.md +84 -0
  2. docguard_cli-0.29.0/.agent/commands/docguard.guard.md +67 -0
  3. {docguard_cli-0.27.0/templates → docguard_cli-0.29.0/.agent}/commands/docguard.review.md +25 -8
  4. {docguard_cli-0.27.0/extensions/spec-kit-docguard → docguard_cli-0.29.0/.agent}/skills/docguard-fix/SKILL.md +2 -2
  5. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/docguard-guard/SKILL.md +2 -2
  6. {docguard_cli-0.27.0/extensions/spec-kit-docguard → docguard_cli-0.29.0/.agent}/skills/docguard-review/SKILL.md +2 -2
  7. {docguard_cli-0.27.0/extensions/spec-kit-docguard → docguard_cli-0.29.0/.agent}/skills/docguard-score/SKILL.md +2 -2
  8. {docguard_cli-0.27.0/extensions/spec-kit-docguard → docguard_cli-0.29.0/.agent}/skills/docguard-sync/SKILL.md +2 -2
  9. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.docguard.json +1 -1
  10. docguard_cli-0.29.0/.github/PULL_REQUEST_TEMPLATE.md +21 -0
  11. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/anatomy.md +104 -26
  12. docguard_cli-0.29.0/.wolf/buglog.json +3144 -0
  13. docguard_cli-0.29.0/.wolf/cerebrum.md +72 -0
  14. docguard_cli-0.29.0/.wolf/hooks/_session.json +362 -0
  15. docguard_cli-0.29.0/.wolf/hooks/_wrap_up_nudged +1 -0
  16. docguard_cli-0.29.0/.wolf/memory.md +762 -0
  17. docguard_cli-0.29.0/.wolf/token-ledger.json +12447 -0
  18. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/AGENTS.md +21 -1
  19. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/CHANGELOG.md +237 -0
  20. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/CONTRIBUTING.md +24 -4
  21. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/DRIFT-LOG.md +1 -0
  22. docguard_cli-0.27.0/README.md → docguard_cli-0.29.0/PKG-INFO +89 -31
  23. docguard_cli-0.29.0/README.es.md +102 -0
  24. docguard_cli-0.27.0/PKG-INFO → docguard_cli-0.29.0/README.md +65 -55
  25. docguard_cli-0.29.0/README.pt-BR.md +101 -0
  26. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/ROADMAP.md +11 -6
  27. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/STANDARD.md +20 -10
  28. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/action.yml +211 -0
  29. docguard_cli-0.29.0/cli/commands/agents.mjs +370 -0
  30. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/diff.mjs +6 -15
  31. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/explain.mjs +8 -6
  32. docguard_cli-0.29.0/cli/commands/generate.mjs +564 -0
  33. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/guard.mjs +149 -15
  34. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/init.mjs +23 -1
  35. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/llms.mjs +67 -5
  36. docguard_cli-0.29.0/cli/commands/mcp.mjs +263 -0
  37. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/memory.mjs +115 -0
  38. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/score.mjs +76 -12
  39. docguard_cli-0.29.0/cli/commands/sync-tests.mjs +272 -0
  40. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/sync.mjs +6 -0
  41. docguard_cli-0.29.0/cli/commands/verify.mjs +67 -0
  42. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/docguard.mjs +62 -5
  43. docguard_cli-0.29.0/cli/findings.mjs +693 -0
  44. docguard_cli-0.29.0/cli/scanners/agent-readability.mjs +202 -0
  45. docguard_cli-0.29.0/cli/scanners/semantic-claims.mjs +160 -0
  46. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/speckit.mjs +98 -28
  47. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/shared-ignore.mjs +148 -16
  48. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/shared.mjs +45 -1
  49. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/api-surface.mjs +182 -29
  50. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/architecture.mjs +91 -56
  51. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/canonical-sync.mjs +59 -28
  52. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/changelog.mjs +41 -17
  53. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/cross-reference.mjs +28 -11
  54. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/doc-quality.mjs +78 -44
  55. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/docs-coverage.mjs +90 -63
  56. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/docs-diff.mjs +63 -64
  57. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/docs-sync.mjs +48 -33
  58. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/drift.mjs +40 -34
  59. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/environment.mjs +67 -27
  60. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/freshness.mjs +12 -5
  61. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/generated-staleness.mjs +26 -10
  62. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/metadata-sync.mjs +28 -25
  63. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/metrics-consistency.mjs +89 -47
  64. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/schema-sync.mjs +37 -32
  65. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/security.mjs +7 -20
  66. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/spec-kit.mjs +3 -0
  67. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/structure.mjs +58 -23
  68. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/surface-sync.mjs +34 -15
  69. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/test-spec.mjs +87 -29
  70. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/todo-tracking.mjs +83 -74
  71. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validators/traceability.mjs +67 -39
  72. docguard_cli-0.29.0/cli/writers/doc-generators.mjs +853 -0
  73. docguard_cli-0.29.0/cli/writers/generate-io.mjs +142 -0
  74. docguard_cli-0.29.0/cli/writers/sarif.mjs +129 -0
  75. docguard_cli-0.29.0/commands/docguard.fix.md +84 -0
  76. docguard_cli-0.29.0/commands/docguard.guard.md +67 -0
  77. docguard_cli-0.29.0/commands/docguard.review.md +71 -0
  78. docguard_cli-0.29.0/docs/ai-integration.md +178 -0
  79. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/commands.md +49 -3
  80. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/configuration.md +38 -0
  81. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/faq.md +15 -0
  82. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/ARCHITECTURE.md +6 -5
  83. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/DATA-MODEL.md +6 -3
  84. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/ENVIRONMENT.md +1 -1
  85. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/REQUIREMENTS.md +1 -0
  86. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/SECURITY.md +1 -1
  87. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/SURFACE-AUDIT.md +9 -0
  88. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/TEST-SPEC.md +1 -1
  89. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/extension.yml +1 -1
  90. {docguard_cli-0.27.0/.agent → docguard_cli-0.29.0/extensions/spec-kit-docguard}/skills/docguard-fix/SKILL.md +2 -2
  91. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/skills/docguard-guard/SKILL.md +2 -2
  92. {docguard_cli-0.27.0/.agent → docguard_cli-0.29.0/extensions/spec-kit-docguard}/skills/docguard-review/SKILL.md +2 -2
  93. {docguard_cli-0.27.0/.agent → docguard_cli-0.29.0/extensions/spec-kit-docguard}/skills/docguard-score/SKILL.md +2 -2
  94. {docguard_cli-0.27.0/.agent → docguard_cli-0.29.0/extensions/spec-kit-docguard}/skills/docguard-sync/SKILL.md +2 -2
  95. docguard_cli-0.29.0/llms-full.txt +2049 -0
  96. docguard_cli-0.29.0/llms.txt +23 -0
  97. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/package-lock.json +2 -2
  98. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/package.json +1 -1
  99. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/pyproject.toml +2 -2
  100. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/schemas/docguard-config.schema.json +17 -0
  101. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/ENVIRONMENT.md.template +5 -0
  102. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/REQUIREMENTS.md.template +2 -0
  103. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/SECURITY.md.template +6 -1
  104. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/TEST-SPEC.md.template +5 -0
  105. docguard_cli-0.29.0/templates/commands/docguard.fix.md +84 -0
  106. docguard_cli-0.29.0/templates/commands/docguard.guard.md +67 -0
  107. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/commands/docguard.init.md +23 -11
  108. docguard_cli-0.29.0/templates/commands/docguard.review.md +71 -0
  109. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/commands/docguard.update.md +14 -4
  110. docguard_cli-0.29.0/tests/agent-readability.test.mjs +76 -0
  111. docguard_cli-0.29.0/tests/agents-sync.test.mjs +100 -0
  112. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/changelog.test.mjs +3 -0
  113. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/commands.test.mjs +19 -12
  114. docguard_cli-0.29.0/tests/field-report-3-deferred.test.mjs +240 -0
  115. docguard_cli-0.29.0/tests/llms-full-pack.test.mjs +93 -0
  116. docguard_cli-0.29.0/tests/mcp.test.mjs +212 -0
  117. docguard_cli-0.29.0/tests/metrics-consistency.test.mjs +301 -0
  118. docguard_cli-0.29.0/tests/sarif.test.mjs +117 -0
  119. docguard_cli-0.27.0/.agent/commands/docguard.fix.md +0 -81
  120. docguard_cli-0.27.0/.agent/commands/docguard.guard.md +0 -61
  121. docguard_cli-0.27.0/.agent/commands/docguard.review.md +0 -53
  122. docguard_cli-0.27.0/.wolf/buglog.json +0 -1450
  123. docguard_cli-0.27.0/.wolf/cerebrum.md +0 -47
  124. docguard_cli-0.27.0/.wolf/hooks/_session.json +0 -18
  125. docguard_cli-0.27.0/.wolf/hooks/_wrap_up_nudged +0 -1
  126. docguard_cli-0.27.0/.wolf/memory.md +0 -354
  127. docguard_cli-0.27.0/.wolf/token-ledger.json +0 -3452
  128. docguard_cli-0.27.0/cli/commands/agents.mjs +0 -221
  129. docguard_cli-0.27.0/cli/commands/generate.mjs +0 -1551
  130. docguard_cli-0.27.0/cli/findings.mjs +0 -194
  131. docguard_cli-0.27.0/commands/docguard.fix.md +0 -81
  132. docguard_cli-0.27.0/commands/docguard.guard.md +0 -61
  133. docguard_cli-0.27.0/commands/docguard.review.md +0 -53
  134. docguard_cli-0.27.0/docs/ai-integration.md +0 -179
  135. docguard_cli-0.27.0/pr_description.md +0 -16
  136. docguard_cli-0.27.0/templates/commands/docguard.fix.md +0 -61
  137. docguard_cli-0.27.0/templates/commands/docguard.guard.md +0 -53
  138. docguard_cli-0.27.0/test-draft.js +0 -20
  139. docguard_cli-0.27.0/test-metrics.js +0 -2
  140. docguard_cli-0.27.0/tests/metrics-consistency.test.mjs +0 -172
  141. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/docguard.score.md +0 -0
  142. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.analyze.md +0 -0
  143. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.checklist.md +0 -0
  144. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.clarify.md +0 -0
  145. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.constitution.md +0 -0
  146. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.implement.md +0 -0
  147. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.plan.md +0 -0
  148. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.specify.md +0 -0
  149. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.tasks.md +0 -0
  150. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/commands/speckit.taskstoissues.md +0 -0
  151. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-analyze/SKILL.md +0 -0
  152. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-checklist/SKILL.md +0 -0
  153. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-clarify/SKILL.md +0 -0
  154. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-constitution/SKILL.md +0 -0
  155. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-implement/SKILL.md +0 -0
  156. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-plan/SKILL.md +0 -0
  157. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-specify/SKILL.md +0 -0
  158. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-tasks/SKILL.md +0 -0
  159. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.agent/skills/speckit-taskstoissues/SKILL.md +0 -0
  160. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.claude/rules/openwolf.md +0 -0
  161. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.claude/settings.json +0 -0
  162. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.docguardignore +0 -0
  163. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  164. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/ISSUE_TEMPLATE/docguard-feedback.md +0 -0
  165. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  166. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/dependabot.yml +0 -0
  167. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/scripts/speckit-submission.py +0 -0
  168. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/workflows/ci.yml +0 -0
  169. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/workflows/release.yml +0 -0
  170. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/workflows/supply-chain.yml +0 -0
  171. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.github/workflows/sync-speckit-catalog.yml +0 -0
  172. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.gitignore +0 -0
  173. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.jules/bolt.md +0 -0
  174. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.jules/palette.md +0 -0
  175. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.jules/sentinel.md +0 -0
  176. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.jules-setup.sh +0 -0
  177. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.npmignore +0 -0
  178. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.npmrc +0 -0
  179. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/extensions/.cache/catalog-ebf165086500aab1-metadata.json +0 -0
  180. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/extensions/.cache/catalog-ebf165086500aab1.json +0 -0
  181. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/extensions/.cache/catalog-metadata.json +0 -0
  182. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/extensions/.cache/catalog.json +0 -0
  183. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/init-options.json +0 -0
  184. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/memory/constitution.md +0 -0
  185. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/scripts/bash/check-prerequisites.sh +0 -0
  186. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/scripts/bash/common.sh +0 -0
  187. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/scripts/bash/create-new-feature.sh +0 -0
  188. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/scripts/bash/setup-plan.sh +0 -0
  189. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/scripts/bash/update-agent-context.sh +0 -0
  190. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/agent-file-template.md +0 -0
  191. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/checklist-template.md +0 -0
  192. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/constitution-template.md +0 -0
  193. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/plan-template.md +0 -0
  194. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/spec-template.md +0 -0
  195. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.specify/templates/tasks-template.md +0 -0
  196. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/OPENWOLF.md +0 -0
  197. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/config.json +0 -0
  198. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/cron-manifest.json +0 -0
  199. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/cron-state.json +0 -0
  200. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/daemon.log +0 -0
  201. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/designqc-report.json +0 -0
  202. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/package.json +0 -0
  203. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/post-read.js +0 -0
  204. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/post-write.js +0 -0
  205. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/pre-read.js +0 -0
  206. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/pre-write.js +0 -0
  207. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/session-start.js +0 -0
  208. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/shared.js +0 -0
  209. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/hooks/stop.js +0 -0
  210. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/identity.md +0 -0
  211. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/reframe-frameworks.md +0 -0
  212. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/.wolf/suggestions.json +0 -0
  213. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/CLAUDE.md +0 -0
  214. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/CODE_OF_CONDUCT.md +0 -0
  215. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/COMPARISONS.md +0 -0
  216. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/LICENSE +0 -0
  217. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/PHILOSOPHY.md +0 -0
  218. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/SECURITY.md +0 -0
  219. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/SUPPLY-CHAIN-AUDIT.md +0 -0
  220. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/SUPPORT.md +0 -0
  221. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/assets/bin/docguard +0 -0
  222. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/assets/demo.gif +0 -0
  223. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/assets/demo.tape +0 -0
  224. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/assets/docguard-logo.png +0 -0
  225. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/agent.mjs +0 -0
  226. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/badge.mjs +0 -0
  227. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/ci.mjs +0 -0
  228. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/demo.mjs +0 -0
  229. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/diagnose.mjs +0 -0
  230. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/feedback.mjs +0 -0
  231. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/fix.mjs +0 -0
  232. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/hooks.mjs +0 -0
  233. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/impact.mjs +0 -0
  234. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/publish.mjs +0 -0
  235. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/setup.mjs +0 -0
  236. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/trace.mjs +0 -0
  237. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/upgrade.mjs +0 -0
  238. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/commands/watch.mjs +0 -0
  239. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/config.mjs +0 -0
  240. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/ensure-skills.mjs +0 -0
  241. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/api-doc.mjs +0 -0
  242. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/cdk.mjs +0 -0
  243. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/doc-tools.mjs +0 -0
  244. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/frontend.mjs +0 -0
  245. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/iac.mjs +0 -0
  246. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/integrations.mjs +0 -0
  247. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/inventory.mjs +0 -0
  248. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/js-ast.mjs +0 -0
  249. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/memory-plan.mjs +0 -0
  250. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/project-type.mjs +0 -0
  251. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/py-ast.mjs +0 -0
  252. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/routes.mjs +0 -0
  253. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/scanners/schemas.mjs +0 -0
  254. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/shared-git.mjs +0 -0
  255. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/shared-source.mjs +0 -0
  256. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/shared-trace-patterns.mjs +0 -0
  257. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/validator-markers.mjs +0 -0
  258. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/writers/api-reference.mjs +0 -0
  259. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/writers/fix-memory.mjs +0 -0
  260. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/writers/mechanical.mjs +0 -0
  261. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/cli/writers/sections.mjs +0 -0
  262. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/commands/docguard.score.md +0 -0
  263. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/configs/fastify.json +0 -0
  264. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/configs/generic.json +0 -0
  265. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/configs/nextjs.json +0 -0
  266. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/configs/python.json +0 -0
  267. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docguard_cli/__init__.py +0 -0
  268. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docguard_cli/wrapper.py +0 -0
  269. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/doc-sections.md +0 -0
  270. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/installation.md +0 -0
  271. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/profiles.md +0 -0
  272. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs/quickstart.md +0 -0
  273. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-canonical/CI-RECIPES.md +0 -0
  274. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/docs-implementation/MIGRATION-v0.20.md +0 -0
  275. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/01-express-api/README.md +0 -0
  276. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/01-express-api/package.json +0 -0
  277. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/01-express-api/server.js +0 -0
  278. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/02-python-flask/README.md +0 -0
  279. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/02-python-flask/app.py +0 -0
  280. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/02-python-flask/docs-canonical/ARCHITECTURE.md +0 -0
  281. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/02-python-flask/requirements.txt +0 -0
  282. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/CHANGELOG.md +0 -0
  283. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/README.md +0 -0
  284. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/docs-canonical/ARCHITECTURE.md +0 -0
  285. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/docs-canonical/TEST-SPEC.md +0 -0
  286. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/package.json +0 -0
  287. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/src/index.js +0 -0
  288. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/tasks.json +0 -0
  289. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/03-spec-kit-project/tests/basic.test.js +0 -0
  290. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/examples/README.md +0 -0
  291. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/LICENSE +0 -0
  292. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/README.md +0 -0
  293. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/diagnose.md +0 -0
  294. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/fix.md +0 -0
  295. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/generate.md +0 -0
  296. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/guard.md +0 -0
  297. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/init.md +0 -0
  298. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/score.md +0 -0
  299. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/sync.md +0 -0
  300. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/commands/trace.md +0 -0
  301. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/scripts/bash/common.sh +0 -0
  302. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/scripts/bash/docguard-check-docs.sh +0 -0
  303. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/scripts/bash/docguard-init-doc.sh +0 -0
  304. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/scripts/bash/docguard-suggest-fix.sh +0 -0
  305. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/templates/extensions.yml +0 -0
  306. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-autofix.yml +0 -0
  307. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/extensions/spec-kit-docguard/templates/github-workflows/docguard-guard.yml +0 -0
  308. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/001-fix-ignore-validators/plan.md +0 -0
  309. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/001-fix-ignore-validators/spec.md +0 -0
  310. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/001-fix-ignore-validators/tasks.md +0 -0
  311. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/002-fix-test-discovery/plan.md +0 -0
  312. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/002-fix-test-discovery/spec.md +0 -0
  313. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/002-fix-test-discovery/tasks.md +0 -0
  314. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/003-v011-false-positives/plan.md +0 -0
  315. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/003-v011-false-positives/spec.md +0 -0
  316. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/003-v011-false-positives/tasks.md +0 -0
  317. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/004-v020-env-var-false-negative/spec.md +0 -0
  318. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/specs/005-hugocross-next-bugs/spec.md +0 -0
  319. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/ADR.md.template +0 -0
  320. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/AGENTS.md.template +0 -0
  321. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/ARCHITECTURE.md.template +0 -0
  322. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/CHANGELOG.md.template +0 -0
  323. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/CURRENT-STATE.md.template +0 -0
  324. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/DATA-MODEL.md.template +0 -0
  325. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/DEPLOYMENT.md.template +0 -0
  326. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/DRIFT-LOG.md.template +0 -0
  327. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/KNOWN-GOTCHAS.md.template +0 -0
  328. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/ROADMAP.md.template +0 -0
  329. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/RUNBOOKS.md.template +0 -0
  330. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/TROUBLESHOOTING.md.template +0 -0
  331. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/VENDOR-BUGS.md.template +0 -0
  332. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/ci/github-actions.yml +0 -0
  333. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/.docguard.json +0 -0
  334. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/.env.example +0 -0
  335. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/AGENTS.md +0 -0
  336. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/CHANGELOG.md +0 -0
  337. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/DRIFT-LOG.md +0 -0
  338. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/README.md +0 -0
  339. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/API-REFERENCE.md +0 -0
  340. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/ARCHITECTURE.md +0 -0
  341. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/DATA-MODEL.md +0 -0
  342. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/ENVIRONMENT.md +0 -0
  343. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/SECURITY.md +0 -0
  344. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/docs-canonical/TEST-SPEC.md +0 -0
  345. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/package.json +0 -0
  346. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/src/api.mjs +0 -0
  347. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/src/notifier.mjs +0 -0
  348. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/src/scheduler.mjs +0 -0
  349. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/templates/demo-fixture/src/worker.mjs +0 -0
  350. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/agent.test.mjs +0 -0
  351. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/anchor-autofix.test.mjs +0 -0
  352. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/api-doc.test.mjs +0 -0
  353. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/api-surface.test.mjs +0 -0
  354. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/api-write.test.mjs +0 -0
  355. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/architecture.test.mjs +0 -0
  356. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/b7-node-env-symmetry.test.mjs +0 -0
  357. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/backup-failure.test.mjs +0 -0
  358. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/canonical-sync.test.mjs +0 -0
  359. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/cdk-detection.test.mjs +0 -0
  360. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/changed-only-scoping.test.mjs +0 -0
  361. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/changed-only.test.mjs +0 -0
  362. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/cross-reference.test.mjs +0 -0
  363. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/demo-command.test.mjs +0 -0
  364. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/doc-quality.test.mjs +0 -0
  365. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/doc-section-synonyms.test.mjs +0 -0
  366. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/docguardignore.test.mjs +0 -0
  367. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/docs-coverage.test.mjs +0 -0
  368. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/docs-diff.test.mjs +0 -0
  369. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/docs-sync.test.mjs +0 -0
  370. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/drift.test.mjs +0 -0
  371. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/ensure-skills-idempotent.test.mjs +0 -0
  372. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/env-schema-detection.test.mjs +0 -0
  373. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/environment.test.mjs +0 -0
  374. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/explain-coverage.test.mjs +0 -0
  375. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/field-report-2-cli.test.mjs +0 -0
  376. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/field-report-3.test.mjs +0 -0
  377. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/fix-memory.test.mjs +0 -0
  378. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/fix-suppression.test.mjs +0 -0
  379. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/fixture-projects.test.mjs +0 -0
  380. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/freshness.test.mjs +0 -0
  381. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/frontend-deep.test.mjs +0 -0
  382. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/frontend.test.mjs +0 -0
  383. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/generated-staleness.test.mjs +0 -0
  384. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/guard-classify.test.mjs +0 -0
  385. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/guard-no-throw.test.mjs +0 -0
  386. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/hooks.test.mjs +0 -0
  387. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/i18n.test.mjs +0 -0
  388. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/impact.test.mjs +0 -0
  389. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/init-smart-detection.test.mjs +0 -0
  390. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/integrations.test.mjs +0 -0
  391. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/inventory.test.mjs +0 -0
  392. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/js-ast.test.mjs +0 -0
  393. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/mechanical.test.mjs +0 -0
  394. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/memory-plan.test.mjs +0 -0
  395. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/metadata-sync.test.mjs +0 -0
  396. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/metrics-dedup.test.mjs +0 -0
  397. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/monorepo-scanning.test.mjs +0 -0
  398. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/multi-spec.test.mjs +0 -0
  399. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/npm-pack-smoke.test.mjs +0 -0
  400. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/openapi-parse-honesty.test.mjs +0 -0
  401. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/patch-0.11.2.test.mjs +0 -0
  402. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/plan-disk-cache.test.mjs +0 -0
  403. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/profile-flag.test.mjs +0 -0
  404. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/project-type.test.mjs +0 -0
  405. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/py-ast.test.mjs +0 -0
  406. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/regenerate-section.test.mjs +0 -0
  407. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/routes-express-mounts.test.mjs +0 -0
  408. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/routes-fastify.test.mjs +0 -0
  409. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/routes-multilang.test.mjs +0 -0
  410. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/routes-nextjs-app-router.test.mjs +0 -0
  411. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/schema-sync.test.mjs +0 -0
  412. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/schemas-multilang.test.mjs +0 -0
  413. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/schemas.test.mjs +0 -0
  414. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/scoping-extended.test.mjs +0 -0
  415. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/score-suggestions.test.mjs +0 -0
  416. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/section-na-markers.test.mjs +0 -0
  417. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/sections.test.mjs +0 -0
  418. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/security-init-injection.test.mjs +0 -0
  419. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/security.test.mjs +0 -0
  420. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/severity.test.mjs +0 -0
  421. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/shared-git.test.mjs +0 -0
  422. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/shared-source.test.mjs +0 -0
  423. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/speckit-bugfix.test.mjs +0 -0
  424. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/starter-scaffold.test.mjs +0 -0
  425. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/stress-test.test.mjs +0 -0
  426. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/structure.test.mjs +0 -0
  427. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/surface-sync.test.mjs +0 -0
  428. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/sweep-nudge.test.mjs +0 -0
  429. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/sync-since.test.mjs +0 -0
  430. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/sync.test.mjs +0 -0
  431. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/test-spec.test.mjs +0 -0
  432. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/todo-tracking.test.mjs +0 -0
  433. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/trace-multilang.test.mjs +0 -0
  434. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/trace-reverse.test.mjs +0 -0
  435. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/traceability.test.mjs +0 -0
  436. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/upgrade-pr-e2e.test.mjs +0 -0
  437. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/upgrade-pr.test.mjs +0 -0
  438. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/upgrade.test.mjs +0 -0
  439. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/v020-consolidation.test.mjs +0 -0
  440. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/validator-markers.test.mjs +0 -0
  441. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/validator-naming.test.mjs +0 -0
  442. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/version-pin.test.mjs +0 -0
  443. {docguard_cli-0.27.0 → docguard_cli-0.29.0}/tests/whats-new.test.mjs +0 -0
@@ -0,0 +1,84 @@
1
+ ---
2
+ description: Find and fix all CDD documentation issues using AI-driven research
3
+ handoffs:
4
+ - label: Verify Fixes
5
+ agent: docguard.guard
6
+ prompt: Run guard to verify all fixes pass
7
+ - label: Check Score
8
+ agent: docguard.score
9
+ prompt: Show score improvement after fixes
10
+ ---
11
+
12
+ # /docguard.fix — Find and Fix CDD Documentation Issues
13
+
14
+ You are an AI agent responsible for maintaining documentation quality using DocGuard.
15
+
16
+ ## Step 1: Mechanical fixes first (no AI judgment needed)
17
+
18
+ ```bash
19
+ npx docguard-cli fix --write
20
+ ```
21
+
22
+ This deterministically applies the safe fix class: broken doc anchors, stale
23
+ counts bound to code collections, stale version references. Each fix is
24
+ provenance-checked and fail-closed — it never rewrites content whose source of
25
+ truth it cannot verify. Doing this first shrinks the issue list you research.
26
+
27
+ ## Step 2: Assess what remains
28
+
29
+ ```bash
30
+ npx docguard-cli diagnose
31
+ ```
32
+
33
+ Parse the output — issues are categorized with AI-ready fix prompts. Every
34
+ finding carries a stable code; run `npx docguard-cli explain <CODE>` whenever
35
+ the right remediation isn't obvious from the message.
36
+
37
+ If no issues remain, report "All CDD documentation is up to date" and stop.
38
+
39
+ ## Step 3: Fix each issue
40
+
41
+ | Issue Type | Action |
42
+ |-----------|--------|
43
+ | `missing-file` | Run `npx docguard-cli fix --doc <name>` to generate |
44
+ | `empty-doc` / `partial-doc` | Proceed to Step 4 for codebase research |
45
+ | `missing-config` | Create `.docguard.json` based on project type |
46
+ | `stale-doc` | Update `docguard:last-reviewed` date and content |
47
+ | `quality-issue` | Fix negation language, add missing sections |
48
+ | false positive | Suppress at the site: `// docguard:ignore <CODE>` (with a reason comment), and report it: `npx docguard-cli feedback` |
49
+
50
+ **Doc wrong vs code wrong:** a doc/code mismatch does not automatically mean
51
+ the doc is stale. Canonical docs are the spec — if the code drifted from a
52
+ documented decision, flag the code (or record the deviation with a
53
+ `// DRIFT: reason` comment + DRIFT-LOG.md entry) instead of silently rewriting
54
+ the doc to match the regression.
55
+
56
+ ## Step 4: Write real content
57
+
58
+ For each document that needs content:
59
+
60
+ ```bash
61
+ npx docguard-cli fix --doc <name>
62
+ ```
63
+
64
+ Where `<name>` is: `architecture`, `data-model`, `security`, `test-spec`, `environment`
65
+
66
+ Read the output carefully — it contains:
67
+ - **RESEARCH STEPS**: Exactly what files to read and commands to run
68
+ - **WRITE THE DOCUMENT**: Expected structure and content for each section
69
+
70
+ Execute the research steps, then write with REAL project content. No placeholders.
71
+ Never edit inside `<!-- docguard:section ... source=code -->` markers by hand —
72
+ those bodies are regenerated from code by `docguard sync --write`; pin them
73
+ (`pinned="reason"`) if a hand-maintained exception is genuinely needed.
74
+
75
+ ## Step 5: Verify (iterate up to 3 times)
76
+
77
+ ```bash
78
+ npx docguard-cli guard
79
+ npx docguard-cli score
80
+ ```
81
+
82
+ All checks should pass. If any fail, read the output and fix remaining issues.
83
+ Report the final CDD score, plus anything you suppressed (with reasons) or
84
+ reported as a false positive.
@@ -0,0 +1,67 @@
1
+ ---
2
+ description: Run DocGuard guard validation — check all validators and fix any issues
3
+ handoffs:
4
+ - label: Fix Issues
5
+ agent: docguard.fix
6
+ prompt: Fix all documentation issues found by guard
7
+ - label: Check Score
8
+ agent: docguard.score
9
+ prompt: Show CDD maturity score after fixes
10
+ ---
11
+
12
+ # /docguard.guard — Validate CDD Compliance
13
+
14
+ You are an AI agent enforcing Canonical-Driven Development (CDD) compliance using DocGuard.
15
+
16
+ ## Step 1: Run Guard (machine-readable)
17
+
18
+ ```bash
19
+ npx docguard-cli guard --format json
20
+ ```
21
+
22
+ Read the JSON contract — do not parse prose:
23
+
24
+ | Field | Meaning |
25
+ |-------|---------|
26
+ | `status` | `PASS` / `WARN` / `FAIL` (severity-aware; matches the exit code: 0/2/1) |
27
+ | `findings[]` | Structured issues: `{code, severity, confidence, message, location, suggestion}` |
28
+ | `nextStep` | The single suggested follow-up command (`null` on PASS) |
29
+ | `reportable[]` | Low-confidence findings (possible false positives) — verify before acting |
30
+ | `coverage` | Markdown tier map: `canonical / tracked / ignored / unclassified[]` |
31
+ | `semanticClaims.count` | Documented counts/limits/enums NOT yet verified against code |
32
+ | `validators[]` | Per-validator results, including `na` (nothing to validate ≠ pass) |
33
+
34
+ ## Step 2: Understand each finding before fixing
35
+
36
+ - Every finding carries a stable code (e.g. `STR001`, `ENV003`, `XRF002`). Run
37
+ `npx docguard-cli explain <CODE>` for its contract, cause, and remediation.
38
+ - `confidence: "low"` means the scanner itself is unsure — verify against the
39
+ code before changing anything, and report real false positives with
40
+ `npx docguard-cli feedback`.
41
+ - A finding's `suggestion` may include a ready-to-run `command` or an inline
42
+ `pragma`. Prefer those over inventing your own fix.
43
+
44
+ ## Step 3: Fix, suppress, or escalate
45
+
46
+ 1. **Mechanical issues first**: `npx docguard-cli fix --write` applies safe,
47
+ provenance-checked fixes (broken anchors, stale counts/versions). Never
48
+ hand-edit what the tool can fix deterministically.
49
+ 2. **Prose/content issues**: follow the `/docguard.fix` workflow (research →
50
+ write real content).
51
+ 3. **Genuine false positives**: suppress at the finding site with the code —
52
+ `// docguard:ignore <CODE>` on (or above) the flagged line — or mark a whole
53
+ validator not-applicable in a doc:
54
+ `<!-- docguard:validator <key> n/a — reason -->`. Always include the reason.
55
+ Never suppress to silence a real issue.
56
+ 4. If `semanticClaims.count > 0`, offer to run `npx docguard-cli verify --semantic`
57
+ and check each extracted claim against the code — a green guard asserts
58
+ structure, not the truth of documented numbers.
59
+
60
+ ## Step 4: Report
61
+
62
+ Show the user:
63
+ 1. `status` and pass/total, plus anything in `coverage.unclassified` (docs no
64
+ validator watches — suggest enrolling or ignoring them)
65
+ 2. Each finding fixed (by code), each suppressed (with reason), each reported
66
+ as a false positive
67
+ 3. Final score: `npx docguard-cli score`
@@ -22,8 +22,21 @@ npx docguard-cli score
22
22
  ```
23
23
 
24
24
  Read all output. Identify where documentation no longer matches the codebase.
25
+ Findings carry stable codes — `npx docguard-cli explain <CODE>` when unclear.
25
26
 
26
- ## Step 2: Semantic Analysis (Beyond CLI)
27
+ ## Step 2: Verify Documented Claims Against Code
28
+
29
+ ```bash
30
+ npx docguard-cli verify --semantic
31
+ ```
32
+
33
+ This extracts every checkable claim in the canonical docs — counts, limits,
34
+ rate numbers, retention windows, status enums — as a task list with the nearest
35
+ cited code path. **You perform each verification**: read the cited code, compare
36
+ the value, and report every mismatch with both values. This is the highest-value
37
+ review step; deterministic validators cannot judge these.
38
+
39
+ ## Step 3: Semantic Analysis (Beyond CLI)
27
40
 
28
41
  For each canonical doc, verify alignment with actual code:
29
42
 
@@ -35,16 +48,20 @@ For each canonical doc, verify alignment with actual code:
35
48
  | Test Coverage | Critical flows in TEST-SPEC.md have actual test files |
36
49
  | Terminology | Same concepts named consistently across all docs |
37
50
 
38
- ## Step 3: Update Stale Docs
51
+ ## Step 4: Update Stale Docs
39
52
 
40
53
  For each stale or drifted document:
41
- 1. Read the relevant source code files
42
- 2. Update the specific section that changed
43
- 3. Update the `docguard:last-reviewed` date to today
44
- 4. If the change is intentional drift, add an entry to DRIFT-LOG.md
45
- 5. Add entry to CHANGELOG.md under [Unreleased]
54
+ 1. **Decide which side is wrong first.** Canonical docs are the spec if the
55
+ code regressed from a documented decision, flag the code (or record a
56
+ `// DRIFT: reason` + DRIFT-LOG.md entry); don't rewrite the doc to match a
57
+ regression.
58
+ 2. Sections inside `<!-- docguard:section ... source=code -->` markers are
59
+ regenerated — run `npx docguard-cli sync --write` instead of editing by hand.
60
+ 3. For hand-maintained sections: read the relevant source, update the specific
61
+ section, refresh `docguard:last-reviewed` to today.
62
+ 4. Add entry to CHANGELOG.md under [Unreleased].
46
63
 
47
- ## Step 4: Verify
64
+ ## Step 5: Verify
48
65
 
49
66
  ```bash
50
67
  npx docguard-cli guard
@@ -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.27.0
9
+ version: 0.28.0
10
10
  source: extensions/spec-kit-docguard/skills/docguard-fix
11
11
  ---
12
- <!-- docguard:version: 0.27.0 -->
12
+ <!-- docguard:version: 0.28.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.27.0
10
+ version: 0.28.0
11
11
  source: extensions/spec-kit-docguard/skills/docguard-guard
12
12
  ---
13
- <!-- docguard:version: 0.27.0 -->
13
+ <!-- docguard:version: 0.28.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.27.0
9
+ version: 0.28.0
10
10
  source: extensions/spec-kit-docguard/skills/docguard-review
11
11
  ---
12
- <!-- docguard:version: 0.27.0 -->
12
+ <!-- docguard:version: 0.28.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.27.0
9
+ version: 0.28.0
10
10
  source: extensions/spec-kit-docguard/skills/docguard-score
11
11
  ---
12
- <!-- docguard:version: 0.27.0 -->
12
+ <!-- docguard:version: 0.28.0 -->
13
13
 
14
14
  # DocGuard Score Skill
15
15
 
@@ -4,10 +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.27.0
7
+ version: 0.28.0
8
8
  source: extensions/spec-kit-docguard/skills/docguard-sync
9
9
  ---
10
- <!-- docguard:version: 0.27.0 -->
10
+ <!-- docguard:version: 0.28.0 -->
11
11
 
12
12
  # DocGuard Sync Skill
13
13
 
@@ -49,7 +49,7 @@
49
49
  "extract": "basename-no-ext",
50
50
  "ignore": [
51
51
  "agents", "hooks", "ci", "badge", "llms", "publish",
52
- "setup", "impact"
52
+ "setup", "impact", "sync-tests"
53
53
  ],
54
54
  "docs": ["README.md"],
55
55
  "section": "Usage"
@@ -0,0 +1,21 @@
1
+ # Pull Request
2
+
3
+ ## What & why
4
+
5
+ <!-- One or two sentences: what changes, and what problem it solves. -->
6
+
7
+ ## CDD checklist (this repo guards itself)
8
+
9
+ - [ ] `npx docguard-cli guard` passes locally (`--changed-only` for quick runs)
10
+ - [ ] `npm test` passes (`node --test tests/*.test.mjs`)
11
+ - [ ] `CHANGELOG.md` has an entry under `[Unreleased]`
12
+ - [ ] Canonical docs updated if behavior changed (`docs-canonical/` — or a
13
+ `// DRIFT: reason` comment + `DRIFT-LOG.md` entry if the deviation is intentional)
14
+ - [ ] New validator findings carry a stable code registered in `cli/findings.mjs`
15
+ (see CONTRIBUTING — findings rule)
16
+ - [ ] Counts in prose (commands, validators) untouched or re-verified — guard's
17
+ `canonical-sync` will catch drift, but fixing it before CI is kinder
18
+
19
+ ## Screenshots / output
20
+
21
+ <!-- For CLI-visible changes: paste the relevant before/after terminal output. -->
@@ -1,7 +1,7 @@
1
1
  # anatomy.md
2
2
 
3
- > Auto-maintained by OpenWolf. Last scanned: 2026-06-19T19:17:33.183Z
4
- > Files: 589 tracked | Anatomy hits: 0 | Misses: 0
3
+ > Auto-maintained by OpenWolf. Last scanned: 2026-07-03T20:32:09.442Z
4
+ > Files: 649 tracked | Anatomy hits: 0 | Misses: 0
5
5
 
6
6
  ## ../../../../../../../tmp/
7
7
 
@@ -9,33 +9,35 @@
9
9
 
10
10
  ## ./
11
11
 
12
- - `.docguard.json` (~522 tok)
12
+ - `.docguard.json` (~526 tok)
13
13
  - `.docguardignore` — # Python distribution artifacts (~199 tok)
14
14
  - `.DS_Store` (~3818 tok)
15
15
  - `.gitignore` — Git ignore rules (~167 tok)
16
16
  - `.jules-setup.sh` — Google Jules Environment Startup Script (~429 tok)
17
17
  - `.npmignore` — Development (~76 tok)
18
18
  - `.npmrc` — Supply-Chain Security Hardening (~59 tok)
19
- - `action.yml` — CI: 'DocGuard — CDD Compliance' (~4322 tok)
20
- - `AGENTS.md` — AI Agent Instructions — DocGuard (~1275 tok)
21
- - `CHANGELOG.md` — Changelog (~40407 tok)
19
+ - `action.yml` — Declares fs (~7591 tok)
20
+ - `AGENTS.md` — AI Agent Instructions — DocGuard (~1582 tok)
21
+ - `CHANGELOG.md` — Changelog (~44379 tok)
22
22
  - `CLAUDE.md` — OpenWolf (~57 tok)
23
23
  - `CODE_OF_CONDUCT.md` — Contributor Covenant Code of Conduct (~532 tok)
24
24
  - `COMPARISONS.md` — Comparisons & Honest Limitations (~3053 tok)
25
- - `CONTRIBUTING.md` — Contributing to DocGuard (~1467 tok)
25
+ - `CONTRIBUTING.md` — Contributing to DocGuard (~1780 tok)
26
26
  - `docguard-cli-0.22.0.tgz` (~80828 tok)
27
27
  - `docguard-cli-0.23.0.tgz` (~81238 tok)
28
- - `DRIFT-LOG.md` — Drift Log (~583 tok)
28
+ - `DRIFT-LOG.md` — Drift Log (~711 tok)
29
29
  - `LICENSE` — Project license (~286 tok)
30
30
  - `package-lock.json` — npm lock file (~617 tok)
31
31
  - `package.json` — Node.js package manifest (~446 tok)
32
32
  - `PHILOSOPHY.md` — The Philosophy of Canonical-Driven Development (~1757 tok)
33
33
  - `pr_description.md` (~260 tok)
34
- - `pyproject.toml` — The enforcement tool for Canonical-Driven Development (CDD). Audit, generate, and guard your project (~351 tok)
35
- - `README.md` — Project documentation (~7411 tok)
36
- - `ROADMAP.md` — DocGuard Roadmap (~2193 tok)
34
+ - `pyproject.toml` — The enforcement tool for Canonical-Driven Development (CDD). Audit, generate, and guard your project (~358 tok)
35
+ - `README.es.md` — 🛡️ DocGuard (~1098 tok)
36
+ - `README.md` — Project documentation (~8061 tok)
37
+ - `README.pt-BR.md` — 🛡️ DocGuard (~1075 tok)
38
+ - `ROADMAP.md` — DocGuard Roadmap (~2432 tok)
37
39
  - `SECURITY.md` — Security Policy (~357 tok)
38
- - `STANDARD.md` — DocGuard Standard v0.1 (~6435 tok)
40
+ - `STANDARD.md` — DocGuard Standard v0.1 (~6533 tok)
39
41
  - `SUPPLY-CHAIN-AUDIT.md` — Supply-Chain Security Audit (~726 tok)
40
42
  - `SUPPORT.md` — Support (~335 tok)
41
43
  - `test-draft.js` — Declares tmpDir (~192 tok)
@@ -925,6 +927,10 @@
925
927
  - `mechanical.mjs` — Mechanical Fix Registry — applies deterministic, no-LLM fixes in place. (~3008 tok)
926
928
  - `sections.mjs` — Section-addressable docs — the foundation for surgical, non-destructive doc (~1676 tok)
927
929
 
930
+ ## .github/
931
+
932
+ - `PULL_REQUEST_TEMPLATE.md` — Pull Request (~223 tok)
933
+
928
934
  ## .github/ISSUE_TEMPLATE/
929
935
 
930
936
  - `docguard-feedback.md` (~215 tok)
@@ -942,54 +948,126 @@
942
948
  ## cli/
943
949
 
944
950
  - `config.mjs` — DocGuard — configuration loading. (~3265 tok)
945
- - `docguard.mjs` — DocGuard CLI — The enforcement tool for Canonical-Driven Development (CDD) (~8443 tok)
946
- - `findings.mjs` — Findings — the structured, LLM-addressable result unit (v0.27). (~2174 tok)
947
- - `shared-ignore.mjs` — Shared Ignore Utility — Unified file filtering for all validators. (~2780 tok)
951
+ - `docguard.mjs` — DocGuard CLI — The enforcement tool for Canonical-Driven Development (CDD) (~9439 tok)
952
+ - `findings.mjs` — Findings — the structured, LLM-addressable result unit (v0.27). (~9378 tok)
953
+ - `shared-ignore.mjs` — Shared Ignore Utility — Unified file filtering for all validators. (~4132 tok)
948
954
  - `shared-source.mjs` — Shared Source Resolution — Monorepo-aware source discovery. (~4655 tok)
955
+ - `shared.mjs` — Shared constants for DocGuard CLI — colors, profiles, version. (~3496 tok)
949
956
 
950
957
  ## cli/commands/
951
958
 
952
959
  - `agent.mjs` — `docguard agent` — the one-shot agent task graph. (~1644 tok)
953
- - `explain.mjs` — Explain Command — v0.16-P6. (~9022 tok)
960
+ - `agents.mjs` — Agents Command — Generate agent-specific config files from AGENTS.md (~3307 tok)
961
+ - `diff.mjs` — Diff Command — Show differences between canonical docs and implementation (~4128 tok)
962
+ - `explain.mjs` — Explain Command — v0.16-P6. (~9474 tok)
954
963
  - `feedback.mjs` — Feedback Command — close the loop with the tool's maintainers (v0.27). (~1920 tok)
955
- - `generate.mjs` — Generate Command — Reverse-engineer canonical docs from an existing codebase (~15364 tok)
956
- - `guard.mjs` — Guard Command — Validate project against its canonical documentation (~9556 tok)
957
- - `score.mjs` — Score Command — Calculate CDD maturity score (0-100) (~11214 tok)
964
+ - `generate.mjs` — Generate Command — Reverse-engineer canonical docs from an existing codebase (~6250 tok)
965
+ - `guard.mjs` — Guard Command — Validate project against its canonical documentation (~11608 tok)
966
+ - `init.mjs` — Init Command — Initialize CDD documentation from templates (~7278 tok)
967
+ - `llms.mjs` — llms Command — Generate llms.txt from canonical documentation (~2137 tok)
968
+ - `mcp.mjs` — MCP Command — DocGuard as a Model Context Protocol server (stdio). (~2902 tok)
969
+ - `memory.mjs` — Memory Command — v0.17-P2. (~2957 tok)
970
+ - `score.mjs` — Score Command — Calculate CDD maturity score (0-100) (~12136 tok)
971
+ - `sync-tests.mjs` — `docguard sync --tests` — reconcile the TEST-SPEC Source-to-Test Map from disk. (~3191 tok)
972
+ - `sync.mjs` — Sync Command — keep the documentation memory ALWAYS UP TO DATE. (~2371 tok)
973
+ - `verify.mjs` — Verify Command — `docguard verify --semantic` (LLM field report #5). (~833 tok)
958
974
 
959
975
  ## cli/scanners/
960
976
 
977
+ - `agent-readability.mjs` — Agent Readability scanner — how well do this repo's docs serve an AI agent? (~2228 tok)
961
978
  - `inventory.mjs` — Inventory scanners — code-truth the generator PRE-FILLS instead of leaving (~1699 tok)
962
979
  - `memory-plan.mjs` — Memory Plan — the orchestration artifact behind AI-powered Generate. (~5744 tok)
963
980
  - `project-type.mjs` — Project-Type Detection — the language-agnostic spine. (~4190 tok)
964
981
  - `routes.mjs` — Deep Route Scanner (~7712 tok)
982
+ - `semantic-claims.mjs` — Semantic claim extractor (LLM field report #5). (~1998 tok)
983
+ - `speckit.mjs` — Spec Kit Scanner — Detect, validate, and integrate with GitHub Spec Kit (~4785 tok)
965
984
 
966
985
  ## cli/validators/
967
986
 
968
- - `doc-quality.mjs` — Doc Quality Validator — Measures documentation writing quality (~6349 tok)
969
- - `freshness.mjs` — Freshness Validator — Check if documentation is stale relative to code changes. (~3462 tok)
970
- - `metrics-consistency.mjs` — Metrics Consistency Validator — Detects stale hardcoded numbers in docs. (~2714 tok)
971
- - `security.mjs` — Security Validator — Basic checks for secrets in code (~2882 tok)
972
- - `todo-tracking.mjs` — TODO/FIXME Tracking Validator — Ensures code annotations are documented (~3644 tok)
987
+ - `api-surface.mjs` — API-Surface Validator — Detects drift between the documented API surface (~5063 tok)
988
+ - `architecture.mjs` — Architecture Validator — Enhanced with automatic import analysis (~3926 tok)
989
+ - `canonical-sync.mjs` — Canonical-Sync Validator — v0.19-A. (~2947 tok)
990
+ - `changelog.mjs` — Changelog Validator — Checks CHANGELOG.md has an [Unreleased] section, (~1050 tok)
991
+ - `cross-reference.mjs` — Cross-Reference Validator — S-8 / K-7 (~4592 tok)
992
+ - `doc-quality.mjs` — Doc Quality Validator — Measures documentation writing quality (~6826 tok)
993
+ - `docs-coverage.mjs` — Docs-Coverage Validator — Detects code features not referenced in docs. (~5516 tok)
994
+ - `docs-diff.mjs` — Docs-Diff Validator — Checks alignment between canonical docs and code. (~3326 tok)
995
+ - `docs-sync.mjs` — Docs-Sync Validator — Checks that source files have matching canonical doc entries (~2949 tok)
996
+ - `drift.mjs` — Drift Validator — Every // DRIFT: comment must have a DRIFT-LOG.md entry (~1290 tok)
997
+ - `environment.mjs` — Environment Validator — Checks ENVIRONMENT.md docs and .env.example (~2085 tok)
998
+ - `freshness.mjs` — Freshness Validator — Check if documentation is stale relative to code changes. (~3540 tok)
999
+ - `generated-staleness.mjs` — Generated-Doc Staleness Validator — M-1 / S-7 (~2919 tok)
1000
+ - `metadata-sync.mjs` — Metadata Sync Validator — Detects stale version references across docs. (~2155 tok)
1001
+ - `metrics-consistency.mjs` — Metrics Consistency Validator — Detects stale hardcoded numbers in docs. (~3635 tok)
1002
+ - `schema-sync.mjs` — Schema Sync Validator — Ensures database schemas are documented in DATA-MODEL.md (~2108 tok)
1003
+ - `security.mjs` — Security Validator — Basic checks for secrets in code (~2831 tok)
1004
+ - `spec-kit.mjs` — Spec-Kit Validator — Validates Spec Kit artifacts (specs/, plans/, tasks/, constitution). (~224 tok)
1005
+ - `structure.mjs` — Structure Validator — Checks that all required CDD files exist (~1647 tok)
1006
+ - `surface-sync.mjs` — Surface-Sync Validator — item-level drift detection for enumerable surfaces. (~4219 tok)
1007
+ - `test-spec.mjs` — Test Spec Validator — Checks that tests exist per TEST-SPEC.md coverage rules (~4463 tok)
1008
+ - `todo-tracking.mjs` — TODO/FIXME Tracking Validator — Ensures code annotations are documented (~3916 tok)
1009
+ - `traceability.mjs` — Traceability Validator — Checks that canonical docs are linked to source code (~4324 tok)
973
1010
 
974
1011
  ## cli/writers/
975
1012
 
976
1013
  - `mechanical.mjs` — Mechanical Fix Registry — applies deterministic, no-LLM fixes in place. (~3290 tok)
1014
+ - `sarif.mjs` — SARIF 2.1.0 writer — `docguard guard --format sarif`. (~1315 tok)
1015
+
1016
+ ## docs-canonical/
1017
+
1018
+ - `ARCHITECTURE.md` — Architecture (~2883 tok)
1019
+ - `DATA-MODEL.md` — Data Model (~1668 tok)
1020
+ - `REQUIREMENTS.md` — Requirements (~673 tok)
1021
+ - `SURFACE-AUDIT.md` — DocGuard Surface Audit (~5703 tok)
1022
+
1023
+ ## docs/
1024
+
1025
+ - `ai-integration.md` — AI Integration Guide (~2024 tok)
1026
+ - `commands.md` — Commands Reference (~2157 tok)
1027
+ - `configuration.md` — Configuration (~1375 tok)
1028
+ - `faq.md` — Frequently Asked Questions (~1519 tok)
977
1029
 
978
1030
  ## extensions/spec-kit-docguard/
979
1031
 
980
1032
  - `extension.yml` (~1026 tok)
981
1033
 
1034
+ ## schemas/
1035
+
1036
+ - `docguard-config.schema.json` — behavior: docs (~2889 tok)
1037
+
1038
+ ## templates/
1039
+
1040
+ - `ENVIRONMENT.md.template` — Environment & Configuration (~394 tok)
1041
+ - `REQUIREMENTS.md.template` — Requirements (~632 tok)
1042
+ - `SECURITY.md.template` — Security (~342 tok)
1043
+ - `TEST-SPEC.md.template` — /*.ts --> | <!-- e.g. tests/unit/**/*.test.ts --> | Unit | (~771 tok)
1044
+
1045
+ ## templates/commands/
1046
+
1047
+ - `docguard.fix.md` — /docguard.fix — Find and Fix CDD Documentation Issues (~771 tok)
1048
+ - `docguard.guard.md` — /docguard.guard — Validate CDD Compliance (~736 tok)
1049
+ - `docguard.init.md` — /docguard.init — Set Up CDD Documentation (~621 tok)
1050
+ - `docguard.review.md` — /docguard.review — Review Documentation vs Code (~630 tok)
1051
+ - `docguard.update.md` — /docguard.update — Update Docs After Code Changes (~499 tok)
1052
+
982
1053
  ## tests/
983
1054
 
1055
+ - `agent-readability.test.mjs` — Declares metric (~1049 tok)
984
1056
  - `agent.test.mjs` — Exports x (~1138 tok)
985
- - `commands.test.mjs` — DocGuard CLI Tests — Tests all commands and flags (~10304 tok)
1057
+ - `agents-sync.test.mjs` — CLI: run (~1367 tok)
1058
+ - `changelog.test.mjs` — Exports x, x (~1315 tok)
1059
+ - `commands.test.mjs` — DocGuard CLI Tests — Tests all commands and flags (~10442 tok)
986
1060
  - `ensure-skills-idempotent.test.mjs` — v0.24 — Skill install is idempotent (field report, Issue D). (~1133 tok)
1061
+ - `field-report-3-deferred.test.mjs` — v0.28 — the detection-gap items deferred from LLM field report #3. (~3122 tok)
987
1062
  - `field-report-3.test.mjs` — v0.27 — LLM field report #3. (~3315 tok)
988
1063
  - `freshness.test.mjs` — runGit: commitOldCode (~3536 tok)
989
1064
  - `inventory.test.mjs` — Declares make (~1048 tok)
1065
+ - `llms-full-pack.test.mjs` — CLI: run (~1304 tok)
1066
+ - `mcp.test.mjs` — MCP Server Tests — `docguard mcp` over stdio. (~2138 tok)
990
1067
  - `mechanical.test.mjs` — Declares write (~1161 tok)
991
1068
  - `memory-plan.test.mjs` — Exports u, Button (~1834 tok)
992
- - `metrics-consistency.test.mjs` — Declares guardResults (~1986 tok)
1069
+ - `metrics-consistency.test.mjs` — Declares guardResults (~3942 tok)
993
1070
  - `metrics-dedup.test.mjs` — v0.14.1-N1 — Metrics-Consistency dedup. (~1450 tok)
994
1071
  - `project-type.test.mjs` — Declares make (~2140 tok)
1072
+ - `sarif.test.mjs` — Declares CLI (~1455 tok)
995
1073
  - `shared-source.test.mjs` — API routes: GET (4 endpoints) (~1714 tok)