.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # API-KEY
  2. .env
  3. .mcp.json
  4. # Python
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. *.so
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. /lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # Virtual environments
  26. venv/
  27. ENV/
  28. env/
  29. .venv/
  30. # IDE
  31. .idea/
  32. .vscode/
  33. *.swp
  34. *.swo
  35. *~
  36. CLAUDE.md
  37. # 默认忽略 .claude/ 下所有子项(IDE 状态、session 等)
  38. .claude/*
  39. # 但保留项目级 Claude Code skill(版本化)
  40. !.claude/skills/
  41. # Testing
  42. .pytest_cache/
  43. .coverage
  44. htmlcov/
  45. .tox/
  46. .nox/
  47. scratch/
  48. # Misc
  49. .DS_Store
  50. Thumbs.db
  51. .env
  52. debug.log
  53. info.log
  54. .cache
  55. output
  56. # Debug output
  57. .trace/
  58. .trace_test/
  59. .trace_test2/
  60. examples/**/output*/
  61. examples/**/test*/
  62. outputs/
  63. frontend/htmlTemplate/mock_data
  64. frontend/htmlTemplate/api_data/
  65. frontend/htmlTemplate/ws_data/
  66. frontend/react-template/yarn.lock
  67. frontend/react-template/node_modules/
  68. # Feishu 运行时聊天记录(自动维护,包含联系人 PII)
  69. agent/tools/builtin/feishu/chat_history/
  70. # Runtime artifacts (one-off scripts, data, cache)
  71. .image_cache/
  72. cache/
  73. pending_uploads/
  74. knowledge/
  75. knowledge_batch_*.json
  76. knowledge-*.json
  77. tools/image_gen/
  78. tools/upload/
  79. # data
  80. knowhub/knowhub.db
  81. knowhub/knowhub.db-shm
  82. knowhub/knowhub.db-wal
  83. examples/archive/*
  84. examples/research/
  85. examples/downloader/
  86. examples/production_restore/features/
  87. # im-server data
  88. data/
  89. # Vendor (non-submodule)
  90. vendor/browser-use/
  91. # im-client data
  92. data/.mcp.json
  93. # batch files
  94. *.bat
  95. HOW_IT_RUNS.md
  96. PROJECT_STRUCTURE.md