diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 856f168..925db2e 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -41,4 +41,4 @@ How does this issue impact users? ## Related Documentation Links to related sections: -- [Related Guide](link) +- Related Guide: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 453f870..8cee1a4 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -33,7 +33,7 @@ If applicable, provide an example of what you envision: ## Related Examples Link any existing related examples or guides: -- [Existing Guide](link) +- Existing Guide: - Feature: (e.g., Skills, Hooks, Subagents) ## Additional Context diff --git a/.github/SECURITY_REPORTING.md b/.github/SECURITY_REPORTING.md index da70667..2be9463 100644 --- a/.github/SECURITY_REPORTING.md +++ b/.github/SECURITY_REPORTING.md @@ -301,7 +301,7 @@ A: Check GitHub security advisories page. If you still don't see a response, you - [SECURITY.md](../SECURITY.md) - Full security policy - [CONTRIBUTING.md](../CONTRIBUTING.md) - Contributing guidelines - [CODE_OF_CONDUCT.md](../CODE_OF_CONDUCT.md) - Community standards -- [OWASP Guide](https://owasp.org/www-project-responsible-disclosure/) - Responsible disclosure best practices +- [OWASP Vulnerability Disclosure](https://cheatsheetseries.owasp.org/cheatsheets/Vulnerability_Disclosure_Cheat_Sheet.html) - Responsible disclosure best practices - [Coordinated Vulnerability Disclosure](https://cheatsheetseries.owasp.org/cheatsheets/Vulnerable_Dependency_Management_Cheat_Sheet.html) --- diff --git a/.github/markdown-link-check-config.json b/.github/markdown-link-check-config.json index 154ba75..1277957 100644 --- a/.github/markdown-link-check-config.json +++ b/.github/markdown-link-check-config.json @@ -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" diff --git a/02-memory/README.md b/02-memory/README.md index b4cd9cf..34bbcea 100644 --- a/02-memory/README.md +++ b/02-memory/README.md @@ -925,22 +925,11 @@ For the most up-to-date information, refer to the official Claude Code documenta ## Related Concepts Links -### Core Memory Concepts -- [CLAUDE.md File Format Guide](./examples/) -- [Memory Examples](./examples/) -- [Memory Hierarchy](./examples/) - ### Integration Points - [MCP Protocol](../05-mcp/) - Live data access alongside memory - [Slash Commands](../01-slash-commands/) - Session-specific shortcuts - [Skills](../03-skills/) - Automated workflows with memory context -### Best Practices -- [Code Organization](./examples/) -- [Team Collaboration](./examples/) -- [Documentation Strategy](./examples/) - ### Related Claude Features - [Claude Web Memory](https://claude.ai) - Automatic synthesis -- [File Imports](./examples/) - Reference external documentation -- [File Context](../01-context-window/) - Current session context +- [Official Memory Docs](https://docs.anthropic.com/en/docs/claude-code/memory) - Anthropic documentation diff --git a/07-plugins/README.md b/07-plugins/README.md index c17ef3c..c8f7d86 100644 --- a/07-plugins/README.md +++ b/07-plugins/README.md @@ -607,6 +607,6 @@ The following Claude Code features work together with plugins: - [Discover Plugins](https://code.claude.com/docs/en/discover-plugins) - [Plugin Marketplaces](https://code.claude.com/docs/en/plugin-marketplaces) - [Plugins Reference](https://code.claude.com/docs/en/plugins-reference) -- [MCP Server Reference](https://spec.modelcontextprotocol.io/) +- [MCP Server Reference](https://modelcontextprotocol.io/) - [Subagent Configuration Guide](../04-subagents/README.md) - [Hook System Reference](../06-hooks/README.md) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index abf8947..3582013 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -329,7 +329,7 @@ When contributing examples and documentation, please follow secure coding practi - **Validate inputs** - Show proper input validation and sanitization - **Include security notes** - Document security considerations -For security issues, see [SECURITY.md](../SECURITY.md) for our vulnerability reporting process. +For security issues, see [SECURITY.md](SECURITY.md) for our vulnerability reporting process. ## Code of Conduct