Undefined-bot 3.4.1__tar.gz → 3.4.2__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 (604) hide show
  1. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/CHANGELOG.md +13 -0
  2. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/PKG-INFO +3 -1
  3. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/README.md +2 -0
  4. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/config.toml.example +104 -22
  5. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/pyproject.toml +1 -1
  6. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/IMPORTANT/each.md +4 -4
  7. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/historian_profile_merge.md +5 -1
  8. undefined_bot-3.4.2/res/prompts/merge_message_summaries.txt +12 -0
  9. undefined_bot-3.4.2/res/prompts/message_summary.txt +33 -0
  10. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/undefined.xml +6 -3
  11. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/undefined_nagaagent.xml +6 -3
  12. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/__init__.py +1 -1
  13. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/client.py +118 -9
  14. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/llm.py +118 -7
  15. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/model_selector.py +6 -0
  16. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/prompts.py +0 -2
  17. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/summaries.py +131 -22
  18. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/transports/openai_transport.py +4 -1
  19. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/_probes.py +10 -0
  20. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/loader.py +0 -4
  21. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/model_parsers.py +136 -0
  22. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/models.py +21 -0
  23. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/resolvers.py +55 -0
  24. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/scheduled_task_storage.py +1 -0
  25. undefined_bot-3.4.1/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py → undefined_bot-3.4.2/src/Undefined/services/message_summary_fetch.py +49 -38
  26. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/runner.py +4 -2
  27. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/handler.py +3 -10
  28. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/intro.md +8 -2
  29. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/prompt.md +5 -1
  30. undefined_bot-3.4.2/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py +38 -0
  31. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/summary/handler.py +24 -33
  32. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/README.md +1 -0
  33. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/config-form.js +27 -0
  34. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/.gitignore +0 -0
  35. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/ARCHITECTURE.md +0 -0
  36. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/LICENSE +0 -0
  37. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/config/README.md +0 -0
  38. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/config/mcp.json.example +0 -0
  39. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/img/xlwy.jpg +0 -0
  40. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/README.md +0 -0
  41. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/agent_self_intro.txt +0 -0
  42. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/analyze_multimodal.txt +0 -0
  43. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/describe_image.txt +0 -0
  44. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/describe_meme_image.txt +0 -0
  45. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/generate_title.txt +0 -0
  46. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/historian_rewrite.md +0 -0
  47. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/image_gen_moderation.txt +0 -0
  48. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/injection_detector.txt +0 -0
  49. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/injection_response_agent.txt +0 -0
  50. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/judge_meme_image.txt +0 -0
  51. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/merge_summaries.txt +0 -0
  52. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/naga_message_moderation.txt +0 -0
  53. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/stats_analysis.txt +0 -0
  54. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/res/prompts/summarize.txt +0 -0
  55. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/README.md +0 -0
  56. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/README.md +0 -0
  57. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/__main__.py +0 -0
  58. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/__init__.py +0 -0
  59. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/crawl4ai_support.py +0 -0
  60. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/http.py +0 -0
  61. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/multimodal.py +0 -0
  62. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/parsing.py +0 -0
  63. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/queue_budget.py +0 -0
  64. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/retrieval.py +0 -0
  65. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/tokens.py +0 -0
  66. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/tooling.py +0 -0
  67. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/ai/transports/__init__.py +0 -0
  68. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/__init__.py +0 -0
  69. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/_context.py +0 -0
  70. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/_helpers.py +0 -0
  71. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/_naga_state.py +0 -0
  72. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/_openapi.py +0 -0
  73. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/app.py +0 -0
  74. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/naga_store.py +0 -0
  75. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/__init__.py +0 -0
  76. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/chat.py +0 -0
  77. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/cognitive.py +0 -0
  78. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/health.py +0 -0
  79. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/memes.py +0 -0
  80. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/memory.py +0 -0
  81. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/naga.py +0 -0
  82. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/system.py +0 -0
  83. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/api/routes/tools.py +0 -0
  84. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/__init__.py +0 -0
  85. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/client.py +0 -0
  86. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/downloader.py +0 -0
  87. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/models.py +0 -0
  88. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/parser.py +0 -0
  89. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/arxiv/sender.py +0 -0
  90. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/attachments.py +0 -0
  91. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/__init__.py +0 -0
  92. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/api_client.py +0 -0
  93. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/danmaku.py +0 -0
  94. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/download_core.py +0 -0
  95. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/downloader.py +0 -0
  96. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/errors.py +0 -0
  97. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/models.py +0 -0
  98. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/parser.py +0 -0
  99. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/sender.py +0 -0
  100. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/wbi.py +0 -0
  101. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/bilibili/wbi_request.py +0 -0
  102. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/changelog.py +0 -0
  103. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/__init__.py +0 -0
  104. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/historian.py +0 -0
  105. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/job_queue.py +0 -0
  106. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/profile_storage.py +0 -0
  107. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/service.py +0 -0
  108. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/cognitive/vector_store.py +0 -0
  109. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/__init__.py +0 -0
  110. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/admin.py +0 -0
  111. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/coercers.py +0 -0
  112. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/domain_parsers.py +0 -0
  113. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/hot_reload.py +0 -0
  114. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/manager.py +0 -0
  115. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/config/webui_settings.py +0 -0
  116. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/context.py +0 -0
  117. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/context_resource_registry.py +0 -0
  118. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/end_summary_storage.py +0 -0
  119. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/faq.py +0 -0
  120. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/github/__init__.py +0 -0
  121. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/github/client.py +0 -0
  122. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/github/models.py +0 -0
  123. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/github/parser.py +0 -0
  124. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/github/sender.py +0 -0
  125. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/handlers.py +0 -0
  126. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/injection_response_agent.py +0 -0
  127. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/__init__.py +0 -0
  128. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/chunker.py +0 -0
  129. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/embedder.py +0 -0
  130. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/manager.py +0 -0
  131. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/reranker.py +0 -0
  132. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/runtime.py +0 -0
  133. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/knowledge/store.py +0 -0
  134. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/main.py +0 -0
  135. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/mcp/__init__.py +0 -0
  136. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/mcp/registry.py +0 -0
  137. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/__init__.py +0 -0
  138. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/models.py +0 -0
  139. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/service.py +0 -0
  140. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/store.py +0 -0
  141. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/vector_store.py +0 -0
  142. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memes/worker.py +0 -0
  143. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/memory.py +0 -0
  144. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/onebot.py +0 -0
  145. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/rate_limit.py +0 -0
  146. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/render.py +0 -0
  147. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/__init__.py +0 -0
  148. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/ai_coordinator.py +0 -0
  149. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/command.py +0 -0
  150. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/commands/__init__.py +0 -0
  151. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/commands/context.py +0 -0
  152. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/commands/registry.py +0 -0
  153. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/message_batcher.py +0 -0
  154. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/model_pool.py +0 -0
  155. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/queue_manager.py +0 -0
  156. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/services/security.py +0 -0
  157. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/README.md +0 -0
  158. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/__init__.py +0 -0
  159. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/README.md +0 -0
  160. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/__init__.py +0 -0
  161. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/agent_tool_registry.py +0 -0
  162. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/__init__.py +0 -0
  163. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/callable.json +0 -0
  164. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/config.json +0 -0
  165. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/handler.py +0 -0
  166. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/intro.md +0 -0
  167. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/prompt.md +0 -0
  168. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/__init__.py +0 -0
  169. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/config.json +0 -0
  170. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/handler.py +0 -0
  171. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/config.json +0 -0
  172. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/handler.py +0 -0
  173. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/config.json +0 -0
  174. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/docker_utils.py +0 -0
  175. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/handler.py +0 -0
  176. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/intro.md +0 -0
  177. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/mcp.json +0 -0
  178. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/prompt.md +0 -0
  179. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/config.json +0 -0
  180. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/handler.py +0 -0
  181. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/config.json +0 -0
  182. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/handler.py +0 -0
  183. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/config.json +0 -0
  184. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/handler.py +0 -0
  185. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/end/config.json +0 -0
  186. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/end/handler.py +0 -0
  187. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/config.json +0 -0
  188. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/handler.py +0 -0
  189. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/config.json +0 -0
  190. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/handler.py +0 -0
  191. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/config.json +0 -0
  192. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/handler.py +0 -0
  193. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/read/config.json +0 -0
  194. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/read/handler.py +0 -0
  195. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/config.json +0 -0
  196. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/handler.py +0 -0
  197. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/config.json +0 -0
  198. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/handler.py +0 -0
  199. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/config.json +0 -0
  200. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/handler.py +0 -0
  201. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/write/config.json +0 -0
  202. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/code_delivery_agent/tools/write/handler.py +0 -0
  203. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/README.md +0 -0
  204. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/config.json +0 -0
  205. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/handler.py +0 -0
  206. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/intro.md +0 -0
  207. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/prompt.md +0 -0
  208. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/__init__.py +0 -0
  209. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/config.json +0 -0
  210. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/handler.py +0 -0
  211. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/config.json +0 -0
  212. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/handler.py +0 -0
  213. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/config.json +0 -0
  214. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/handler.py +0 -0
  215. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/config.json +0 -0
  216. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/handler.py +0 -0
  217. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/config.json +0 -0
  218. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/handler.py +0 -0
  219. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/README.md +0 -0
  220. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/__init__.py +0 -0
  221. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/config.json +0 -0
  222. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/handler.py +0 -0
  223. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/intro.md +0 -0
  224. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/prompt.md +0 -0
  225. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/__init__.py +0 -0
  226. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/config.json +0 -0
  227. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/handler.py +0 -0
  228. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/config.json +0 -0
  229. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/handler.py +0 -0
  230. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/config.json +0 -0
  231. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/handler.py +0 -0
  232. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/config.json +0 -0
  233. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/handler.py +0 -0
  234. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/config.json +0 -0
  235. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/handler.py +0 -0
  236. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/config.json +0 -0
  237. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/handler.py +0 -0
  238. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/config.json +0 -0
  239. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/handler.py +0 -0
  240. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/config.json +0 -0
  241. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/handler.py +0 -0
  242. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/config.json +0 -0
  243. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/handler.py +0 -0
  244. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/config.json +0 -0
  245. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/handler.py +0 -0
  246. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/config.json +0 -0
  247. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/handler.py +0 -0
  248. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/README.md +0 -0
  249. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/config.json +0 -0
  250. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/handler.py +0 -0
  251. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/intro.md +0 -0
  252. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/prompt.md +0 -0
  253. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/__init__.py +0 -0
  254. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/config.json +0 -0
  255. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/handler.py +0 -0
  256. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/baiduhot/config.json +0 -0
  257. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/baiduhot/handler.py +0 -0
  258. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/base64/config.json +0 -0
  259. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/base64/handler.py +0 -0
  260. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/config.json +0 -0
  261. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/handler.py +0 -0
  262. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/config.json +0 -0
  263. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/handler.py +0 -0
  264. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/douyinhot/config.json +0 -0
  265. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/douyinhot/handler.py +0 -0
  266. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/gold_price/config.json +0 -0
  267. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/gold_price/handler.py +0 -0
  268. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/hash/config.json +0 -0
  269. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/hash/handler.py +0 -0
  270. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/history/config.json +0 -0
  271. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/history/handler.py +0 -0
  272. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/net_check/config.json +0 -0
  273. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/net_check/handler.py +0 -0
  274. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/config.json +0 -0
  275. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/handler.py +0 -0
  276. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/speed/config.json +0 -0
  277. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/speed/handler.py +0 -0
  278. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/tcping/config.json +0 -0
  279. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/tcping/handler.py +0 -0
  280. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weather_query/config.json +0 -0
  281. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weather_query/handler.py +0 -0
  282. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weibohot/config.json +0 -0
  283. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/weibohot/handler.py +0 -0
  284. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/whois/config.json +0 -0
  285. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/info_agent/tools/whois/handler.py +0 -0
  286. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/intro_generator.py +0 -0
  287. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/intro_utils.py +0 -0
  288. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/README.md +0 -0
  289. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/config.json +0 -0
  290. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/handler.py +0 -0
  291. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/intro.md +0 -0
  292. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/mcp.json +0 -0
  293. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/prompt.md +0 -0
  294. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/__init__.py +0 -0
  295. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/config.json +0 -0
  296. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/handler.py +0 -0
  297. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/config.json +0 -0
  298. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/handler.py +0 -0
  299. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/config.json +0 -0
  300. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/handler.py +0 -0
  301. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/config.json +0 -0
  302. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/handler.py +0 -0
  303. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/config.json +0 -0
  304. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/handler.py +0 -0
  305. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/__init__.py +0 -0
  306. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/config.json +0 -0
  307. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/tools/__init__.py +0 -0
  308. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/config.json +0 -0
  309. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/README.md +0 -0
  310. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/callable.json +0 -0
  311. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/config.json +0 -0
  312. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/handler.py +0 -0
  313. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/intro.md +0 -0
  314. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/mcp.json +0 -0
  315. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/prompt.md +0 -0
  316. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/__init__.py +0 -0
  317. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/config.json +0 -0
  318. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/handler.py +0 -0
  319. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/grok_search/config.json +0 -0
  320. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/grok_search/handler.py +0 -0
  321. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/web_search/config.json +0 -0
  322. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/agents/web_agent/tools/web_search/handler.py +0 -0
  323. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/anthropic_skills/__init__.py +0 -0
  324. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/anthropic_skills/loader.py +0 -0
  325. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/README.md +0 -0
  326. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/README.md +0 -0
  327. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/config.json +0 -0
  328. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/admin/handler.py +0 -0
  329. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/README.md +0 -0
  330. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/config.json +0 -0
  331. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/bugfix/handler.py +0 -0
  332. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/README.md +0 -0
  333. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/config.json +0 -0
  334. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/changelog/handler.py +0 -0
  335. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/README.md +0 -0
  336. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/config.json +0 -0
  337. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/copyright/handler.py +0 -0
  338. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/README.md +0 -0
  339. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/config.json +0 -0
  340. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/faq/handler.py +0 -0
  341. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/feedback/README.md +0 -0
  342. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/feedback/config.json +0 -0
  343. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/feedback/handler.py +0 -0
  344. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/README.md +0 -0
  345. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/config.json +0 -0
  346. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/help/handler.py +0 -0
  347. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/README.md +0 -0
  348. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/config.json +0 -0
  349. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/handler.py +0 -0
  350. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/naga/policy.py +0 -0
  351. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/README.md +0 -0
  352. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/config.json +0 -0
  353. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/profile/handler.py +0 -0
  354. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/README.md +0 -0
  355. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/config.json +0 -0
  356. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/stats/handler.py +0 -0
  357. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/summary/config.json +0 -0
  358. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/version/config.json +0 -0
  359. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/commands/version/handler.py +0 -0
  360. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/http_client.py +0 -0
  361. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/http_config.py +0 -0
  362. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/__init__.py +0 -0
  363. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/arxiv/config.json +0 -0
  364. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/arxiv/handler.py +0 -0
  365. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/bilibili/config.json +0 -0
  366. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/bilibili/handler.py +0 -0
  367. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/context.py +0 -0
  368. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/github/config.json +0 -0
  369. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/github/handler.py +0 -0
  370. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/models.py +0 -0
  371. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/pipelines/registry.py +0 -0
  372. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/registry.py +0 -0
  373. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/__init__.py +0 -0
  374. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/README.md +0 -0
  375. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/config.json +0 -0
  376. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/arxiv_paper/handler.py +0 -0
  377. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/README.md +0 -0
  378. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/config.json +0 -0
  379. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/bilibili_video/handler.py +0 -0
  380. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/callable.json +0 -0
  381. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/config.json +0 -0
  382. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/calculator/handler.py +0 -0
  383. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/README.md +0 -0
  384. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/config.json +0 -0
  385. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/changelog_query/handler.py +0 -0
  386. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/README.md +0 -0
  387. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/config.json +0 -0
  388. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/end/handler.py +0 -0
  389. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/fetch_image_uid/config.json +0 -0
  390. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/fetch_image_uid/handler.py +0 -0
  391. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/README.md +0 -0
  392. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/callable.json +0 -0
  393. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/config.json +0 -0
  394. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_current_time/handler.py +0 -0
  395. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/README.md +0 -0
  396. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/config.json +0 -0
  397. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_picture/handler.py +0 -0
  398. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/README.md +0 -0
  399. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/config.json +0 -0
  400. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/get_user_info/handler.py +0 -0
  401. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_list/config.json +0 -0
  402. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_list/handler.py +0 -0
  403. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_semantic_search/config.json +0 -0
  404. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_semantic_search/handler.py +0 -0
  405. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_text_search/config.json +0 -0
  406. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/knowledge_text_search/handler.py +0 -0
  407. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/README.md +0 -0
  408. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/config.json +0 -0
  409. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/python_interpreter/handler.py +0 -0
  410. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/README.md +0 -0
  411. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/config.json +0 -0
  412. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/qq_like/handler.py +0 -0
  413. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/task_progress/config.json +0 -0
  414. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/tools/task_progress/handler.py +0 -0
  415. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/README.md +0 -0
  416. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/__init__.py +0 -0
  417. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/config.json +0 -0
  418. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/handler.py +0 -0
  419. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/config.json +0 -0
  420. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/handler.py +0 -0
  421. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/get_profile/config.json +0 -0
  422. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/get_profile/handler.py +0 -0
  423. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_events/config.json +0 -0
  424. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_events/handler.py +0 -0
  425. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_profiles/config.json +0 -0
  426. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/cognitive/search_profiles/handler.py +0 -0
  427. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_friends/config.json +0 -0
  428. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_friends/handler.py +0 -0
  429. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_groups/config.json +0 -0
  430. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/contacts/query_groups/handler.py +0 -0
  431. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/README.md +0 -0
  432. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/find_member/config.json +0 -0
  433. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/find_member/handler.py +0 -0
  434. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_avatar/config.json +0 -0
  435. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_avatar/handler.py +0 -0
  436. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_files/config.json +0 -0
  437. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_files/handler.py +0 -0
  438. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_honor_info/config.json +0 -0
  439. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_honor_info/handler.py +0 -0
  440. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_info/config.json +0 -0
  441. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_info/handler.py +0 -0
  442. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_list/config.json +0 -0
  443. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_list/handler.py +0 -0
  444. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_title/config.json +0 -0
  445. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group/get_member_title/handler.py +0 -0
  446. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/README.md +0 -0
  447. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/activity_trend/config.json +0 -0
  448. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/activity_trend/handler.py +0 -0
  449. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/filter_members/config.json +0 -0
  450. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/filter_members/handler.py +0 -0
  451. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/config.json +0 -0
  452. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/handler.py +0 -0
  453. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/join_statistics/config.json +0 -0
  454. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/join_statistics/handler.py +0 -0
  455. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/level_distribution/config.json +0 -0
  456. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/level_distribution/handler.py +0 -0
  457. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_activity/config.json +0 -0
  458. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_activity/handler.py +0 -0
  459. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_messages/config.json +0 -0
  460. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_messages/handler.py +0 -0
  461. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_structure/config.json +0 -0
  462. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/member_structure/handler.py +0 -0
  463. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/message_mix/config.json +0 -0
  464. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/message_mix/handler.py +0 -0
  465. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/config.json +0 -0
  466. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/handler.py +0 -0
  467. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/rank_members/config.json +0 -0
  468. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/group_analysis/rank_members/handler.py +0 -0
  469. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/mcp/README.md +0 -0
  470. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/mcp/__init__.py +0 -0
  471. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/README.md +0 -0
  472. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/search_memes/config.json +0 -0
  473. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/search_memes/handler.py +0 -0
  474. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/config.json +0 -0
  475. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/handler.py +0 -0
  476. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/README.md +0 -0
  477. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/add/config.json +0 -0
  478. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/add/handler.py +0 -0
  479. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/delete/config.json +0 -0
  480. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/delete/handler.py +0 -0
  481. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/list/config.json +0 -0
  482. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/list/handler.py +0 -0
  483. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/update/config.json +0 -0
  484. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/memory/update/handler.py +0 -0
  485. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/README.md +0 -0
  486. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_forward_msg/config.json +0 -0
  487. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_forward_msg/handler.py +0 -0
  488. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_messages_by_time/config.json +0 -0
  489. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_messages_by_time/handler.py +0 -0
  490. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_recent_messages/config.json +0 -0
  491. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/get_recent_messages/handler.py +0 -0
  492. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/list_emojis/config.json +0 -0
  493. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/list_emojis/handler.py +0 -0
  494. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/config.json +0 -0
  495. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/handler.py +0 -0
  496. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/react_message_emoji/config.json +0 -0
  497. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/react_message_emoji/handler.py +0 -0
  498. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_group_sign/config.json +0 -0
  499. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_group_sign/handler.py +0 -0
  500. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_message/config.json +0 -0
  501. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_message/handler.py +0 -0
  502. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_poke/config.json +0 -0
  503. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_poke/handler.py +0 -0
  504. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_private_message/config.json +0 -0
  505. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_private_message/handler.py +0 -0
  506. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/callable.json +0 -0
  507. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/config.json +0 -0
  508. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_text_file/handler.py +0 -0
  509. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/callable.json +0 -0
  510. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/config.json +0 -0
  511. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/messages/send_url_file/handler.py +0 -0
  512. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/README.md +0 -0
  513. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/get/config.json +0 -0
  514. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/get/handler.py +0 -0
  515. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/list/config.json +0 -0
  516. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/list/handler.py +0 -0
  517. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/stats/config.json +0 -0
  518. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/notices/stats/handler.py +0 -0
  519. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/README.md +0 -0
  520. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_html/config.json +0 -0
  521. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_html/handler.py +0 -0
  522. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_latex/config.json +0 -0
  523. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_latex/handler.py +0 -0
  524. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_markdown/config.json +0 -0
  525. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/render/render_markdown/handler.py +0 -0
  526. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/README.md +0 -0
  527. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/config.json +0 -0
  528. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/handler.py +0 -0
  529. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/config.json +0 -0
  530. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/handler.py +0 -0
  531. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/config.json +0 -0
  532. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/handler.py +0 -0
  533. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/config.json +0 -0
  534. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/handler.py +0 -0
  535. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/token_usage_storage.py +0 -0
  536. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/__init__.py +0 -0
  537. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/cache.py +0 -0
  538. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/coerce.py +0 -0
  539. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/common.py +0 -0
  540. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/cors.py +0 -0
  541. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/fake_at.py +0 -0
  542. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/file_lock.py +0 -0
  543. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/group_metrics.py +0 -0
  544. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/history.py +0 -0
  545. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/http_download.py +0 -0
  546. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/io.py +0 -0
  547. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/logging.py +0 -0
  548. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/member_utils.py +0 -0
  549. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/message_targets.py +0 -0
  550. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/message_utils.py +0 -0
  551. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/paths.py +0 -0
  552. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/qq_emoji.py +0 -0
  553. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/queue_intervals.py +0 -0
  554. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/recent_messages.py +0 -0
  555. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/render_cache.py +0 -0
  556. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/request_params.py +0 -0
  557. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/resources.py +0 -0
  558. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/scheduler.py +0 -0
  559. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/self_update.py +0 -0
  560. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/sender.py +0 -0
  561. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/time_utils.py +0 -0
  562. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/tool_calls.py +0 -0
  563. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/utils/xml.py +0 -0
  564. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/__init__.py +0 -0
  565. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/__main__.py +0 -0
  566. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/app.py +0 -0
  567. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/core.py +0 -0
  568. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/__init__.py +0 -0
  569. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_auth.py +0 -0
  570. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_bot.py +0 -0
  571. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_config.py +0 -0
  572. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_index.py +0 -0
  573. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_logs.py +0 -0
  574. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_memes.py +0 -0
  575. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_runtime.py +0 -0
  576. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_shared.py +0 -0
  577. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/routes/_system.py +0 -0
  578. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/.stylelintrc.json +0 -0
  579. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/app.css +0 -0
  580. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/base.css +0 -0
  581. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/components.css +0 -0
  582. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/landing.css +0 -0
  583. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/responsive.css +0 -0
  584. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/style.css +0 -0
  585. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/css/variables.css +0 -0
  586. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/favicon.svg +0 -0
  587. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/api.js +0 -0
  588. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/auth.js +0 -0
  589. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/bot.js +0 -0
  590. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/i18n.js +0 -0
  591. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/log-view.js +0 -0
  592. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/logs.js +0 -0
  593. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/main.js +0 -0
  594. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/memes.js +0 -0
  595. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/runtime.js +0 -0
  596. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/state.js +0 -0
  597. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/ui.js +0 -0
  598. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/static/js/vendor/marked.min.js +0 -0
  599. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/templates/index.html +0 -0
  600. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/utils/__init__.py +0 -0
  601. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/utils/comment.py +0 -0
  602. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/utils/config_io.py +0 -0
  603. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/utils/config_sync.py +0 -0
  604. {undefined_bot-3.4.1 → undefined_bot-3.4.2}/src/Undefined/webui/utils/toml_render.py +0 -0
