fix: docs polish — external link check, OpenAPI card, navbar#3
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Greptile SummaryThis PR makes three documentation polish fixes: (1) corrects the OpenAPI spec card link in
Confidence Score: 5/5Safe to merge — all three fixes are correct and previously flagged concerns have been acknowledged by the developer. All changes are straightforward and correctly implemented. The OpenAPI URL is now consistent between the card and docs.json. The link-checker config and Makefile addition are functional. The two concerns raised in previous review threads were addressed as intentional. No new blocking issues were found. No files require special attention. Important Files Changed
Sequence DiagramsequenceDiagram
participant Dev as Developer
participant Make as make lint
participant MV as mintlify validate
participant MB as mintlify broken-links
participant MLC as markdown-link-check
Dev->>Make: make lint
Make->>MV: npx mintlify validate
MV-->>Make: pass / fail
Make->>MB: npx mintlify broken-links
MB-->>Make: pass / fail
Make->>MLC: npx markdown-link-check --config .mlc-config.json **/*.mdx
Note over MLC: Ignores usezombie.com,<br/>app.usezombie.com,<br/>discord.gg, mailto:, relative paths
MLC-->>Make: pass / fail
Make-->>Dev: lint result
Reviews (2): Last reviewed commit: "fix: use find instead of glob for recurs..." | Re-trigger Greptile |
**/*.mdx silently skips nested files in POSIX sh. Use find to ensure all subdirectories are checked. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Summary
api.usezombie.com/openapi.json, not deployed)markdown-link-checktomake lintfor external URL validation in CIusezombie.com/contact/salesTest plan
make lintpasses locally (mintlify validate + broken-links + markdown-link-check)🤖 Generated with Claude Code