fix: Resolve dead links in documentation files

- 02-memory/README.md: Remove broken example links, keep valid ones
- CONTRIBUTING.md: Fix relative path to SECURITY.md
- 07-plugins/README.md: Update MCP spec URL to working domain
- .github/SECURITY_REPORTING.md: Update OWASP link to valid cheatsheet
- .github/ISSUE_TEMPLATE/*: Replace placeholder links with comments
- .github/markdown-link-check-config.json: Add ignore patterns for
  example URLs in code blocks (docs.example.com, template files)
This commit is contained in:
Luong NGUYEN
2026-01-15 15:02:44 +01:00
parent 9c884f07c0
commit 59a87f10c8
7 changed files with 22 additions and 17 deletions
+16
View File
@@ -1,5 +1,21 @@
{
"ignorePatterns": [
{
"pattern": "^https://docs\\.example\\.com",
"comment": "Example placeholder URLs in documentation templates"
},
{
"pattern": "^\\./docs/",
"comment": "Example relative paths in documentation templates"
},
{
"pattern": "^FORMS\\.md$|^REFERENCE\\.md$",
"comment": "Example file references in skill templates"
},
{
"pattern": "^https://en\\.wikipedia\\.org/wiki/N%2B1",
"comment": "Wikipedia N+1 article - URL encoding issues"
},
{
"pattern": "^https://twitter.com",
"comment": "Twitter/X links require authentication"