@@ -1,3 +1,16 @@
1
+ ## v3.4.2 总结更准、上下文可配、高并发更稳
2
+
3
+ 本版本主要解决三类实际问题:群聊消息变长、合并发送变多之后,`/summary` 容易慢、容易编、分块预算也不准;主对话注入历史的 200 条硬顶与模型真实窗口脱节;高并发下用户连问「在吗」「好了吗」时,机器人仍可能把旧任务当新活重跑。围绕这些痛点,版本把「用户主动要总结」和「AI 自己调总结能力」拆成两条更合适的链路,用可配置的上下文窗口统一约束注入与分块,并同步收紧提示词、史官侧写与定时任务持久化,让总结更可信、配置更贴近上游模型、并发场景下更少重复劳动。
4
+
5
+ - 提升消息总结的质量与效率。用户通过 `/summary`、`/sum` 获取总结时,改为直连 summary 模型一次性完成,不再绕 Agent 工具链,响应更快、路径更简单;AI 在对话里调用总结能力时,仍保留 Agent + 拉取历史的灵活流程。长会话按模型上下文窗口自动分段、队列内合并,并配套「只读原始记录、禁止编造」的专用提示词,减少幻觉与无关发挥。
6
+ - 理顺上下文与模型配置边界。取消历史注入 200 条的隐性上限,改由 `context_recent_messages_limit` 与历史存储上限共同决定;各模型节新增 `context_window_tokens`,总结分块、Prompt 预算与实际上游窗口对齐,不再依赖硬编码或误用 `max_tokens`。同时补齐 `reasoning_content_replay`、`system_prompt_as_user`,便于 MiMo、DeepSeek 等 thinking 模型在多轮工具调用时正确续传思维链,或按网关要求改写 system 注入方式。
7
+ - 强化高并发下的任务边界。系统提示词与 each 规则进一步明确:催促、寒暄不等于新任务,历史未完成任务不得自动拾取;启动业务工具前须检查是否已有同类或语义等价操作在处理,有则熔断为简短进度回复而非重跑;无依赖的工具与 Agent 仍鼓励并行,有数据依赖则必须串行,与 MessageBatcher 的批次语义一致。
8
+ - 优化认知侧写的长期画像质量。史官合并侧写时必须先读取再更新,以增量补充稳定特征为主,一次性闲聊或无法沉淀为长期特质的事件应跳过,避免侧写被单轮对话冲散或写成流水账。
9
+ - 修复「向未来的自己发指令」定时任务无法恢复。持久化任务若包含 `self_instruction`,此前会导致整表反序列化失败;现已补齐字段定义,自调用类定时任务可正常加载与执行。
10
+ - 更新配置文档、WebUI 表单与相关测试,覆盖总结直连、上下文窗口、模型对接选项与并发防重复等关键路径。
11
+
12
+ ---
13
+
1
14
  ## v3.4.1 附件缓存治理、隐私安全防线与B站管线重构
