Phase 4 Complete: - Updated README.md with git source usage examples and use cases - Created docs/GIT_CONFIG_SOURCES.md (800+ lines comprehensive guide) - Updated CHANGELOG.md with v2.2.0 release notes - Added configs/example-team/ example repository with E2E test Documentation covers: - Quick start and architecture - MCP tools reference (4 tools with examples) - Authentication for GitHub, GitLab, Bitbucket - Use cases (small teams, enterprise, open source) - Best practices, troubleshooting, advanced topics - Complete API reference Example repository includes: - 3 example configs (react-custom, vue-internal, company-api) - README with usage guide - E2E test script (7 steps, 100% passing) 🤖 Generated with Claude Code Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
36 lines
862 B
JSON
36 lines
862 B
JSON
{
|
|
"name": "react-custom",
|
|
"description": "Custom React config for team with modified selectors",
|
|
"base_url": "https://react.dev/",
|
|
"selectors": {
|
|
"main_content": "article",
|
|
"title": "h1",
|
|
"code_blocks": "pre code"
|
|
},
|
|
"url_patterns": {
|
|
"include": [
|
|
"/learn",
|
|
"/reference"
|
|
],
|
|
"exclude": [
|
|
"/blog",
|
|
"/community",
|
|
"/_next/"
|
|
]
|
|
},
|
|
"categories": {
|
|
"getting_started": ["learn/start", "learn/installation"],
|
|
"hooks": ["reference/react/hooks", "learn/state"],
|
|
"components": ["reference/react/components"],
|
|
"api": ["reference/react-dom"]
|
|
},
|
|
"rate_limit": 0.5,
|
|
"max_pages": 300,
|
|
"metadata": {
|
|
"team": "frontend",
|
|
"last_updated": "2025-12-21",
|
|
"maintainer": "team-lead@example.com",
|
|
"notes": "Excludes blog and community pages to focus on technical docs"
|
|
}
|
|
}
|