cellium-agent 1.4.2.post2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (273) hide show
  1. cellium_agent-1.4.2.post2/LICENSE +13 -0
  2. cellium_agent-1.4.2.post2/MANIFEST.in +3 -0
  3. cellium_agent-1.4.2.post2/PKG-INFO +715 -0
  4. cellium_agent-1.4.2.post2/README.md +731 -0
  5. cellium_agent-1.4.2.post2/README_en.md +695 -0
  6. cellium_agent-1.4.2.post2/app/__init__.py +4 -0
  7. cellium_agent-1.4.2.post2/app/agent/control/__init__.py +84 -0
  8. cellium_agent-1.4.2.post2/app/agent/control/action_bandit.py +336 -0
  9. cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/__init__.py +15 -0
  10. cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/composer.py +158 -0
  11. cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/evolution.py +954 -0
  12. cellium_agent-1.4.2.post2/app/agent/control/constraint_gene/matcher.py +241 -0
  13. cellium_agent-1.4.2.post2/app/agent/control/control_loop.py +590 -0
  14. cellium_agent-1.4.2.post2/app/agent/control/decision_renderer.py +184 -0
  15. cellium_agent-1.4.2.post2/app/agent/control/feedback_evaluator.py +276 -0
  16. cellium_agent-1.4.2.post2/app/agent/control/gene_post_session.py +200 -0
  17. cellium_agent-1.4.2.post2/app/agent/control/hard_constraints.py +459 -0
  18. cellium_agent-1.4.2.post2/app/agent/control/hybrid_controller.py +440 -0
  19. cellium_agent-1.4.2.post2/app/agent/control/loop_state.py +179 -0
  20. cellium_agent-1.4.2.post2/app/agent/control/thought_parser.py +174 -0
  21. cellium_agent-1.4.2.post2/app/agent/di_config.py +585 -0
  22. cellium_agent-1.4.2.post2/app/agent/events/__init__.py +40 -0
  23. cellium_agent-1.4.2.post2/app/agent/events/event_models.py +115 -0
  24. cellium_agent-1.4.2.post2/app/agent/events/event_types.py +37 -0
  25. cellium_agent-1.4.2.post2/app/agent/heuristics/__init__.py +42 -0
  26. cellium_agent-1.4.2.post2/app/agent/heuristics/config.py +108 -0
  27. cellium_agent-1.4.2.post2/app/agent/heuristics/engine.py +373 -0
  28. cellium_agent-1.4.2.post2/app/agent/heuristics/features.py +588 -0
  29. cellium_agent-1.4.2.post2/app/agent/heuristics/integration.py +237 -0
  30. cellium_agent-1.4.2.post2/app/agent/heuristics/rules/__init__.py +30 -0
  31. cellium_agent-1.4.2.post2/app/agent/heuristics/rules/base_rule.py +60 -0
  32. cellium_agent-1.4.2.post2/app/agent/heuristics/rules/loop_detection.py +242 -0
  33. cellium_agent-1.4.2.post2/app/agent/heuristics/rules/termination.py +404 -0
  34. cellium_agent-1.4.2.post2/app/agent/heuristics/scoring.py +175 -0
  35. cellium_agent-1.4.2.post2/app/agent/heuristics/trace.py +135 -0
  36. cellium_agent-1.4.2.post2/app/agent/heuristics/types.py +134 -0
  37. cellium_agent-1.4.2.post2/app/agent/learning/__init__.py +24 -0
  38. cellium_agent-1.4.2.post2/app/agent/learning/bandit.py +97 -0
  39. cellium_agent-1.4.2.post2/app/agent/learning/integration.py +282 -0
  40. cellium_agent-1.4.2.post2/app/agent/learning/memory_policy.py +185 -0
  41. cellium_agent-1.4.2.post2/app/agent/learning/policy.py +143 -0
  42. cellium_agent-1.4.2.post2/app/agent/llm/__init__.py +10 -0
  43. cellium_agent-1.4.2.post2/app/agent/llm/engine.py +988 -0
  44. cellium_agent-1.4.2.post2/app/agent/llm/models.py +31 -0
  45. cellium_agent-1.4.2.post2/app/agent/llm/transport.py +277 -0
  46. cellium_agent-1.4.2.post2/app/agent/loop/__init__.py +29 -0
  47. cellium_agent-1.4.2.post2/app/agent/loop/agent_loop.py +2312 -0
  48. cellium_agent-1.4.2.post2/app/agent/loop/agent_loop_manager.py +289 -0
  49. cellium_agent-1.4.2.post2/app/agent/loop/auto_hints.py +438 -0
  50. cellium_agent-1.4.2.post2/app/agent/loop/command_handler.py +74 -0
  51. cellium_agent-1.4.2.post2/app/agent/loop/loop_controller.py +122 -0
  52. cellium_agent-1.4.2.post2/app/agent/loop/loop_event_publisher.py +268 -0
  53. cellium_agent-1.4.2.post2/app/agent/loop/memory.py +347 -0
  54. cellium_agent-1.4.2.post2/app/agent/loop/round_trimmer.py +75 -0
  55. cellium_agent-1.4.2.post2/app/agent/loop/session_manager.py +466 -0
  56. cellium_agent-1.4.2.post2/app/agent/loop/session_store.py +392 -0
  57. cellium_agent-1.4.2.post2/app/agent/loop/tool_executor.py +671 -0
  58. cellium_agent-1.4.2.post2/app/agent/memory/__init__.py +30 -0
  59. cellium_agent-1.4.2.post2/app/agent/memory/archive_store.py +163 -0
  60. cellium_agent-1.4.2.post2/app/agent/memory/chinese_tokenizer.py +112 -0
  61. cellium_agent-1.4.2.post2/app/agent/memory/fts5_searcher.py +699 -0
  62. cellium_agent-1.4.2.post2/app/agent/memory/knowledge_extractor.py +189 -0
  63. cellium_agent-1.4.2.post2/app/agent/memory/repository.py +1521 -0
  64. cellium_agent-1.4.2.post2/app/agent/memory/session_compact.py +647 -0
  65. cellium_agent-1.4.2.post2/app/agent/memory/session_notes.py +323 -0
  66. cellium_agent-1.4.2.post2/app/agent/memory/three_layer.py +326 -0
  67. cellium_agent-1.4.2.post2/app/agent/memory/vector_native.py +169 -0
  68. cellium_agent-1.4.2.post2/app/agent/prompt/__init__.py +21 -0
  69. cellium_agent-1.4.2.post2/app/agent/prompt/builder.py +170 -0
  70. cellium_agent-1.4.2.post2/app/agent/prompt/diff.py +247 -0
  71. cellium_agent-1.4.2.post2/app/agent/prompt/piece.py +96 -0
  72. cellium_agent-1.4.2.post2/app/agent/prompt/pieces.py +304 -0
  73. cellium_agent-1.4.2.post2/app/agent/runtime/__init__.py +14 -0
  74. cellium_agent-1.4.2.post2/app/agent/runtime/context.py +841 -0
  75. cellium_agent-1.4.2.post2/app/agent/runtime/core.py +317 -0
  76. cellium_agent-1.4.2.post2/app/agent/runtime/diagnostics.py +375 -0
  77. cellium_agent-1.4.2.post2/app/agent/runtime/patch.py +126 -0
  78. cellium_agent-1.4.2.post2/app/agent/runtime/patch_applier.py +301 -0
  79. cellium_agent-1.4.2.post2/app/agent/runtime/transaction.py +78 -0
  80. cellium_agent-1.4.2.post2/app/agent/security/__init__.py +13 -0
  81. cellium_agent-1.4.2.post2/app/agent/security/policy.py +11 -0
  82. cellium_agent-1.4.2.post2/app/agent/shell/__init__.py +3 -0
  83. cellium_agent-1.4.2.post2/app/agent/shell/cellium_shell.py +1240 -0
  84. cellium_agent-1.4.2.post2/app/agent/tools/__init__.py +13 -0
  85. cellium_agent-1.4.2.post2/app/agent/tools/base_tool.py +338 -0
  86. cellium_agent-1.4.2.post2/app/agent/tools/config_tool.py +487 -0
  87. cellium_agent-1.4.2.post2/app/agent/tools/edit_tool.py +299 -0
  88. cellium_agent-1.4.2.post2/app/agent/tools/file_cache.py +100 -0
  89. cellium_agent-1.4.2.post2/app/agent/tools/file_tool.py +315 -0
  90. cellium_agent-1.4.2.post2/app/agent/tools/glob_tool.py +86 -0
  91. cellium_agent-1.4.2.post2/app/agent/tools/grep_tool.py +606 -0
  92. cellium_agent-1.4.2.post2/app/agent/tools/ls_tool.py +97 -0
  93. cellium_agent-1.4.2.post2/app/agent/tools/memory_tool.py +823 -0
  94. cellium_agent-1.4.2.post2/app/agent/tools/read_tool.py +453 -0
  95. cellium_agent-1.4.2.post2/app/agent/tools/shell_tool.py +345 -0
  96. cellium_agent-1.4.2.post2/app/channels/__init__.py +99 -0
  97. cellium_agent-1.4.2.post2/app/channels/base.py +293 -0
  98. cellium_agent-1.4.2.post2/app/channels/channel_manager.py +738 -0
  99. cellium_agent-1.4.2.post2/app/channels/channel_registry.py +44 -0
  100. cellium_agent-1.4.2.post2/app/channels/feishu/__init__.py +5 -0
  101. cellium_agent-1.4.2.post2/app/channels/feishu/feishu_adapter.py +852 -0
  102. cellium_agent-1.4.2.post2/app/channels/feishu/feishu_config.py +89 -0
  103. cellium_agent-1.4.2.post2/app/channels/qq/__init__.py +6 -0
  104. cellium_agent-1.4.2.post2/app/channels/qq/qq_adapter.py +1152 -0
  105. cellium_agent-1.4.2.post2/app/channels/qq/qq_config.py +78 -0
  106. cellium_agent-1.4.2.post2/app/channels/qq/qq_connect_client.py +284 -0
  107. cellium_agent-1.4.2.post2/app/channels/telegram/__init__.py +5 -0
  108. cellium_agent-1.4.2.post2/app/channels/telegram/telegram_adapter.py +1022 -0
  109. cellium_agent-1.4.2.post2/app/channels/telegram/telegram_config.py +103 -0
  110. cellium_agent-1.4.2.post2/app/channels/weixin/__init__.py +5 -0
  111. cellium_agent-1.4.2.post2/app/channels/weixin/weixin_adapter.py +1383 -0
  112. cellium_agent-1.4.2.post2/app/channels/weixin/weixin_config.py +75 -0
  113. cellium_agent-1.4.2.post2/app/core/__init__.py +10 -0
  114. cellium_agent-1.4.2.post2/app/core/bootstrap.py +211 -0
  115. cellium_agent-1.4.2.post2/app/core/bus/__init__.py +51 -0
  116. cellium_agent-1.4.2.post2/app/core/bus/event_bus.py +547 -0
  117. cellium_agent-1.4.2.post2/app/core/bus/event_models.py +194 -0
  118. cellium_agent-1.4.2.post2/app/core/bus/events.py +28 -0
  119. cellium_agent-1.4.2.post2/app/core/di/__init__.py +17 -0
  120. cellium_agent-1.4.2.post2/app/core/di/container.py +180 -0
  121. cellium_agent-1.4.2.post2/app/core/exception.py +16 -0
  122. cellium_agent-1.4.2.post2/app/core/interface/base_cell.py +94 -0
  123. cellium_agent-1.4.2.post2/app/core/interface/icell.py +68 -0
  124. cellium_agent-1.4.2.post2/app/core/interface/memory.py +45 -0
  125. cellium_agent-1.4.2.post2/app/core/scheduler/__init__.py +30 -0
  126. cellium_agent-1.4.2.post2/app/core/scheduler/executor.py +295 -0
  127. cellium_agent-1.4.2.post2/app/core/scheduler/manager.py +418 -0
  128. cellium_agent-1.4.2.post2/app/core/security/__init__.py +2 -0
  129. cellium_agent-1.4.2.post2/app/core/security/policy.py +390 -0
  130. cellium_agent-1.4.2.post2/app/core/util/__init__.py +16 -0
  131. cellium_agent-1.4.2.post2/app/core/util/agent_config.py +642 -0
  132. cellium_agent-1.4.2.post2/app/core/util/browser_runtime.py +67 -0
  133. cellium_agent-1.4.2.post2/app/core/util/browser_utils.py +163 -0
  134. cellium_agent-1.4.2.post2/app/core/util/cell_tool_adapter.py +872 -0
  135. cellium_agent-1.4.2.post2/app/core/util/component_auditor.py +540 -0
  136. cellium_agent-1.4.2.post2/app/core/util/component_sandbox.py +592 -0
  137. cellium_agent-1.4.2.post2/app/core/util/component_tool_registry.py +330 -0
  138. cellium_agent-1.4.2.post2/app/core/util/component_watcher.py +334 -0
  139. cellium_agent-1.4.2.post2/app/core/util/components_loader.py +1037 -0
  140. cellium_agent-1.4.2.post2/app/core/util/logger.py +581 -0
  141. cellium_agent-1.4.2.post2/app/core/util/mp_manager.py +183 -0
  142. cellium_agent-1.4.2.post2/app/core/util/protected_modules.py +263 -0
  143. cellium_agent-1.4.2.post2/app/core/util/runtime_paths.py +236 -0
  144. cellium_agent-1.4.2.post2/app/core/util/sandbox_entry.py +228 -0
  145. cellium_agent-1.4.2.post2/app/core/window/__init__.py +3 -0
  146. cellium_agent-1.4.2.post2/app/core/window/main_window.py +665 -0
  147. cellium_agent-1.4.2.post2/app/messaging/__init__.py +8 -0
  148. cellium_agent-1.4.2.post2/app/messaging/event_schema.py +13 -0
  149. cellium_agent-1.4.2.post2/app/messaging/message_broker.py +171 -0
  150. cellium_agent-1.4.2.post2/app/messaging/stream_normalizer.py +301 -0
  151. cellium_agent-1.4.2.post2/app/server/__init__.py +24 -0
  152. cellium_agent-1.4.2.post2/app/server/routes/__init__.py +2 -0
  153. cellium_agent-1.4.2.post2/app/server/routes/channels.py +340 -0
  154. cellium_agent-1.4.2.post2/app/server/routes/chat.py +997 -0
  155. cellium_agent-1.4.2.post2/app/server/routes/components.py +275 -0
  156. cellium_agent-1.4.2.post2/app/server/routes/config.py +497 -0
  157. cellium_agent-1.4.2.post2/app/server/routes/gene.py +299 -0
  158. cellium_agent-1.4.2.post2/app/server/routes/logs.py +171 -0
  159. cellium_agent-1.4.2.post2/app/server/routes/memory.py +225 -0
  160. cellium_agent-1.4.2.post2/app/server/routes/scheduler.py +209 -0
  161. cellium_agent-1.4.2.post2/app/server/routes/session_events.py +120 -0
  162. cellium_agent-1.4.2.post2/app/server/routes/skills.py +151 -0
  163. cellium_agent-1.4.2.post2/app/server/routes/upload.py +158 -0
  164. cellium_agent-1.4.2.post2/app/server/routes/ws_event_manager.py +329 -0
  165. cellium_agent-1.4.2.post2/app/server/task_manager.py +385 -0
  166. cellium_agent-1.4.2.post2/app/server/web_server.py +147 -0
  167. cellium_agent-1.4.2.post2/app/tui/__init__.py +2 -0
  168. cellium_agent-1.4.2.post2/app/tui/app.py +2025 -0
  169. cellium_agent-1.4.2.post2/app/tui/commands.py +45 -0
  170. cellium_agent-1.4.2.post2/app/tui/history_render.py +285 -0
  171. cellium_agent-1.4.2.post2/app/tui/i18n.py +444 -0
  172. cellium_agent-1.4.2.post2/app/tui/model_picker.py +341 -0
  173. cellium_agent-1.4.2.post2/app/tui/runner.py +151 -0
  174. cellium_agent-1.4.2.post2/app/tui/session_picker.py +233 -0
  175. cellium_agent-1.4.2.post2/app/tui/settings_screen.py +213 -0
  176. cellium_agent-1.4.2.post2/app/tui/spinner.py +18 -0
  177. cellium_agent-1.4.2.post2/app/tui/theme.py +112 -0
  178. cellium_agent-1.4.2.post2/app/tui/widgets.py +1212 -0
  179. cellium_agent-1.4.2.post2/cellium_agent.egg-info/PKG-INFO +715 -0
  180. cellium_agent-1.4.2.post2/cellium_agent.egg-info/SOURCES.txt +271 -0
  181. cellium_agent-1.4.2.post2/cellium_agent.egg-info/dependency_links.txt +1 -0
  182. cellium_agent-1.4.2.post2/cellium_agent.egg-info/entry_points.txt +3 -0
  183. cellium_agent-1.4.2.post2/cellium_agent.egg-info/requires.txt +12 -0
  184. cellium_agent-1.4.2.post2/cellium_agent.egg-info/top_level.txt +1 -0
  185. cellium_agent-1.4.2.post2/components/__init__.py +8 -0
  186. cellium_agent-1.4.2.post2/components/_example_component.py +299 -0
  187. cellium_agent-1.4.2.post2/components/component_builder.py +1247 -0
  188. cellium_agent-1.4.2.post2/components/feishu_files.py +467 -0
  189. cellium_agent-1.4.2.post2/components/qq_files.py +341 -0
  190. cellium_agent-1.4.2.post2/components/scheduler.py +256 -0
  191. cellium_agent-1.4.2.post2/components/skill_installer.py +979 -0
  192. cellium_agent-1.4.2.post2/components/skill_manager.py +222 -0
  193. cellium_agent-1.4.2.post2/components/skills/__init__.py +39 -0
  194. cellium_agent-1.4.2.post2/components/sub_agent.py +625 -0
  195. cellium_agent-1.4.2.post2/components/telegram_files.py +354 -0
  196. cellium_agent-1.4.2.post2/components/web_fetch.py +2564 -0
  197. cellium_agent-1.4.2.post2/components/web_search.py +1076 -0
  198. cellium_agent-1.4.2.post2/components/weixin_files.py +343 -0
  199. cellium_agent-1.4.2.post2/config/agent/agent.yaml +9 -0
  200. cellium_agent-1.4.2.post2/config/agent/channels.yaml +39 -0
  201. cellium_agent-1.4.2.post2/config/agent/heuristics.yaml +43 -0
  202. cellium_agent-1.4.2.post2/config/agent/learning.yaml +30 -0
  203. cellium_agent-1.4.2.post2/config/agent/llm.yaml +53 -0
  204. cellium_agent-1.4.2.post2/config/agent/logging.yaml +11 -0
  205. cellium_agent-1.4.2.post2/config/agent/memory.yaml +22 -0
  206. cellium_agent-1.4.2.post2/config/agent/model_registry.yaml +105 -0
  207. cellium_agent-1.4.2.post2/config/agent/routes.yaml +26 -0
  208. cellium_agent-1.4.2.post2/config/agent/security.yaml +20 -0
  209. cellium_agent-1.4.2.post2/config/agent/server.yaml +18 -0
  210. cellium_agent-1.4.2.post2/config/settings.yaml +24 -0
  211. cellium_agent-1.4.2.post2/dll/.gitkeep +3 -0
  212. cellium_agent-1.4.2.post2/dll/darwin-arm64/libvector_engine.dylib +0 -0
  213. cellium_agent-1.4.2.post2/dll/linux-aarch64/libvector_engine.so +0 -0
  214. cellium_agent-1.4.2.post2/dll/linux-x86_64/libvector_engine.so +0 -0
  215. cellium_agent-1.4.2.post2/dll/windows-x86_64/vector_engine.dll +0 -0
  216. cellium_agent-1.4.2.post2/html/assets/SettingsPage-DPQG2vYQ.js +1 -0
  217. cellium_agent-1.4.2.post2/html/assets/i18n-vendor-CLSNeGwf.js +1 -0
  218. cellium_agent-1.4.2.post2/html/assets/index-B8_rdIzI.js +6 -0
  219. cellium_agent-1.4.2.post2/html/assets/index-BTZUwOV4.css +1 -0
  220. cellium_agent-1.4.2.post2/html/assets/markdown-vendor-Ckj0zzMC.js +66 -0
  221. cellium_agent-1.4.2.post2/html/assets/react-vendor-CEaRprYI.js +23 -0
  222. cellium_agent-1.4.2.post2/html/assets/rolldown-runtime-xSXa1GVp.js +1 -0
  223. cellium_agent-1.4.2.post2/html/font/.gitkeep +2 -0
  224. cellium_agent-1.4.2.post2/html/font/Roboto-Regular.ttf +0 -0
  225. cellium_agent-1.4.2.post2/html/index.html +27 -0
  226. cellium_agent-1.4.2.post2/html/logo.png +0 -0
  227. cellium_agent-1.4.2.post2/licenses/ripgrep-LICENSE +26 -0
  228. cellium_agent-1.4.2.post2/main.py +60 -0
  229. cellium_agent-1.4.2.post2/memory/personality.md +380 -0
  230. cellium_agent-1.4.2.post2/pyproject.toml +53 -0
  231. cellium_agent-1.4.2.post2/requirements.txt +31 -0
  232. cellium_agent-1.4.2.post2/setup.cfg +4 -0
  233. cellium_agent-1.4.2.post2/tests/test_agent_loop.py +1491 -0
  234. cellium_agent-1.4.2.post2/tests/test_archive_dedup.py +337 -0
  235. cellium_agent-1.4.2.post2/tests/test_cellium_shell.py +241 -0
  236. cellium_agent-1.4.2.post2/tests/test_component_state_reload.py +373 -0
  237. cellium_agent-1.4.2.post2/tests/test_control_loop.py +559 -0
  238. cellium_agent-1.4.2.post2/tests/test_entry_imports.py +53 -0
  239. cellium_agent-1.4.2.post2/tests/test_feedback_evaluator.py +121 -0
  240. cellium_agent-1.4.2.post2/tests/test_file_cache_grep.py +474 -0
  241. cellium_agent-1.4.2.post2/tests/test_gene_api.py +225 -0
  242. cellium_agent-1.4.2.post2/tests/test_gene_composer.py +121 -0
  243. cellium_agent-1.4.2.post2/tests/test_gene_evolution.py +381 -0
  244. cellium_agent-1.4.2.post2/tests/test_gene_post_session.py +285 -0
  245. cellium_agent-1.4.2.post2/tests/test_hard_constraints.py +151 -0
  246. cellium_agent-1.4.2.post2/tests/test_heuristic_engine_integration.py +209 -0
  247. cellium_agent-1.4.2.post2/tests/test_heuristics.py +584 -0
  248. cellium_agent-1.4.2.post2/tests/test_hybrid_controller.py +386 -0
  249. cellium_agent-1.4.2.post2/tests/test_integration.py +206 -0
  250. cellium_agent-1.4.2.post2/tests/test_intent_llm.py +259 -0
  251. cellium_agent-1.4.2.post2/tests/test_llm_transport.py +399 -0
  252. cellium_agent-1.4.2.post2/tests/test_memory_api.py +141 -0
  253. cellium_agent-1.4.2.post2/tests/test_memory_api_http.py +326 -0
  254. cellium_agent-1.4.2.post2/tests/test_memory_archive.py +155 -0
  255. cellium_agent-1.4.2.post2/tests/test_memory_repository_unit.py +317 -0
  256. cellium_agent-1.4.2.post2/tests/test_memory_system.py +421 -0
  257. cellium_agent-1.4.2.post2/tests/test_microkernel_integration.py +64 -0
  258. cellium_agent-1.4.2.post2/tests/test_read_edit_integration.py +524 -0
  259. cellium_agent-1.4.2.post2/tests/test_scheduler.py +550 -0
  260. cellium_agent-1.4.2.post2/tests/test_security.py +290 -0
  261. cellium_agent-1.4.2.post2/tests/test_session_compact.py +345 -0
  262. cellium_agent-1.4.2.post2/tests/test_subagent.py +541 -0
  263. cellium_agent-1.4.2.post2/tests/test_task_signal_matcher.py +462 -0
  264. cellium_agent-1.4.2.post2/tests/test_thought_parser.py +125 -0
  265. cellium_agent-1.4.2.post2/tests/test_tool_executor.py +137 -0
  266. cellium_agent-1.4.2.post2/tests/test_web_search.py +124 -0
  267. cellium_agent-1.4.2.post2/tests/test_web_search_unit.py +127 -0
  268. cellium_agent-1.4.2.post2/vendor/.gitkeep +0 -0
  269. cellium_agent-1.4.2.post2/vendor/ripgrep/.gitkeep +0 -0
  270. cellium_agent-1.4.2.post2/vendor/ripgrep/aarch64-apple-darwin/rg +0 -0
  271. cellium_agent-1.4.2.post2/vendor/ripgrep/aarch64-unknown-linux-gnu/rg +0 -0
  272. cellium_agent-1.4.2.post2/vendor/ripgrep/x86_64-pc-windows-msvc/rg.exe +0 -0
  273. cellium_agent-1.4.2.post2/vendor/ripgrep/x86_64-unknown-linux-musl/rg +0 -0
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2026 Cellium Contributors
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
@@ -0,0 +1,3 @@
1
+ # 排除 Python 字节码缓存
2
+ prune **/__pycache__
3
+ global-exclude *.pyc *.pyo