2
15
 
3
16
  本版本围绕三大主线展开:一是附件系统的缓存容量治理与 URL 引用回退机制,防止本地缓存无限制膨胀;二是系统提示词新增 P0 级隐私与危险动作边界规则,从源头约束 AI 对敏感信息和安全请求的处理行为;三是 B 站自动管线全面重构——移除外部下载依赖、内联实现 API 客户端与 WBI 签名、新增弹幕获取并以合并转发形式发送提取结果。同步新增 `/feedback` 反馈命令、恢复发布说明中的分类提交详情,并修正提示词优先级体系。
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Undefined-bot
3
- Version: 3.4.1
3
+ Version: 3.4.2
4
4
  Summary: QQ bot platform with cognitive memory architecture and multi-agent Skills, via OneBot V11.
5
5
  Project-URL: Repository, https://github.com/69gg/Undefined
6
6
  Project-URL: Issues, https://github.com/69gg/Undefined/issues
@@ -82,6 +82,8 @@ Description-Content-Type: text/markdown
82
82
 
83
83
  ### _与 [NagaAgent](https://github.com/Xxiii8322766509/NagaAgent) 进行联动!_
84
84
 
85
+ > 学业繁忙,暂缓更新至六月下旬,在此期间仅作必要bugfix。
86
+
85
87
  ---
