godot_unified.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "godot",
  3. "description": "Complete Godot Engine knowledge base combining official documentation and source code analysis",
  4. "merge_mode": "claude-enhanced",
  5. "sources": [
  6. {
  7. "type": "documentation",
  8. "base_url": "https://docs.godotengine.org/en/stable/",
  9. "extract_api": true,
  10. "selectors": {
  11. "main_content": "div[role='main']",
  12. "title": "title",
  13. "code_blocks": "pre"
  14. },
  15. "url_patterns": {
  16. "include": [],
  17. "exclude": ["/search.html", "/_static/", "/_images/"]
  18. },
  19. "categories": {
  20. "getting_started": ["introduction", "getting_started", "step_by_step"],
  21. "scripting": ["scripting", "gdscript", "c_sharp"],
  22. "2d": ["2d", "canvas", "sprite", "animation"],
  23. "3d": ["3d", "spatial", "mesh", "shader"],
  24. "physics": ["physics", "collision", "rigidbody"],
  25. "api": ["api", "class", "reference", "method"]
  26. },
  27. "rate_limit": 0.5,
  28. "max_pages": 500
  29. },
  30. {
  31. "type": "github",
  32. "repo": "godotengine/godot",
  33. "github_token": null,
  34. "code_analysis_depth": "deep",
  35. "include_code": true,
  36. "include_issues": true,
  37. "max_issues": 100,
  38. "include_changelog": true,
  39. "include_releases": true,
  40. "file_patterns": [
  41. "core/**/*.h",
  42. "core/**/*.cpp",
  43. "scene/**/*.h",
  44. "scene/**/*.cpp",
  45. "servers/**/*.h",
  46. "servers/**/*.cpp"
  47. ]
  48. }
  49. ]
  50. }