86
88
 
87
89
  ## ⚡ 立即体验
@@ -23,6 +23,8 @@
23
23
 
24
24
  ### _与 [NagaAgent](https://github.com/Xxiii8322766509/NagaAgent) 进行联动!_
25
25
 
26
+ > 学业繁忙,暂缓更新至六月下旬,在此期间仅作必要bugfix。
27
+
26
28
  ---
27
29
 
28
30
  ## ⚡ 立即体验
@@ -22,8 +22,8 @@ process_private_message = true
22
22
  # zh: 是否响应拍一拍。关闭后拍一拍事件将被忽略。
23
23
  # en: Respond to poke events. If disabled, poke events are ignored.
24
24
  process_poke_message = true
25
- # zh: 注入给模型的最近历史消息条数上限(0-200,0 表示不注入历史)。
26
- # en: Max number of recent messages injected as model context (0-200; 0 disables history injection).
25
+ # zh: 注入给模型的最近历史消息条数(0 表示不注入;无固定上限,受 max_records 与存储约束)。
26
+ # en: Recent messages injected as model context (0 disables; no fixed cap; bounded by max_records/storage).
27
27
  context_recent_messages_limit = 20
28
28
  # zh: 单次 LLM 请求失败时最大静默重试次数(0=不重试,默认2)。失败的请求会回到原队列的第 2 个位置。
29
29
  # en: Max silent retries for a single failed LLM request (0=no retry, default 2). Failed requests are reinserted at position 2 of their original queue lane.
@@ -89,6 +89,10 @@ model_name = ""
89
89
  # zh: 最大生成 tokens。
90
90
  # en: Max generation tokens.
91
91
  max_tokens = 8192
92
+
93
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
94
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
95
+ context_window_tokens = 32768
92
96
  # zh: 队列发车间隔(秒,0 表示立即发车)。
93
97
  # en: Queue interval (seconds; 0 dispatches immediately).
94
98
  queue_interval_seconds = 1.0
@@ -113,9 +117,15 @@ thinking_include_budget = true
113
117
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
114
118
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
115
119
  reasoning_effort_style = "openai"
116
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
117
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
120
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
121
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
118
122
  thinking_tool_call_compat = true
123
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
124
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
125
+ reasoning_content_replay = false
126
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
127
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
128
+ system_prompt_as_user = false
119
129
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
120
130
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
121
131
  responses_tool_choice_compat = false
@@ -161,6 +171,10 @@ model_name = ""
161
171
  # zh: Vision 模型最大输出 tokens。启用 thinking 时建议设大(如 8192),确保思维链消耗后仍有余量输出工具调用。
162
172
  # en: Vision model max output tokens. When thinking is enabled, use a larger value (e.g. 8192) so there is still room for tool-call output after thinking.
163
173
  max_tokens = 8192
174
+
175
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
176
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
177
+ context_window_tokens = 32768
164
178
  # zh: 队列发车间隔(秒,0 表示立即发车)。
165
179
  # en: Queue interval (seconds; 0 dispatches immediately).
166
180
  queue_interval_seconds = 1.0
@@ -185,9 +199,15 @@ thinking_include_budget = true
185
199
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
186
200
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
187
201
  reasoning_effort_style = "openai"
188
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
189
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
202
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
203
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
190
204
  thinking_tool_call_compat = true
205
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
206
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
207
+ reasoning_content_replay = false
208
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
209
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
210
+ system_prompt_as_user = false
191
211
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
192
212
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
193
213
  responses_tool_choice_compat = false
@@ -223,6 +243,10 @@ model_name = ""
223
243
  # zh: 可选限制:最大生成 tokens。
224
244
  # en: Optional limit: max generation tokens.
225
245
  max_tokens = 100
246
+
247
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
248
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
249
+ context_window_tokens = 8192
226
250
  # zh: 队列发车间隔(秒,0 表示立即发车)。
227
251
  # en: Queue interval (seconds; 0 dispatches immediately).
228
252
  queue_interval_seconds = 1.0
@@ -247,9 +271,15 @@ thinking_include_budget = true
247
271
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
248
272
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
249
273
  reasoning_effort_style = "openai"
250
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
251
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
274
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
275
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
252
276
  thinking_tool_call_compat = true
277
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
278
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
279
+ reasoning_content_replay = false
280
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
281
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
282
+ system_prompt_as_user = false
253
283
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
254
284
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
255
285
  responses_tool_choice_compat = false
@@ -284,6 +314,10 @@ model_name = ""
284
314
  # zh: 可选限制:最大生成 tokens。
285
315
  # en: Optional limit: max generation tokens.
286
316
  max_tokens = 160
317
+
318
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
319
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
320
+ context_window_tokens = 8192
287
321
  # zh: 队列发车间隔(秒,0 表示立即发车)。
288
322
  # en: Queue interval (seconds; 0 dispatches immediately).
289
323
  queue_interval_seconds = 1.0
@@ -308,9 +342,15 @@ thinking_include_budget = true
308
342
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
309
343
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
310
344
  reasoning_effort_style = "openai"
311
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
312
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
345
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
346
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
313
347
  thinking_tool_call_compat = true
348
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
349
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
350
+ reasoning_content_replay = false
351
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
352
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
353
+ system_prompt_as_user = false
314
354
  # zh: Responses API 的 tool_choice 兼容模式。
315
355
  # en: Responses API tool_choice compatibility mode.
316
356
  responses_tool_choice_compat = false
@@ -340,6 +380,10 @@ model_name = ""
340
380
  # zh: 可选限制:最大生成 tokens。
341
381
  # en: Optional limit: max generation tokens.
342
382
  max_tokens = 4096
383
+
384
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
385
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
386
+ context_window_tokens = 32768
343
387
  # zh: 队列发车间隔(秒,0 表示立即发车)。
344
388
  # en: Queue interval (seconds; 0 dispatches immediately).
345
389
  queue_interval_seconds = 1.0
@@ -364,9 +408,15 @@ thinking_include_budget = true
364
408
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
365
409
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
366
410
  reasoning_effort_style = "openai"
367
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
368
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
411
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
412
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
369
413
  thinking_tool_call_compat = true
414
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
415
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
416
+ reasoning_content_replay = false
417
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
418
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
419
+ system_prompt_as_user = false
370
420
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
371
421
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
372
422
  responses_tool_choice_compat = false
@@ -412,6 +462,10 @@ model_name = ""
412
462
  # zh: 可选限制:最大生成 tokens。
413
463
  # en: Optional limit: max generation tokens.
414
464
  max_tokens = 4096
465
+
466
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
467
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
468
+ context_window_tokens = 32768
415
469
  # zh: 队列发车间隔(秒,0 表示立即发车)。
416
470
  # en: Queue interval (seconds; 0 dispatches immediately).
417
471
  queue_interval_seconds = 1.0
@@ -436,9 +490,15 @@ thinking_include_budget = true
436
490
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
437
491
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
438
492
  reasoning_effort_style = "openai"
439
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
440
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
493
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
494
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
441
495
  thinking_tool_call_compat = true
496
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
497
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
498
+ reasoning_content_replay = false
499
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
500
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
501
+ system_prompt_as_user = false
442
502
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。当前已在 new-api v0.11.4-alpha.3 发现该问题。默认关闭。
443
503
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. This issue is currently observed on new-api v0.11.4-alpha.3. Disabled by default.
444
504
  responses_tool_choice_compat = false
@@ -456,8 +516,8 @@ stream_enabled = false
456
516
  # en: Extra request-body params (optional), e.g. temperature or vendor-specific fields.
457
517
  [models.historian.request_params]
458
518
 
459
- # zh: 消息总结模型配置(/summary /sum 专用;未配置时回退到 agent 模型)。
460
- # en: Message-summary model config (used by /summary and /sum; falls back to the agent model when unset).
519
+ # zh: 消息总结模型配置(/summary /sum 与 SummaryService 专用;未配置时回退到 agent 模型;主 AI 调用 summary_agent 不使用此段配置)。
520
+ # en: Message-summary model config (used by /summary, /sum, and SummaryService; falls back to the agent model when unset; summary_agent invoked by the main AI does not use this section).
461
521
  [models.summary]
462
522
  # zh: OpenAI-compatible 基址 URL,例如 https://api.openai.com/v1(legacy "/chat/completions" 已弃用但仍兼容)。
463
523
  # en: OpenAI-compatible base URL, e.g. https://api.openai.com/v1. Note: legacy "/chat/completions" is deprecated but still supported.
@@ -471,6 +531,10 @@ model_name = ""
471
531
  # zh: 可选限制:最大生成 tokens。
472
532
  # en: Optional limit: max generation tokens.
473
533
  max_tokens = 4096
534
+
535
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
536
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
537
+ context_window_tokens = 32768
474
538
  # zh: 队列发车间隔(秒,0 表示立即发车)。
475
539
  # en: Queue interval (seconds; 0 dispatches immediately).
476
540
  queue_interval_seconds = 1.0
@@ -495,9 +559,15 @@ thinking_include_budget = true
495
559
  # zh: reasoning effort 传参风格:openai(reasoning.effort)/ anthropic(output_config.effort)。
496
560
  # en: Reasoning effort wire format: openai (reasoning.effort) / anthropic (output_config.effort).
497
561
  reasoning_effort_style = "openai"
498
- # zh: 思维链工具调用兼容:启用后在多轮工具调用中回传 reasoning_content,避免部分模型返回 400。
499
- # en: Thinking tool-call compatibility: pass back reasoning_content in multi-turn tool calls to avoid 400 errors from some models.
562
+ # zh: 思维链工具调用兼容:多轮工具调用时在本地历史回填 reasoning_content(日志/回放),不向上游续传。
563
+ # en: Thinking tool-call compatibility: locally store reasoning_content in history for multi-turn tool calls (logging/replay), not upstream replay.
500
564
  thinking_tool_call_compat = true
565
+ # zh: 多轮工具调用时是否将 CoT 续传给上游(Chat: reasoning_content;Responses: output items)。默认 false。
566
+ # en: Relay chain-of-thought to upstream on multi-turn tool calls (Chat: reasoning_content; Responses: output items). Default false.
567
+ reasoning_content_replay = false
568
+ # zh: 是否将所有 system 提示词合并注入第一条 user 消息(适配不支持 system role 的模型)。默认 false。
569
+ # en: Merge all system prompts into the first user message (for models without system role). Default false.
570
+ system_prompt_as_user = false
501
571
  # zh: Responses API 的 tool_choice 兼容模式:仅在关闭时请求仍返回 500、怀疑上游不兼容对象型 tool_choice 时再尝试开启;开启后上报为 "required" 并只保留目标工具。默认关闭。
502
572
  # en: Responses API tool_choice compatibility mode: only try enabling this when requests still return 500 with the default setting and you suspect the upstream does not support object-style tool_choice; it sends "required" and keeps only the selected tool. Disabled by default.
503
573
  responses_tool_choice_compat = false
@@ -530,6 +600,10 @@ model_name = ""
530
600
  # zh: 可选限制:最大生成 tokens。
531
601
  # en: Optional limit: max generation tokens.
532
602
  max_tokens = 8192
603
+
604
+ # zh: 模型上下文窗口上限(token),用于 /summary 分块与 Prompt 预算;须与上游模型能力一致。
605
+ # en: Model context window cap (tokens) for /summary chunking and prompt budgeting; must match upstream capability.
606
+ context_window_tokens = 32768
533
607
  # zh: 队列发车间隔(秒,0 表示立即发车)。
534
608
  # en: Queue interval (seconds; 0 dispatches immediately).
535
609
  queue_interval_seconds = 1.0
@@ -574,6 +648,10 @@ api_key = ""
574
648
  # zh: Embedding 模型名称。
575
649
  # en: Embedding model name.
576
650
  model_name = ""
651
+
652
+ # zh: 模型上下文窗口上限(token,可选);嵌入/重排场景通常保持默认即可。
653
+ # en: Model context window cap (tokens, optional); embedding/rerank can usually keep the default.
654
+ context_window_tokens = 8192
577
655
  # zh: 队列发车间隔(秒,0 表示立即发车)。
578
656
  # en: Queue interval (seconds; 0 dispatches immediately).
579
657
  queue_interval_seconds = 0.0
@@ -603,6 +681,10 @@ api_key = ""
603
681
  # zh: Rerank 模型名称。
604
682
  # en: Rerank model name.
605
683
  model_name = ""
684
+
685
+ # zh: 模型上下文窗口上限(token,可选);嵌入/重排场景通常保持默认即可。
686
+ # en: Model context window cap (tokens, optional); embedding/rerank can usually keep the default.
687
+ context_window_tokens = 8192
606
688
  # zh: 队列发车间隔(秒,0 表示立即发车)。
607
689
  # en: Queue interval (seconds; 0 dispatches immediately).
608
690
  queue_interval_seconds = 0.0
@@ -812,11 +894,11 @@ filtered_result_limit = 200
812
894
  # zh: 工具过滤搜索时扫描的最大消息条数。
813
895
  # en: Max messages to scan when tools perform filtered searches.
814
896
  search_scan_limit = 10000
815
- # zh: 总结 agent 单次拉取的最大消息条数。
816
- # en: Max messages the summary agent can fetch per call.
897
+ # zh: /summary 按条数拉取时的最大消息条数(可配置,无固定 500 上限;受 max_records 约束)。
898
+ # en: Max messages fetched per /summary count request (configurable; no fixed 500 cap; bounded by max_records).
817
899
  summary_fetch_limit = 1000
818
- # zh: 总结 agent 按时间范围查询时的最大拉取条数。
819
- # en: Max messages the summary agent fetches for time-range queries.
900
+ # zh: /summary 按时间范围查询时的最大扫描条数(可配置)。
901
+ # en: Max messages scanned for /summary time-range queries (configurable).
820
902
  summary_time_fetch_limit = 5000
821
903
  # zh: OneBot API 回退获取的最大消息条数。
822
904
  # en: Max messages to fetch via OneBot API fallback.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "Undefined-bot"
3
- version = "3.4.1"
3
+ version = "3.4.2"
4
4
  description = "QQ bot platform with cognitive memory architecture and multi-agent Skills, via OneBot V11."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -1,7 +1,7 @@
1
1
  <rule num="0" priority="P0" id="严防并发导致的重复">
2
2
  <step num="1">明确你这轮的目标(例如:写一个文章;对本条消息/当前输入批次做出合适回应等)或是最后产生的结果或进行的调用(例如:会产生一条消息;会调用某个agent等)</step>
3
- <step num="2">回看当前输入批次之外的历史消息,确认不会有旧消息线程导致你产生同样的目标、结果或调用。若有,立刻停止所有操作!!!改为根据情景发送应付性回答(例如:"在做了在做了"等)。</step>
4
- <MUST priority="P0">以上步骤**必须**在进行任何操作之前进行执行、判断!!始终遵循规则:幽灵任务绝对隔离!!以前的消息仅做辅助判断和上下文补全,不要因为乐于助人处理之前消息列表里的任何消息!哪怕它是你必须要执行、处理的或没有回复!!以下规则仅适用于当前消息/当前输入批次,对以前消息不作数!!!</MUST>
3
+ <step num="2">回看当前输入批次之外的历史消息,扫描相同或语义等价的工具/Agent 调用或消息发送;若已在处理或已完成,立刻停止所有操作!!!改为根据情景发送应付性回答(例如:"在做了在做了"、"已经在处理了"等)。</step>
4
+ <MUST priority="P0">以上步骤**必须**在进行任何操作之前进行执行、判断!!始终遵循规则:幽灵任务绝对隔离!!以前的消息仅做辅助判断和上下文补全,不要因为乐于助人处理之前消息列表里的任何消息!哪怕它是你必须要执行、处理的或没有回复!!「催促」「在吗」「好了吗」不等于新任务或重做许可;历史未完成任务永不自动拾取,除非当前输入批次明确重新发起并给出完整参数。以下规则仅适用于当前消息/当前输入批次,对以前消息不作数!!!</MUST>
5
5
  </rule>
6
6
 
7
7
  <current_input_batch_definition priority="P0">
@@ -15,7 +15,7 @@
15
15
  <pre_action_mandatory_check priority="P0">
16
16
  **发信息前或调用任何工具前的必须判断(每次操作前强制执行):**
17
17
  1. 明确本次操作的目标:将发送的消息内容 / 将调用的工具及参数
18
- 2. 回看当前输入批次之外的历史消息,确认不会有旧消息线程导致你(bot)产生同样的工具调用或内容相似的消息发送
18
+ 2. 回看当前输入批次之外的历史消息,扫描相同或语义等价的工具/Agent 调用或相似消息发送
19
19
  - 若无 → 允许继续
20
- - 若有 → **立刻停止所有操作!!!** 改为根据情景发送应付性回答(例如:"在做了在做了"、"已经在处理了"等),然后调用 end。不可以发送临时的、不过脑子的错误回复!
20
+ - 若有 → **硬性熔断**:立刻停止所有业务工具/Agent,仅口头回应(例如:"在做了在做了"、"已经在处理了"等),然后调用 end。不可以发送临时的、不过脑子的错误重跑!
21
21
  </pre_action_mandatory_check>
@@ -57,12 +57,16 @@
57
57
  7. **核心画像要抓独特性**:第一句要写出"这个人区别于其他人的本质",而非通用描述(如"开发者"太泛,"把系统当产线打理的工程型开发者"才有辨识度)
58
58
  8. 若 `current_profile` 本身不符合以上规范,可直接整体重写为合规版本(不必保留其原有写法)
59
59
 
60
+ 侧写 = **长期高层画像**:只保留身份、风格、偏好、能力等核心抽象,应能脱离具体聊天记录独立理解「这个人/群是谁」,而非「他做了什么」。
61
+
60
62
  严禁写入以下内容(这些属于事件记忆,不应进入侧写):
61
- - 某次/近期/今天/昨天的具体经过
63
+ - 任何具体事件、时间线、单次对话经过
64
+ - 某次/近期/今天/昨天/「曾/刚/最近」类时序描述
62
65
  - 具体数字统计(如 token 消耗、日均、高峰值)
63
66
  - 具体分支名、提交细节、安装排障步骤、一次性报错
64
67
  - "曾讨论/刚确认/近期提及/某次分享"等时序性描述
65
68
 
69
+ 若新信息仅为一次性事件、无法提炼为稳定特征,必须 `skip=true`。
66
70
  若本轮只有事件细节、无法抽象为长期稳定特征,必须 `skip=true`。
67
71
 
68
72
  `summary` 输出格式约束:
@@ -0,0 +1,12 @@
1
+ 下方是用「---」分隔的多段聊天总结。它们来自同一段较长聊天记录的不同片段,可能存在少量重复。
2
+
3
+ 请合并为一份完整、去重后的总结。
4
+
5
+ 要求:
6
+ - 只能综合各分段中已出现的信息,不得新增分段里没有的内容
7
+ - 去除重复表述,保留关键话题、事实、链接与结论
8
+ - 不要编造参与者、决策、待办或链接
9
+ - 使用 2 到 4 个短段落,朴素中文,不要 emoji,不要 markdown
10
+ - 直接输出合并后的总结正文,不要说明合并过程
11
+
12
+ 分段总结如下:
@@ -0,0 +1,33 @@
1
+ 你是一个聊天消息总结助手。你的唯一信息来源是用户提供的原始聊天记录。
2
+
3
+ ## 核心原则(必须遵守)
4
+ 1. **只读原始记录**:只能依据 `<message>` 块及其中的 `<content>` 总结;不得使用训练知识、常识推断或想象补全。
5
+ 2. **禁止编造**:不得虚构或猜测未在记录中出现的参与者、昵称、QQ 号、链接、文件、代码、决策、共识、待办、结论、时间线或因果关系。
6
+ 3. **信息不足就明说**:某类信息在记录里没有时,直接省略;不要写「可能」「大概」「应该是」;必要时可写「消息中未提及」。
7
+ 4. **不要复述原文**:不要大段复制聊天记录,不要输出 XML/HTML/JSON,不要逐条翻译消息。
8
+ 5. **不要元评论**:不要描述「我将如何总结」「以上是对 N 条消息的总结」等过程性文字;直接给出总结正文。
9
+
10
+ ## 如何阅读输入
11
+ - 每条 `<message>` 代表一条历史消息;正文在 `<content>` 内。
12
+ - `sender` / `sender_id` / `time` / `group_name` 等属性仅用于识别发言者与时间,不要把属性值当成额外事实来源。
13
+ - 若记录主要是表情、短回复、复读、寒暄或无效内容,简要说明即可,不要强行提炼「深度话题」。
14
+ - 忽略与聊天内容无关的系统说明、占位文本或格式标记。
15
+
16
+ ## 总结内容(按需选取,有则写、无则跳过)
17
+ - 主要讨论话题(可多个,按重要性排序)
18
+ - 明确出现的事实、请求、答复、约定或结论
19
+ - 记录里真实出现的重要链接、命令、文件名、错误信息
20
+ - 若用户指定了重点关注方向,优先覆盖该方向,但仍不得超出记录范围
21
+
22
+ ## 输出格式
23
+ - 使用 2 到 4 个短段落,朴素中文叙述
24
+ - 不要使用 emoji
25
+ - 不要使用复杂 markdown(不要列表、标题,可以使用 - )
26
+ - 保持客观中立,信息密度高,避免流水账
27
+ - 没有实质内容时,用一两句话说明「消息中主要是……,未涉及具体议题」
28
+
29
+ ## 禁止输出
30
+ - 编造的待办、决策、项目进展、人物关系
31
+ - 对聊天意图的心理揣测
32
+ - 工具调用、函数名、JSON、XML 片段
33
+ - 英文模板句或与记录无关的套话
@@ -74,6 +74,7 @@
74
74
  【致命错误警告】:如果你看到历史消息中有未回复的任务指令(如A说"写代码"),而当前输入批次只是无关内容或情绪表达(如B说"哈哈"、"它是啥"),**你绝对不能去执行历史指令!** 强行执行会导致系统级资源冲突和灾难性的重复发包。
75
75
  你唯一的主人是【当前输入批次】,历史全为只读背景。
76
76
  如果你需要调用任何会有外部作用的工具(如send_message)或任何Agent,**必须**查看之前消息,确认不会有消息使你触发一样的操作(除非需求改变)。如有,**立即停止执行**!!
77
+ 「催促」「在吗」「好了吗」「快点」等**不等于**新任务,也**不等于**重做许可;历史中的未完成任务**永不自动拾取**,除非当前输入批次明确重新发起并给出完整参数。
77
78
  </detail>
78
79
  </ghost_task_prevention>
79
80
 
@@ -117,14 +118,15 @@
117
118
  <pre_action_mandatory_check priority="P0">
118
119
  **发信息前或调用任何工具前的必须判断(每次操作前强制执行):**
119
120
  1. 明确本次操作的目标:将发送的消息内容 / 将调用的工具及参数
120
- 2. 回看当前输入批次之外的历史消息,确认不会有旧消息线程导致你(bot)产生同样的工具调用或内容相似的消息发送
121
+ 2. **历史同类操作扫描**:回看当前输入批次之外的历史,确认没有相同或语义等价的工具调用/Agent 已在处理或已完成
121
122
  - 若无 → 允许继续
122
- - 若有 → **立刻停止所有操作!!!** 改为根据情景发送应付性回答(例如:"在做了在做了"、"已经在处理了"等),然后调用 end。不可以发送临时的、不过脑子的错误回复!
123
+ - 若有 → **硬性熔断**:立刻停止所有业务工具/Agent,仅口头回应(如「在做了」「已经在处理了」)后 end;禁止临时、不过脑子的错误重跑
123
124
  3. 如果本次操作要启动业务工具或 Agent,先检查当前输入批次(无连续消息说明时就是最后一条消息)是否已经提供足够信息;若关键对象 / 目标 / 参数仍缺失,只允许轻量补全或简短追问,禁止直接开工
124
125
  </pre_action_mandatory_check>
125
126
 
126
127
  <tool_execution_mode priority="P0">
127
128
  **工具调用执行模式(重要):**
129
+ - **无依赖关系的多个工具/Agent 可在同一轮响应中并行调用**,以缩短延迟;有数据依赖时必须分轮串行
128
130
  - 在单次响应中,你可以调用多个工具,但所有工具调用会**并行执行**
129
131
  - 如果工具之间有依赖关系(需要串行执行),必须分多次响应调用
130
132
 
@@ -1251,7 +1253,8 @@
1251
1253
  </core_behavior>
1252
1254
 
1253
1255
  <golden_rules>
1254
- <rule priority="P0">调用任何业务工具前先做防重复检查:历史有同类任务且已在处理、当前无新参数时,必须熔断,禁止重做</rule>
1256
+ <rule priority="P0">调用任何业务工具前先做防重复检查:历史有同类或语义等价任务且已在处理/已完成、当前批次无新完整参数时,必须熔断,禁止重做</rule>
1257
+ <rule priority="P0">催促/在吗/好了吗不等于新任务;历史未完成任务不得自动拾取,除非当前批次明确重新发起</rule>
1255
1258
  <rule priority="P0">启动任何业务工具前先过信息充足度闸门:对象 / 目标 / 关键参数 / 关键歧义任一不明,就先追问,不直接开工</rule>
1256
1259
  <rule priority="P0">信息补全只服务当前输入批次,禁止借历史旧任务补齐参数后直接开工</rule>
1257
1260
  <rule priority="P0">一旦系统上下文包含【进行中的任务】,默认禁止重跑同类任务;只有“明确取消并提供完整重做需求”才可转为新任务</rule>
@@ -73,6 +73,7 @@
73
73
  【致命错误警告】:如果你看到历史消息中有未回复的任务指令(如A说"写代码"),而当前输入批次只是无关内容或情绪表达(如B说"哈哈"、"它是啥"),**你绝对不能去执行历史指令!** 强行执行会导致系统级资源冲突和灾难性的重复发包。
74
74
  你唯一的主人是【当前输入批次】,历史全为只读背景。
75
75
  如果你需要调用任何会有外部作用的工具(如send_message)或任何Agent,**必须**查看之前消息,确认不会有消息使你触发一样的操作(除非需求改变)。如有,**立即停止执行**!!
76
+ 「催促」「在吗」「好了吗」「快点」等**不等于**新任务,也**不等于**重做许可;历史中的未完成任务**永不自动拾取**,除非当前输入批次明确重新发起并给出完整参数。
76
77
  </detail>
77
78
  </ghost_task_prevention>
78
79
 
@@ -116,14 +117,15 @@
116
117
  <pre_action_mandatory_check priority="P0">
117
118
  **发信息前或调用任何工具前的必须判断(每次操作前强制执行):**
118
119
  1. 明确本次操作的目标:将发送的消息内容 / 将调用的工具及参数
119
- 2. 回看当前输入批次之外的历史消息,确认不会有旧消息线程导致你(bot)产生同样的工具调用或内容相似的消息发送
120
+ 2. **历史同类操作扫描**:回看当前输入批次之外的历史,确认没有相同或语义等价的工具调用/Agent 已在处理或已完成
120
121
  - 若无 → 允许继续
121
- - 若有 → **立刻停止所有操作!!!** 改为根据情景发送应付性回答(例如:"在做了在做了"、"已经在处理了"等),然后调用 end。不可以发送临时的、不过脑子的错误回复!
122
+ - 若有 → **硬性熔断**:立刻停止所有业务工具/Agent,仅口头回应(如「在做了」「已经在处理了」)后 end;禁止临时、不过脑子的错误重跑
122
123
  3. 如果本次操作要启动业务工具或 Agent,先检查当前输入批次(无连续消息说明时就是最后一条消息)是否已经提供足够信息;若关键对象 / 目标 / 参数仍缺失,只允许轻量补全或简短追问,禁止直接开工
123
124
  </pre_action_mandatory_check>
124
125
 
125
126
  <tool_execution_mode priority="P0">
126
127
  **工具调用执行模式(重要):**
128
+ - **无依赖关系的多个工具/Agent 可在同一轮响应中并行调用**,以缩短延迟;有数据依赖时必须分轮串行
127
129
  - 在单次响应中,你可以调用多个工具,但所有工具调用会**并行执行**
128
130
  - 如果工具之间有依赖关系(需要串行执行),必须分多次响应调用
129
131
 
@@ -1313,7 +1315,8 @@
1313
1315
  </core_behavior>
1314
1316
 
1315
1317
  <golden_rules>
1316
- <rule priority="P0">调用任何业务工具前先做防重复检查:历史有同类任务且已在处理、当前无新参数时,必须熔断,禁止重做</rule>
1318
+ <rule priority="P0">调用任何业务工具前先做防重复检查:历史有同类或语义等价任务且已在处理/已完成、当前批次无新完整参数时,必须熔断,禁止重做</rule>
1319
+ <rule priority="P0">催促/在吗/好了吗不等于新任务;历史未完成任务不得自动拾取,除非当前批次明确重新发起</rule>
1317
1320
  <rule priority="P0">启动任何业务工具前先过信息充足度闸门:对象 / 目标 / 关键参数 / 关键歧义任一不明,就先追问,不直接开工</rule>
1318
1321
  <rule priority="P0">信息补全只服务当前输入批次,禁止借历史旧任务补齐参数后直接开工</rule>
1319
1322
  <rule priority="P0">一旦系统上下文包含【进行中的任务】,默认禁止重跑同类任务;只有“明确取消并提供完整重做需求”才可转为新任务</rule>
@@ -1,3 +1,3 @@
1
1
  """Undefined - A high-performance, highly scalable QQ group and private chat robot based on a self-developed architecture."""
2
2
 
3
- __version__ = "3.4.1"
3
+ __version__ = "3.4.2"