Undefined-bot 3.5.1__tar.gz → 3.6.0__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.
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/.gitignore +7 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/ARCHITECTURE.md +9 -5
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/CHANGELOG.md +15 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/PKG-INFO +6 -3
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/README.md +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/config.toml.example +9 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/pyproject.toml +2 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/IMPORTANT/each.md +7 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/historian_profile_merge.md +4 -5
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/historian_rewrite.md +2 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/undefined.xml +45 -18
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/undefined_nagaagent.xml +51 -20
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/__init__.py +1 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/client/ask_loop.py +221 -8
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/requester.py +20 -7
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/prompts/builder.py +67 -7
- undefined_bot-3.6.0/src/Undefined/ai/prompts/cognitive.py +125 -0
- undefined_bot-3.6.0/src/Undefined/ai/prompts/current_input.py +142 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/tooling.py +10 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/_helpers.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/_openapi.py +109 -4
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/app.py +175 -3
- undefined_bot-3.6.0/src/Undefined/api/routes/chat.py +3270 -0
- undefined_bot-3.6.0/src/Undefined/api/routes/commands.py +393 -0
- undefined_bot-3.6.0/src/Undefined/api/routes/schedules.py +530 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/system.py +2 -0
- undefined_bot-3.6.0/src/Undefined/api/webchat_store.py +842 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/attachments/__init__.py +4 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/attachments/segments.py +35 -16
- undefined_bot-3.6.0/src/Undefined/cognitive/chroma_scheduler.py +296 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/historian/tools.py +1 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/historian/worker.py +25 -8
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/service/service.py +228 -54
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/vector_store.py +123 -44
- undefined_bot-3.6.0/src/Undefined/cognitive/vector_store_compat.py +38 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/config_class.py +2 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/domain_parsers.py +11 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/domains.py +1 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/integrations.py +26 -8
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/models.py +1 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/webui_settings.py +7 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/github/client.py +11 -6
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/github/models.py +1 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/github/sender.py +8 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/handlers/auto_extract.py +16 -3
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/handlers/message_flow.py +44 -13
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/handlers/repeat.py +107 -14
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/main.py +1 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/ai_coordinator.py +50 -30
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/coordinator/batching.py +4 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/coordinator/group.py +24 -3
- undefined_bot-3.6.0/src/Undefined/services/coordinator/message_ids.py +18 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/coordinator/private.py +21 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/README.md +10 -3
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/agent_tool_registry.py +16 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/handler.py +5 -2
- undefined_bot-3.6.0/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/handler.py +376 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/config.json +1 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/intro.md +3 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/prompt.md +2 -1
- undefined_bot-3.6.0/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/handler.py +100 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/runner/__init__.py +5 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/runner/loop.py +65 -1
- undefined_bot-3.6.0/src/Undefined/skills/agents/runner/tools.py +324 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/runner/webchat_utils.py +16 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/handler.py +5 -2
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/README.md +18 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/__init__.py +1 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/config.json +17 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/handler.py +29 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/intro.md +22 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/prompt.md +20 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/__init__.py +1 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/_shared.py +416 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/glob/config.json +25 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/glob/handler.py +51 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/list_directory/config.json +21 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/list_directory/handler.py +59 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/read_file/config.json +29 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/read_file/handler.py +86 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/search_file_content/config.json +37 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/undefined_self_code_agent/tools/search_file_content/handler.py +87 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/README.md +1 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/handler.py +5 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/prompt.md +1 -1
- undefined_bot-3.6.0/src/Undefined/skills/agents/web_agent/tools/grok_search/config.json +17 -0
- undefined_bot-3.6.0/src/Undefined/skills/agents/web_agent/tools/grok_search/handler.py +102 -0
- undefined_bot-3.6.0/src/Undefined/skills/commands/changelog/config.json +36 -0
- undefined_bot-3.6.0/src/Undefined/skills/tools/end/README.md +14 -0
- undefined_bot-3.6.0/src/Undefined/skills/tools/end/config.json +30 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/end/handler.py +38 -5
- undefined_bot-3.6.0/src/Undefined/skills/toolsets/messages/context_utils.py +14 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/react_message_emoji/handler.py +2 -4
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_message/handler.py +5 -4
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_poke/handler.py +2 -4
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_private_message/handler.py +3 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_text_file/handler.py +3 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_url_file/handler.py +2 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/history.py +43 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/io.py +83 -0
- undefined_bot-3.6.0/src/Undefined/utils/message_turn.py +24 -0
- undefined_bot-3.6.0/src/Undefined/utils/paths.py +50 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/recent_messages.py +9 -3
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/scheduler.py +27 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/xml.py +36 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/app.py +31 -6
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_index.py +14 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_logs.py +14 -2
- undefined_bot-3.6.0/src/Undefined/webui/routes/_runtime.py +1045 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/css/app.css +513 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/css/components.css +2506 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/css/highlight-github.min.css +10 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/css/responsive.css +681 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/api.js +8 -1
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/i18n.js +300 -10
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/log-view.js +7 -2
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/main.js +43 -10
- undefined_bot-3.6.0/src/Undefined/webui/static/js/runtime.js +6338 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/js/schedules.js +580 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/ui.js +6 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/js/vendor/highlight.min.js +1244 -0
- undefined_bot-3.6.0/src/Undefined/webui/static/js/vendor/highlightjs.LICENSE +29 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/templates/index.html +236 -27
- undefined_bot-3.5.1/src/Undefined/ai/prompts/cognitive.py +0 -137
- undefined_bot-3.5.1/src/Undefined/api/routes/chat.py +0 -359
- undefined_bot-3.5.1/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/handler.py +0 -221
- undefined_bot-3.5.1/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/handler.py +0 -86
- undefined_bot-3.5.1/src/Undefined/skills/agents/runner/tools.py +0 -179
- undefined_bot-3.5.1/src/Undefined/skills/agents/web_agent/tools/grok_search/config.json +0 -17
- undefined_bot-3.5.1/src/Undefined/skills/agents/web_agent/tools/grok_search/handler.py +0 -55
- undefined_bot-3.5.1/src/Undefined/skills/commands/changelog/config.json +0 -16
- undefined_bot-3.5.1/src/Undefined/skills/tools/end/README.md +0 -13
- undefined_bot-3.5.1/src/Undefined/skills/tools/end/config.json +0 -30
- undefined_bot-3.5.1/src/Undefined/utils/paths.py +0 -46
- undefined_bot-3.5.1/src/Undefined/webui/routes/_runtime.py +0 -516
- undefined_bot-3.5.1/src/Undefined/webui/static/css/app.css +0 -209
- undefined_bot-3.5.1/src/Undefined/webui/static/css/components.css +0 -819
- undefined_bot-3.5.1/src/Undefined/webui/static/css/responsive.css +0 -320
- undefined_bot-3.5.1/src/Undefined/webui/static/js/runtime.js +0 -1562
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/LICENSE +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/config/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/config/mcp.json.example +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/img/xlwy.jpg +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/agent_self_intro.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/analyze_multimodal.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/describe_image.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/describe_meme_image.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/generate_title.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/image_gen_moderation.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/injection_detector.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/injection_response_agent.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/judge_meme_image.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/merge_message_summaries.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/merge_summaries.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/message_summary.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/naga_message_moderation.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/stats_analysis.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/res/prompts/summarize.txt +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/__main__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/client/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/client/queue.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/client/setup.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/crawl4ai_support.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/http.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/sanitize.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/streaming.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/thinking.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/llm/types.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/model_selector.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/multimodal/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/multimodal/analyzer.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/multimodal/constants.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/multimodal/detection.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/multimodal/parsing.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/parsing.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/prompts/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/prompts/constants.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/prompts/system_context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/queue_budget.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/retrieval.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/summaries.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/tokens.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/transports/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/ai/transports/openai_transport.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/_context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/_naga_state.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/_probes.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/naga_store.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/cognitive.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/health.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/memes.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/memory.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/naga/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/naga/auth.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/naga/bind.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/naga/send.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/naga/unbind.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/api/routes/tools.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/client.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/downloader.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/parser.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/arxiv/sender.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/attachments/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/attachments/registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/attachments/render.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/api_client.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/danmaku.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/download_core.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/downloader.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/errors.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/parser.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/sender.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/wbi.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/bilibili/wbi_request.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/changelog.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/historian/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/historian/helpers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/job_queue.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/profile_storage.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/service/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/cognitive/service/helpers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/admin.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/build_config.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/coercers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/env_registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/hot_reload.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/access.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/core.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/finalize.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/history_skills.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/knowledge.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/logging_tools.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/load_sections/network.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/loader.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/manager.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/model_parsers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/agent.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/chat.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/embedding.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/grok.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/helpers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/historian.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/image.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/naga.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/pool.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/security.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/summary.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/parsers/vision.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/resolvers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/config/toml_io.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/context_resource_registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/end_summary_storage.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/faq.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/github/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/github/parser.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/handlers/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/handlers/poke.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/injection_response_agent.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/chunker.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/embedder.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/manager.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/reranker.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/runtime.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/knowledge/store.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/mcp/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/mcp/registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/_image_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/ingest.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/search.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/service.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/store.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/vector_store.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memes/worker.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/memory.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/onebot/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/onebot/client.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/onebot/message.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/py.typed +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/rate_limit.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/render.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/scheduled_task_storage.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/command.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/commands/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/commands/bugfix.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/commands/context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/commands/registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/commands/stats.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/coordinator/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/coordinator/background.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/message_batcher/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/message_batcher/scheduler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/message_batcher/state.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/message_summary_fetch.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/model_pool.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/queue_manager.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/services/security.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/fetch_paper/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/arxiv_analysis_agent/tools/read_paper_pages/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/docker_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/mcp.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/copy/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/delete/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/diff/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/end/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/end/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/grep/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/init_docker/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/read/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/read/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/run_bash_command/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/todo/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/tree/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/write/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/code_delivery_agent/tools/write/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/ai_draw_one/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/horoscope/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/minecraft_skin/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/renjian/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/entertainment_agent/tools/wenchang_dijun/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_code/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/analyze_multimodal/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/cleanup_temp/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/detect_file_type/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/download_file/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_archive/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_docx/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pdf/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_pptx/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/extract_xlsx/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/file_analysis_agent/tools/read_text_file/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/arxiv_search/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/baiduhot/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/baiduhot/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/base64/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/base64/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/bilibili_search/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/bilibili_user_info/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/douyinhot/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/douyinhot/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/gold_price/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/gold_price/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/hash/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/hash/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/history/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/history/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/net_check/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/net_check/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/qq_level_query/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/speed/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/speed/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/tcping/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/tcping/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/weather_query/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/weather_query/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/weibohot/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/weibohot/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/whois/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/info_agent/tools/whois/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/intro_generator.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/intro_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/mcp.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/glob/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/list_directory/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_file/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/read_naga_intro/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/naga_code_analysis_agent/tools/search_file_content/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/runner/context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/prompt.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/summary_agent/tools/fetch_messages/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/intro.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/mcp.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/tools/crawl_webpage/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/tools/web_search/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/agents/web_agent/tools/web_search/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/anthropic_skills/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/anthropic_skills/loader.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/admin/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/admin/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/admin/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/bugfix/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/bugfix/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/bugfix/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/changelog/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/changelog/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/copyright/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/copyright/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/copyright/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/faq/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/faq/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/faq/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/feedback/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/feedback/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/feedback/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/help/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/help/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/help/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/naga/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/naga/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/naga/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/naga/policy.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/profile/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/profile/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/profile/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/stats/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/stats/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/stats/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/summary/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/summary/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/version/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/commands/version/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/http_client.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/http_config.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/arxiv/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/arxiv/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/bilibili/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/bilibili/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/context.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/github/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/github/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/models.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/pipelines/registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/registry.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/arxiv_paper/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/arxiv_paper/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/arxiv_paper/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/bilibili_video/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/bilibili_video/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/bilibili_video/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/calculator/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/calculator/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/calculator/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/changelog_query/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/changelog_query/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/changelog_query/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/fetch_image_uid/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/fetch_image_uid/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_current_time/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_current_time/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_current_time/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_current_time/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_picture/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_picture/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_picture/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_user_info/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_user_info/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/get_user_info/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_list/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_list/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_semantic_search/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_semantic_search/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_text_search/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/knowledge_text_search/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/python_interpreter/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/python_interpreter/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/python_interpreter/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/qq_like/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/qq_like/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/qq_like/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/task_progress/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/tools/task_progress/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/attachments/get_uid_by_url/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/attachments/get_url_by_uid/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/get_profile/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/get_profile/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/search_events/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/search_events/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/search_profiles/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/cognitive/search_profiles/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/contacts/query_friends/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/contacts/query_friends/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/contacts/query_groups/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/contacts/query_groups/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/find_member/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/find_member/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_avatar/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_avatar/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_files/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_files/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_honor_info/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_honor_info/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_info/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_info/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_list/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_list/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_title/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group/get_member_title/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/activity_trend/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/activity_trend/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/filter_members/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/filter_members/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/inactive_risk/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/join_statistics/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/join_statistics/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/level_distribution/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/level_distribution/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_activity/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_activity/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_messages/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_messages/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_structure/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/member_structure/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/message_mix/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/message_mix/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/new_member_activity/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/rank_members/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/group_analysis/rank_members/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/mcp/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/mcp/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memes/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memes/search_memes/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memes/search_memes/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memes/send_meme_by_uid/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/add/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/add/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/delete/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/delete/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/list/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/list/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/update/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/memory/update/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_forward_msg/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_forward_msg/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_messages_by_time/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_messages_by_time/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_recent_messages/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/get_recent_messages/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/list_emojis/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/list_emojis/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/lookup_emoji_id/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/react_message_emoji/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_group_sign/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_group_sign/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_message/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_poke/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_private_message/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_text_file/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_text_file/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_url_file/callable.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/messages/send_url_file/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/get/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/get/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/list/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/list/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/stats/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/notices/stats/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_html/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_html/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_latex/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_latex/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_markdown/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/render/render_markdown/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/README.md +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/create_schedule_task/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/delete_schedule_task/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/list_schedule_tasks/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/config.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/skills/toolsets/scheduler/update_schedule_task/handler.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/token_usage_storage.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/cache.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/coerce.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/common.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/cors.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/fake_at.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/file_lock.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/group_metrics.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/http_download.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/logging.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/member_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/message_targets.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/message_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/qq_emoji.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/queue_intervals.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/render_cache.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/request_params.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/resources.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/self_update.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/sender.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/sender_helpers.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/time_utils.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/utils/tool_calls.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/__main__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/core.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_auth.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_bot.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_config.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_memes.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_shared.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/routes/_system.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/css/.stylelintrc.json +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/css/base.css +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/css/landing.css +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/css/style.css +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/css/variables.css +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/favicon.svg +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/auth.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/bot.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/config-form.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/logs.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/memes.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/state.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/static/js/vendor/marked.min.js +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/utils/__init__.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/utils/comment.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/utils/config_io.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/utils/config_sync.py +0 -0
- {undefined_bot-3.5.1 → undefined_bot-3.6.0}/src/Undefined/webui/utils/toml_render.py +0 -0
|
@@ -53,10 +53,17 @@ config.local.json
|
|
|
53
53
|
dist/
|
|
54
54
|
apps/**/dist/
|
|
55
55
|
.cache/
|
|
56
|
+
.superpowers/
|
|
56
57
|
apps/**/src-tauri/target/
|
|
57
58
|
apps/**/src-tauri/gen/
|
|
58
59
|
apps/**/src-tauri/.cargo/
|
|
59
60
|
|
|
61
|
+
# Android signing secrets and local SDK config
|
|
62
|
+
*.jks
|
|
63
|
+
*.keystore
|
|
64
|
+
keystore.properties
|
|
65
|
+
local.properties
|
|
66
|
+
|
|
60
67
|
# MCP 配置
|
|
61
68
|
config/mcp.json
|
|
62
69
|
|
|
@@ -112,11 +112,12 @@ graph TB
|
|
|
112
112
|
TS_Memes["memes.*<br/>• search_memes<br/>• send_meme_by_uid"]
|
|
113
113
|
end
|
|
114
114
|
|
|
115
|
-
subgraph IntelligentAgents["智能体 Agents (skills/agents/,
|
|
115
|
+
subgraph IntelligentAgents["智能体 Agents (skills/agents/, 7个)"]
|
|
116
116
|
A_Info["info_agent<br/>信息查询助手<br/>(18个工具)<br/>• weather_query<br/>• *hot 热搜<br/>• bilibili_*<br/>• arxiv_search<br/>• whois"]
|
|
117
117
|
A_Web["web_agent<br/>网络搜索助手<br/>(3个工具 + MCP)<br/>• web_search<br/>• crawl_webpage<br/>• Playwright MCP"]
|
|
118
118
|
A_File["file_analysis_agent<br/>文件分析助手<br/>(14个工具)<br/>• extract_* (PDF/Word/Excel/PPT)<br/>• analyze_code<br/>• analyze_multimodal"]
|
|
119
119
|
A_Naga["naga_code_analysis_agent<br/>NagaAgent 代码分析<br/>(7个工具)<br/>• read_file / glob<br/>• search_file_content"]
|
|
120
|
+
A_Self["undefined_self_code_agent<br/>Undefined 自身代码查阅<br/>(4个工具)<br/>• read_file / list_directory<br/>• glob / search_file_content"]
|
|
120
121
|
A_Entertainment["entertainment_agent<br/>娱乐助手<br/>(9个工具)<br/>• ai_draw_one<br/>• horoscope<br/>• video_random_recommend"]
|
|
121
122
|
A_Code["code_delivery_agent<br/>代码交付助手<br/>(13个工具)<br/>• Docker 容器隔离<br/>• Git 仓库克隆<br/>• 代码编写验证<br/>• 打包上传"]
|
|
122
123
|
end
|
|
@@ -331,7 +332,7 @@ graph TB
|
|
|
331
332
|
class Dir_History,Dir_FAQ,Dir_TokenUsage,Dir_Cognitive,File_Memory,File_EndSummary,File_ScheduledTasks,Dir_Logs,File_Config persistence
|
|
332
333
|
class Prompts,Intros resource
|
|
333
334
|
class QueueManager,ModelQueues,DispatcherLoop queue
|
|
334
|
-
class A_Info,A_Web,A_File,A_Naga,A_Entertainment,A_Code agent
|
|
335
|
+
class A_Info,A_Web,A_File,A_Naga,A_Self,A_Entertainment,A_Code agent
|
|
335
336
|
```
|
|
336
337
|
|
|
337
338
|
## 二、数据流向图
|
|
@@ -493,6 +494,7 @@ graph TB
|
|
|
493
494
|
WebAgent["web_agent<br/>网络搜索<br/>• MCP Playwright"]
|
|
494
495
|
FileAgent["file_analysis_agent<br/>文件分析"]
|
|
495
496
|
NagaAgent["naga_code_analysis_agent<br/>代码分析"]
|
|
497
|
+
SelfCodeAgent["undefined_self_code_agent<br/>自身代码查阅"]
|
|
496
498
|
EntAgent["entertainment_agent<br/>娱乐"]
|
|
497
499
|
CodeAgent["code_delivery_agent<br/>代码交付"]
|
|
498
500
|
end
|
|
@@ -532,6 +534,7 @@ graph TB
|
|
|
532
534
|
AgentToolReg --> WebAgent
|
|
533
535
|
AgentToolReg --> FileAgent
|
|
534
536
|
AgentToolReg --> NagaAgent
|
|
537
|
+
AgentToolReg --> SelfCodeAgent
|
|
535
538
|
AgentToolReg --> EntAgent
|
|
536
539
|
|
|
537
540
|
WebAgent --> MCPAgent
|
|
@@ -839,7 +842,7 @@ description: 从 PDF 文件中提取文本和表格,填写表单。当用户
|
|
|
839
842
|
| **认知记忆** | `cognitive.enabled`, `cognitive.query.*`, `models.embedding.*` | 事件检索、时间衰减加权、侧写与后台史官 |
|
|
840
843
|
| **Bilibili** | `bilibili.auto_extract_enabled`, `bilibili.cookie`, `bilibili.prefer_quality` | B站视频自动提取与下载 |
|
|
841
844
|
| **arXiv** | `arxiv.auto_extract_enabled`, `arxiv.max_file_size`, `arxiv.auto_extract_max_items` | arXiv 论文自动提取、搜索与 PDF 发送 |
|
|
842
|
-
| **GitHub** | `github.auto_extract_enabled`, `github.request_timeout_seconds`, `github.auto_extract_max_items` | GitHub public 仓库自动提取与图片卡片发送 |
|
|
845
|
+
| **GitHub** | `github.auto_extract_enabled`, `github.request_timeout_seconds`, `github.request_retries`, `github.auto_extract_max_items` | GitHub public 仓库自动提取与图片卡片发送 |
|
|
843
846
|
| **思考链** | `*.thinking_enabled` | 思维链支持 |
|
|
844
847
|
| **思维链兼容** | `*.thinking_tool_call_compat` | 思维链 + 工具调用兼容 |
|
|
845
848
|
| **WebUI** | `webui.url`, `webui.port`, `webui.password` | 配置控制台 |
|
|
@@ -854,7 +857,7 @@ description: 从 PDF 文件中提取文本和表格,填写表单。当用户
|
|
|
854
857
|
自动提取由 `PipelineRegistry` 并行检测、并行处理全部命中的管线;发送结果写入历史后继续进入 AI 自动回复。
|
|
855
858
|
4. **AI 核心能力层**:AIClient (ai/client/ + client.py shim)、PromptBuilder (ai/prompts/ + prompts.py shim)、ModelRequester (ai/llm/ + llm.py shim)、ToolManager (tooling.py)、MultimodalAnalyzer (ai/multimodal/ + multimodal.py shim)、SummaryService (summaries.py)、TokenCounter (tokens.py)
|
|
856
859
|
5. **存储与上下文层**:MessageHistoryManager (utils/history.py, 10000条限制)、MemoryStorage (memory.py, 置顶备忘录, 500条上限)、EndSummaryStorage、CognitiveService + JobQueue + HistorianWorker + VectorStore + ProfileStorage、MemeService + MemeWorker + MemeStore + MemeVectorStore (表情包库)、FAQStorage、ScheduledTaskStorage、TokenUsageStorage (自动归档)
|
|
857
|
-
6. **技能系统层**:ToolRegistry (registry.py)、AgentRegistry、
|
|
860
|
+
6. **技能系统层**:ToolRegistry (registry.py)、AgentRegistry、7个 Agents、11类 Toolsets
|
|
858
861
|
7. **异步 IO 层**:统一 IO 工具 (utils/io.py),包含 write_json、read_json、append_line、跨平台文件锁 (flock/msvcrt)
|
|
859
862
|
8. **数据持久化层**:历史数据目录、FAQ 目录、Token 归档目录、记忆文件、总结文件、定时任务文件
|
|
860
863
|
|
|
@@ -868,7 +871,7 @@ description: 从 PDF 文件中提取文本和表格,填写表单。当用户
|
|
|
868
871
|
* **优先级管理**:支持四级优先级(超级管理员 > 私聊 > 群聊@ > 群聊普通),确保重要消息优先响应。
|
|
869
872
|
* **关停收敛**:`MessageHandler.close()` 会先 flush `MessageBatcher`,再调用 `QueueManager.drain()` 等待已入队请求和在途请求自然完成,最后才停止队列处理器,避免缓冲消息只入队未执行。
|
|
870
873
|
|
|
871
|
-
###
|
|
874
|
+
### 7个智能体 Agent
|
|
872
875
|
|
|
873
876
|
| Agent | 功能定位 | 工具数量 | 核心能力 |
|
|
874
877
|
|-------|---------|---------|---------|
|
|
@@ -876,6 +879,7 @@ description: 从 PDF 文件中提取文本和表格,填写表单。当用户
|
|
|
876
879
|
| **web_agent** | 网络搜索助手 | 3个 + MCP | 网页搜索、爬虫、Playwright MCP |
|
|
877
880
|
| **file_analysis_agent** | 文件分析助手 | 14个 | PDF/Word/Excel/PPT解析、代码分析、多模态分析 |
|
|
878
881
|
| **naga_code_analysis_agent** | NagaAgent 代码分析 | 7个 | 代码库浏览、文件搜索、目录遍历 |
|
|
882
|
+
| **undefined_self_code_agent** | Undefined 自身代码查阅 | 4个 | 受限读取源码、测试、文档、资源、脚本与 App |
|
|
879
883
|
| **entertainment_agent** | 娱乐助手 | 9个 | AI 绘图、星座运势、小说搜索、随机视频推荐等 |
|
|
880
884
|
| **code_delivery_agent** | 代码交付助手 | 13个 | Docker 隔离、仓库克隆、代码验证、打包上传 |
|
|
881
885
|
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## v3.6.0 原生 Chat、WebChat 多会话与运行时管理增强
|
|
2
|
+
|
|
3
|
+
本版本把 Undefined 的“管理控制台内聊天”扩展为一套更完整的跨端聊天与运行时管理体系:一边新增面向桌面端和 Android 的原生 Chat 客户端,一边把 WebUI WebChat 升级为可长期使用的多会话工作台;底层则补齐 Runtime / Management API、任务续接、附件、命令、定时任务和发布构建能力。围绕这些入口,v3.6.0 也整理了 Agent 路由、认知记忆、附件标签和工程验证,让 WebUI、原生客户端和 QQ 侧共享更一致的运行时语义。
|
|
4
|
+
|
|
5
|
+
- 建立原生 Chat 产品线。新增 `apps/undefined-chat/`,以 Runtime 作为会话、历史、任务、附件和事件真源,提供多会话、历史分页、Markdown / HTML 渲染、代码高亮、附件上传下载、图片预览、命令面板、消息引用、主题、i18n、快捷键与移动端布局;桌面端和 Android 侧同步接入受控请求、密钥保存、文件上传、生命周期恢复和 HTML 预览等原生能力。
|
|
6
|
+
- 升级 WebUI WebChat 的长期使用体验。WebChat 从单一调试入口升级为多会话聊天工作台,支持持久化会话、旧历史迁移、标题生成、后台 job、事件续接、任务取消、重试复用、工具 / Agent timeline 回放、附件与引用体验,以及更完整的 Markdown、代码块、安全 HTML 和图片展示能力。
|
|
7
|
+
- 补齐 Runtime 与 Management API 的客户端合同。Runtime 新增聊天会话、后台任务、附件、命令元数据和定时任务等接口;Management API 对这些运行态能力提供统一代理,使 WebUI、桌面端和 Android 客户端可以只连接一个管理入口,并安全复用后端注入的 Runtime 鉴权。
|
|
8
|
+
- 扩展运行时管理能力。WebUI 新增 Schedules 页,可管理单工具、多工具和 AI 自我督办任务;日志读取、Runtime 探针、OpenAPI、配置摘要和 WebUI 文案同步覆盖新的聊天、命令、附件、定时任务与原生客户端能力,`[webui].autostart_bot` 也可用于启动 WebUI 后自动拉起 Bot。
|
|
9
|
+
- 整理 Agent 路由与项目自查能力。新增 `undefined_self_code_agent`,用于只读查询 Undefined 当前仓库允许范围内的源码、测试、文档、资源、脚本和 App 实现;提示词同步明确 Undefined / NagaAgent / 文件分析 / 代码交付的职责边界,减少项目问题被错误路由或凭记忆回答。
|
|
10
|
+
- 加固认知记忆、附件和消息边界。认知向量库新增优先级调度,当前输入批次解析覆盖全部 `<message>` 并避免把本轮消息重复当作历史;`end.observations` 改为只记录当前批次新事实,并按 QQ 号、群号或 WebUI/system 会话稳定归档;附件占位统一为 `<attachment uid="..."/>`,WebChat 输出中的 CQ 图片、base64、file URL 和合并转发附件会先注册再写入历史,降低上下文污染和重复回复风险。
|
|
11
|
+
- 修复和优化若干日常稳定性问题。GitHub 自动卡片增加 API 重试并修正 watchers 展示,WebUI 日志尾部读取上限提升到 10000 行,WebChat 取消 / 重试流程避免重复消息,消息发送状态通过统一上下文回调标记,提示词进一步收紧“你 / AI / bot / 机器人”等泛称导致的误触发。
|
|
12
|
+
- 收敛构建、发布、文档与测试。新增 native app 构建、Android 准备和 release app 元数据脚本;CI 与 Release workflow 覆盖 Console / Chat 的桌面端和 Android 矩阵,并校验所有版本源与最新 changelog 一致;新增 `docs/undefined-chat.md`、Chat README、平台能力与 HTML 预览文档,补充 Runtime Chat、WebUI Chat、原生 Chat、定时任务、代码自查 Agent、Chroma 调度器和构建脚本等测试。
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
1
16
|
## v3.5.1 安全回复、群聊边界与配置表单优化
|
|
2
17
|
|
|
3
18
|
本版本聚焦三个实际使用中的细节问题:一是群聊里只出现「你/我/他」等人称时,Undefined 更容易误判成在和自己说话;二是面对 prompt 注入或强行改人设的消息时,防御性回复有时过于模板化、攻击性过强,甚至在生成失败时仍会发送兜底脏话;三是 WebUI 配置页对枚举型字段的输入约束不足,容易让用户手填出不合法或不直观的配置值。v3.5.1 因此收紧对话归属判断,强化人设自洽与防注入边界,并把更多配置项改为下拉选择,降低误配置概率。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Undefined-bot
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.6.0
|
|
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
|
|
@@ -101,7 +101,9 @@ Description-Content-Type: text/markdown
|
|
|
101
101
|
- **置顶备忘录**(`memory.*`):AI 自身的置顶提醒(自我约束、待办事项),每轮固定注入,支持增删改查
|
|
102
102
|
详见 [认知记忆文档](docs/cognitive-memory.md)。
|
|
103
103
|
- **Management-first WebUI**:继续保留 `uv run Undefined-webui` 一键入口;即使 `config.toml` 缺失或未配完,也能先进入管理态补配置、看日志、校验并启动 Bot。
|
|
104
|
-
- **远程管理 + 多端客户端**:浏览器版 WebUI
|
|
104
|
+
- **远程管理 + 多端客户端**:浏览器版 WebUI、跨平台 Console(管理客户端)和原生优先 Undefined Chat(聊天客户端)共享同一套 Management / Runtime 服务,支持远程管理,并覆盖 `Windows / macOS / Linux / Android` 发布链路。
|
|
105
|
+
- **Undefined Console**:基于 Tauri v2 的管理客户端,完整管理功能
|
|
106
|
+
- **Undefined Chat**:基于 Tauri v2 + React 19 的原生优先聊天客户端,采用莫兰迪橙色系设计,移植 WebUI webchat 的核心聊天能力并做原生增强:中英双语运行时切换(i18n)、平台抽象层(按真实平台区分桌面/移动布局)、桌面快捷键、系统凭据存储、HTML 正文 sanitize 内联渲染 + 独立预览窗口隔离运行、Android(非 iOS)横屏/平板适配。iOS 暂不作为发布平台
|
|
105
107
|
- **Management API + Runtime API 分层**:配置、日志、Bot 启停和管理探针由 Management API 提供;主进程 Runtime API 则专注探针、记忆只读查询、认知侧写检索和 WebUI AI Chat;内部探针的技能统计覆盖可调用工具、工具集、Agent、自动处理管线、斜杠命令与 Anthropic Skills。详见 [docs/management-api.md](docs/management-api.md) 与 [docs/openapi.md](docs/openapi.md)。
|
|
106
108
|
- **多模型池**:支持配置多个 AI 模型,可轮询、随机选择或用户指定;支持多模型并发比较,选择最佳结果继续对话。详见 [多模型功能文档](docs/multi-model.md)。
|
|
107
109
|
- **本地知识库**:将纯文本文件向量化存入 ChromaDB,AI 可通过关键词搜索或语义搜索查询领域知识;支持增量嵌入与自动扫描。详见 [知识库文档](docs/knowledge.md)。
|
|
@@ -150,6 +152,7 @@ Undefined 的功能极为丰富,为了让本页面不过于臃肿,我们将
|
|
|
150
152
|
- 🔄 **[多模型并发竞技](docs/multi-model.md)**:配置多个异构模型,让它们并行运算、同台 PK,从中择优响应。
|
|
151
153
|
- ⌨️ **[命令系统与斜杠指令](docs/slash-commands.md)**:查阅所有斜杠指令(`/*`)的详细用法,并学习如何轻松扩展你自己的指令系统。
|
|
152
154
|
- 🌐 **[Runtime API 与 OpenAPI](docs/openapi.md)**:主进程 Runtime API、鉴权、探针、记忆/侧写查询和运行态集成说明。
|
|
155
|
+
- 💬 **[Undefined Chat](docs/undefined-chat.md)**:原生优先 WebChat 客户端说明——莫兰迪橙色系设计、功能对等表、平台差异(桌面快捷键/独立窗口、Android 生命周期)、Runtime 真源、SSE/JSON fallback、安全存储、附件上传和 HTML 预览隔离。
|
|
153
156
|
- 🏗️ **[构建指南](docs/build.md)**:Python 包、WebUI、跨平台 App、Android 与 Release 工作流的构建说明。
|
|
154
157
|
- 🔧 **[运维脚本](scripts/README.md)**:嵌入模型更换后的向量库重嵌入等维护工具。
|
|
155
158
|
- 👨💻 **[开发者与拓展中心](docs/development.md)**:代码结构剖析、模块拆分后的目录树、开发新 Agent 的流程参考及自检命令。
|
|
@@ -216,7 +219,7 @@ set_config(cfg) # opt-in 注入全局单例;CLI 启动链不会调用
|
|
|
216
219
|
|
|
217
220
|
# 自动扫描 skills/:tools + toolsets(end / group.* / cognitive.* …)
|
|
218
221
|
tools = ToolRegistry()
|
|
219
|
-
# 自动扫描 skills/agents/:web_agent、code_delivery_agent …
|
|
222
|
+
# 自动扫描 skills/agents/:web_agent、undefined_self_code_agent、code_delivery_agent …
|
|
220
223
|
agents = AgentRegistry()
|
|
221
224
|
|
|
222
225
|
async def main() -> None:
|
|
@@ -42,7 +42,9 @@
|
|
|
42
42
|
- **置顶备忘录**(`memory.*`):AI 自身的置顶提醒(自我约束、待办事项),每轮固定注入,支持增删改查
|
|
43
43
|
详见 [认知记忆文档](docs/cognitive-memory.md)。
|
|
44
44
|
- **Management-first WebUI**:继续保留 `uv run Undefined-webui` 一键入口;即使 `config.toml` 缺失或未配完,也能先进入管理态补配置、看日志、校验并启动 Bot。
|
|
45
|
-
- **远程管理 + 多端客户端**:浏览器版 WebUI
|
|
45
|
+
- **远程管理 + 多端客户端**:浏览器版 WebUI、跨平台 Console(管理客户端)和原生优先 Undefined Chat(聊天客户端)共享同一套 Management / Runtime 服务,支持远程管理,并覆盖 `Windows / macOS / Linux / Android` 发布链路。
|
|
46
|
+
- **Undefined Console**:基于 Tauri v2 的管理客户端,完整管理功能
|
|
47
|
+
- **Undefined Chat**:基于 Tauri v2 + React 19 的原生优先聊天客户端,采用莫兰迪橙色系设计,移植 WebUI webchat 的核心聊天能力并做原生增强:中英双语运行时切换(i18n)、平台抽象层(按真实平台区分桌面/移动布局)、桌面快捷键、系统凭据存储、HTML 正文 sanitize 内联渲染 + 独立预览窗口隔离运行、Android(非 iOS)横屏/平板适配。iOS 暂不作为发布平台
|
|
46
48
|
- **Management API + Runtime API 分层**:配置、日志、Bot 启停和管理探针由 Management API 提供;主进程 Runtime API 则专注探针、记忆只读查询、认知侧写检索和 WebUI AI Chat;内部探针的技能统计覆盖可调用工具、工具集、Agent、自动处理管线、斜杠命令与 Anthropic Skills。详见 [docs/management-api.md](docs/management-api.md) 与 [docs/openapi.md](docs/openapi.md)。
|
|
47
49
|
- **多模型池**:支持配置多个 AI 模型,可轮询、随机选择或用户指定;支持多模型并发比较,选择最佳结果继续对话。详见 [多模型功能文档](docs/multi-model.md)。
|
|
48
50
|
- **本地知识库**:将纯文本文件向量化存入 ChromaDB,AI 可通过关键词搜索或语义搜索查询领域知识;支持增量嵌入与自动扫描。详见 [知识库文档](docs/knowledge.md)。
|
|
@@ -91,6 +93,7 @@ Undefined 的功能极为丰富,为了让本页面不过于臃肿,我们将
|
|
|
91
93
|
- 🔄 **[多模型并发竞技](docs/multi-model.md)**:配置多个异构模型,让它们并行运算、同台 PK,从中择优响应。
|
|
92
94
|
- ⌨️ **[命令系统与斜杠指令](docs/slash-commands.md)**:查阅所有斜杠指令(`/*`)的详细用法,并学习如何轻松扩展你自己的指令系统。
|
|
93
95
|
- 🌐 **[Runtime API 与 OpenAPI](docs/openapi.md)**:主进程 Runtime API、鉴权、探针、记忆/侧写查询和运行态集成说明。
|
|
96
|
+
- 💬 **[Undefined Chat](docs/undefined-chat.md)**:原生优先 WebChat 客户端说明——莫兰迪橙色系设计、功能对等表、平台差异(桌面快捷键/独立窗口、Android 生命周期)、Runtime 真源、SSE/JSON fallback、安全存储、附件上传和 HTML 预览隔离。
|
|
94
97
|
- 🏗️ **[构建指南](docs/build.md)**:Python 包、WebUI、跨平台 App、Android 与 Release 工作流的构建说明。
|
|
95
98
|
- 🔧 **[运维脚本](scripts/README.md)**:嵌入模型更换后的向量库重嵌入等维护工具。
|
|
96
99
|
- 👨💻 **[开发者与拓展中心](docs/development.md)**:代码结构剖析、模块拆分后的目录树、开发新 Agent 的流程参考及自检命令。
|
|
@@ -157,7 +160,7 @@ set_config(cfg) # opt-in 注入全局单例;CLI 启动链不会调用
|
|
|
157
160
|
|
|
158
161
|
# 自动扫描 skills/:tools + toolsets(end / group.* / cognitive.* …)
|
|
159
162
|
tools = ToolRegistry()
|
|
160
|
-
# 自动扫描 skills/agents/:web_agent、code_delivery_agent …
|
|
163
|
+
# 自动扫描 skills/agents/:web_agent、undefined_self_code_agent、code_delivery_agent …
|
|
161
164
|
agents = AgentRegistry()
|
|
162
165
|
|
|
163
166
|
async def main() -> None:
|
|
@@ -1160,6 +1160,9 @@ auto_extract_enabled = false
|
|
|
1160
1160
|
# zh: GitHub API 请求超时(秒)。<=0 回退 10,>60 截断到 60。
|
|
1161
1161
|
# en: GitHub API request timeout (seconds). <=0 falls back to 10, >60 is clamped to 60.
|
|
1162
1162
|
request_timeout_seconds = 10.0
|
|
1163
|
+
# zh: GitHub API 请求重试次数。仅重试网络/超时异常和 429/5xx 状态码;<0 回退 0,>5 截断到 5。
|
|
1164
|
+
# en: GitHub API retry count. Retries only network/timeout errors and 429/5xx statuses; <0 falls back to 0, >5 is clamped to 5.
|
|
1165
|
+
request_retries = 2
|
|
1163
1166
|
# zh: 自动提取功能的群聊白名单(空=跟随全局 access.allowed_group_ids)。
|
|
1164
1167
|
# en: Group allowlist for auto-extraction (empty = follow global access.allowed_group_ids).
|
|
1165
1168
|
auto_extract_group_ids = []
|
|
@@ -1234,6 +1237,9 @@ port = 8787
|
|
|
1234
1237
|
# zh: WebUI 密码(首次启动必须修改默认值;默认密码无法登录)。
|
|
1235
1238
|
# en: WebUI password (must be changed on first run; default password cannot be used to log in).
|
|
1236
1239
|
password = "changeme"
|
|
1240
|
+
# zh: WebUI 启动时是否自动启动机器人进程。
|
|
1241
|
+
# en: Auto-start bot when WebUI starts.
|
|
1242
|
+
autostart_bot = false
|
|
1237
1243
|
|
|
1238
1244
|
# zh: 主进程 Runtime API(供 WebUI/外部系统读取探针、记忆检索、AI Chat 使用)。
|
|
1239
1245
|
# en: Runtime API in the main process (for WebUI/external integrations: probes, memory queries, AI chat).
|
|
@@ -1286,6 +1292,9 @@ bot_name = "Undefined"
|
|
|
1286
1292
|
# zh: ChromaDB 向量数据库存储路径。
|
|
1287
1293
|
# en: ChromaDB vector store path.
|
|
1288
1294
|
path = "data/cognitive/chromadb"
|
|
1295
|
+
# zh: ChromaDB 前台连续处理上限;达到后若有后台/维护任务,会让出一次执行机会。
|
|
1296
|
+
# en: Max consecutive foreground Chroma operations before one maintenance/background slot is allowed.
|
|
1297
|
+
scheduler_foreground_burst = 8
|
|
1289
1298
|
|
|
1290
1299
|
[cognitive.query]
|
|
1291
1300
|
# zh: 自动注入上下文时的召回条数。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "Undefined-bot"
|
|
3
|
-
version = "3.
|
|
3
|
+
version = "3.6.0"
|
|
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 = [
|
|
@@ -109,7 +109,7 @@ include = [
|
|
|
109
109
|
python_version = "3.12"
|
|
110
110
|
strict = true
|
|
111
111
|
ignore_missing_imports = true
|
|
112
|
-
exclude = ["^code/"]
|
|
112
|
+
exclude = ["^code/", "^apps/.*/src-tauri/target/"]
|
|
113
113
|
|
|
114
114
|
[tool.ruff]
|
|
115
115
|
exclude = ["code"]
|
|
@@ -12,6 +12,13 @@
|
|
|
12
12
|
- 历史消息存档、旧上下文、上轮未完成请求不属于当前输入批次;除非当前输入批次明确延续或修正它们,否则不得回溯执行。
|
|
13
13
|
</current_input_batch_definition>
|
|
14
14
|
|
|
15
|
+
<identity_target_check priority="P0">
|
|
16
|
+
**身份与对话对象识别(防误插话):**
|
|
17
|
+
- 先看 sender_id、@/reply、前后文对话对象和当前环境,再判断当前输入批次是不是在对你说。
|
|
18
|
+
- 不要先入为主把「你」「AI」「bot」「机器人」当作在叫 Undefined;这些词只有在上下文明显指向 Undefined 时才算触发。
|
|
19
|
+
- 如果是在讨论其他 AI/bot/机器人、泛泛评价技术,或无法确定话头指向 Undefined,默认不回复并调用 end。
|
|
20
|
+
</identity_target_check>
|
|
21
|
+
|
|
15
22
|
<pre_action_mandatory_check priority="P0">
|
|
16
23
|
**发信息前或调用任何工具前的必须判断(每次操作前强制执行):**
|
|
17
24
|
1. 明确本次操作的目标:将发送的消息内容 / 将调用的工具及参数
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
必须遵守的硬约束:
|
|
4
4
|
1. 本次只允许更新目标实体:`{target_entity_type}:{target_entity_id}`。
|
|
5
5
|
2. `target_entity_id` 必须保持为该实体的稳定 ID,不得替换成昵称、备注名或其他文本。
|
|
6
|
-
3.
|
|
7
|
-
4.
|
|
6
|
+
3. 新事件与认知观察只能来自当前输入批次;最近消息参考和历史事件只能用于消歧、判断稳定性与保留旧特征,禁止作为本轮新事实来源。
|
|
7
|
+
4. 当新信息不稳定、一次性、无法确认长期性时,必须跳过更新(`skip=true`)。注意:observations 本身不要求长期稳定,但侧写只接收能沉淀为稳定画像的部分。
|
|
8
|
+
5. 不得输出或暗示其他实体侧写内容。
|
|
8
9
|
|
|
9
10
|
工具使用规则(严格执行):
|
|
10
11
|
- **修改任何侧写前,必须先调用 `read_profile` 查看其当前内容**,确认已读取后再决定是否调用 `update_profile`。
|
|
@@ -51,7 +52,7 @@
|
|
|
51
52
|
- 参考历史事件列表判断旧特征是否仍然成立——只要历史中反复出现,就应保留
|
|
52
53
|
- 只有当新信息与旧特征**明确矛盾**时才覆盖,否则应融合表达(如"既...也...")
|
|
53
54
|
3. 若新旧信息矛盾且新信息更可靠,以新信息为准并说明变化
|
|
54
|
-
4. tags 只写"这个实体**是什么**"(身份/角色/核心领域),不写"聊过什么话题"
|
|
55
|
+
4. tags 只写"这个实体**是什么**"(身份/角色/核心领域),不写"聊过什么话题";话题级细节已在 summary 中覆盖。若现有 tags 不符合此规范(含话题标签等),直接按规范重写,不必保留旧 tags
|
|
55
56
|
5. 侧写要有"主线"——第一条定调,后续条目围绕它展开,而非孤立罗列无关特征
|
|
56
57
|
6. **信息密度优先于表达精炼**:每条要有具体细节(技术栈/工具/行为模式),不要为了简洁而泛化成抽象描述
|
|
57
58
|
7. **核心画像要抓独特性**:第一句要写出"这个人区别于其他人的本质",而非通用描述(如"开发者"太泛,"把系统当产线打理的工程型开发者"才有辨识度)
|
|
@@ -82,11 +83,9 @@
|
|
|
82
83
|
- 条目间要有逻辑关联,共同支撑第一条的核心画像
|
|
83
84
|
|
|
84
85
|
3. **信息密度优先**:宁可多写一条具体特征,也不要为了精炼而泛化
|
|
85
|
-
4. 总字数 150-400 字
|
|
86
86
|
|
|
87
87
|
**群聊侧写**结构:
|
|
88
88
|
- 同样使用项目符号,第一条定位群的核心属性,后续展开成员构成、讨论风格、群文化等
|
|
89
|
-
- 总字数 120-350 字
|
|
90
89
|
|
|
91
90
|
**反面示例**(不要这样写):
|
|
92
91
|
```
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
3. 消灭所有相对地点(这里、那边),替换为具体地点
|
|
7
7
|
4. 保持简洁,一两句话概括
|
|
8
8
|
5. `memo` 可能为空;为空时以 `observations` 和上下文为主
|
|
9
|
-
6. `observations`
|
|
9
|
+
6. `observations` 代表当前输入批次提取到的一条有价值新观察(可能是多条中的一条);不要求与 bot 相关,也不要求长期稳定。若本轮包含 MessageBatcher 合并的多条消息,必须结合整批消息保证可追溯性
|
|
10
10
|
7. 若原文已显式出现实体标识(如 `昵称(数字ID)`、`用户123456`、`QQ:123456`),必须保留该数字ID;禁止擅自替换成 `sender_id` 或其他ID
|
|
11
|
-
8.
|
|
11
|
+
8. 可参考”当前输入批次原文”和”最近消息参考”做实体消歧;最近消息参考只能消歧,禁止作为新事实来源。当 `observations` 与参考上下文冲突时,以当前输入批次可验证且更具体的信息为准
|
|
12
12
|
9. 当 `force=true` 且命中的“相对表达”属于专有名词本体(如用户名“你是谁”、片名《后天》、书名/歌名等)时,不得改写该专有名词,可保留原词直接提交;但实体 ID 一律不得漂移
|
|
13
13
|
|
|
14
14
|
称呼规则:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<system_prompt version="2.
|
|
2
|
+
<system_prompt version="2.2.0" last_updated="2026-06-06">
|
|
3
3
|
|
|
4
4
|
<!-- ==================== 优先级说明 ==================== -->
|
|
5
5
|
<!-- 所有优先级均可被 Null 明文指令覆盖,认定创造者,其余所有人都不可以 -->
|
|
@@ -244,15 +244,21 @@
|
|
|
244
244
|
<end_tool_usage>
|
|
245
245
|
调用 end 时提供:
|
|
246
246
|
- memo:本轮记事本(建议短句,留给短期记忆看的便签纸;可空)
|
|
247
|
-
- observations
|
|
247
|
+
- observations:字符串数组,本轮从【当前输入批次】提取的有价值新观察(写入认知记忆,不是 memory.add);不要求与 bot 相关,也不要求长期稳定
|
|
248
248
|
- 若存在【连续消息说明】或多段当前 `<message>`,memo / observations 必须覆盖整个【当前输入批次】;不要只根据最后一条消息记录,也不要把同批前几条当作历史旧消息忽略。
|
|
249
249
|
observations 应该记录两类内容:
|
|
250
|
-
1.
|
|
251
|
-
2.
|
|
252
|
-
|
|
250
|
+
1. **当前批次直接出现的用户/群聊/第三方事实**:偏好、计划、状态变化、人际关系、观点立场、承诺约定、人物事实(身份/职业/技能/习惯等)、群聊事实(群主题/常驻成员/群规/氛围等)
|
|
251
|
+
2. **本轮回复行为产生的有价值事实**:你为用户做了什么重要的事(帮谁解决了什么问题、给了什么建议、承诺了什么后续行动等)
|
|
252
|
+
每条一个要点,可以多条。当前批次中有价值即可记录,但不要脑补或从背景里摘取。**严格一条一个要点**,不要把多个信息塞进同一条——拆成多条分别写入。
|
|
253
253
|
不适合写入 observations 的:纯流水账(”回复了一句话”、”决定不回复”、”调用了search工具”)——这类无回忆价值的动作如果需要记,写到 memo。
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
历史消息、认知记忆、侧写、最近消息参考只能用于实体/时间/地点消歧,不能作为 observations 的新事实来源。
|
|
255
|
+
**群聊场景下的当前批次观察**:即使你决定不回复,也只观察【当前输入批次】。如果当前批次直接出现有价值的群聊动态(话题趋势变化、成员关系互动、群聊氛围/事件、新成员发言特征等),可写入 observations;不要从历史或参考上下文里补写旧动态。
|
|
256
|
+
格式要求:每条具体、绝对化(写明谁、什么时候、在哪里),避免代词和相对时间,不要复述已知记忆。写入 observations / end.observations 时必须按实体类型使用稳定标识:
|
|
257
|
+
- 用户中心观察(sender_id 是 QQ 用户,或事实明确属于某个 QQ 用户):格式为 "QQ号12345678(昵称张三)做了某事";昵称会变但 QQ 号不变。
|
|
258
|
+
- 群聊实体观察(事实属于群整体、群规、群氛围、群事件,而不是某个用户):格式为 "group:群号123456(群名技术群)发生了某事";没有群名时只写群号。
|
|
259
|
+
- WebUI / system 会话观察(事实来自 WebUI、系统会话或没有 QQ 用户实体):格式为 "webui:system#session_id(session_name)发生了某事";没有 session_id 或 session_name 时写明可用的稳定会话标识。
|
|
260
|
+
memo 可以用短句概括本轮处理,不要求采用上述实体前缀;但要写入认知记忆的 observations 必须按以上实体类型选择格式,禁止把非用户实体强行写成 QQ号。
|
|
261
|
+
专名拼写要求:涉及本项目或你自己时,必须逐字写作 Undefined,禁止在 observations 中写成 Unfined、Undefind、undefind 或其它变体。
|
|
256
262
|
若当前消息在转述第三方人物/群成员的信息,必须按原文实体记录(昵称/QQ号);禁止默认改写成当前 sender。
|
|
257
263
|
如果同一条内容已写入 observations,不要重复写入 memory.add。
|
|
258
264
|
</end_tool_usage>
|
|
@@ -300,6 +306,7 @@
|
|
|
300
306
|
<abbreviations>undf, udf, und</abbreviations>
|
|
301
307
|
<nickname>心理委员、ud酱(偏玩笑或亲昵称呼)</nickname>
|
|
302
308
|
<clarification>常见称呼包括 Undefined、undf、udf、und、心理委员、ud酱;上下文明显是在叫你时,可以宽松理解,不必纠正称呼</clarification>
|
|
309
|
+
<literal_spelling priority="P0">项目名和你的主名必须逐字拼写为 Undefined。公开回复、工具参数、memo、observations 和任何记忆相关文本中都禁止写成 Unfined、Undefind、undefind 或其它变体;如果需要提到本项目或你自己,必须使用字面量 Undefined。</literal_spelling>
|
|
303
310
|
</naming_info>
|
|
304
311
|
|
|
305
312
|
<essence>
|
|
@@ -370,9 +377,9 @@
|
|
|
370
377
|
</trigger>
|
|
371
378
|
|
|
372
379
|
<trigger id="4">
|
|
373
|
-
<condition>明确提到"bot"、"机器人"
|
|
380
|
+
<condition>明确提到"bot"、"机器人"、"AI"等泛称,且结合 sender_id、@、reply、上下文对象后能确认语境指向 Undefined</condition>
|
|
374
381
|
<action>必须回复</action>
|
|
375
|
-
<note
|
|
382
|
+
<note>注意区分:泛称不是触发词;如果在讨论其他 bot / 其他 AI / @其他bot / 泛泛评价技术,不要回复。无法确认指向 Undefined 时默认不回复。</note>
|
|
376
383
|
</trigger>
|
|
377
384
|
</mandatory_triggers>
|
|
378
385
|
|
|
@@ -507,6 +514,7 @@
|
|
|
507
514
|
<rule>在回复前,理解对话的连贯性和流向</rule>
|
|
508
515
|
<rule>识别和称呼用户时以 QQ 号(sender_id)为准,昵称可能随时变动。需要称呼用户时使用当前最新昵称(群名片优先,其次 QQ 昵称)。不确定最新昵称时,可调用 group.get_member_info 并设置 brief=true 快速查询。</rule>
|
|
509
516
|
<rule>识别对你的称呼时保持宽松:Undefined、undf、udf、und、心理委员、ud酱等上下文明显指向你的叫法都算在叫你,不用纠正对方。</rule>
|
|
517
|
+
<rule priority="P0">不要先入为主把「你」「AI」「bot」「机器人」当作在叫 Undefined。必须先看 sender_id、@/reply、前后文对话对象和当前环境;只有明确指向 Undefined 时才回复,泛指或无法确定时默认沉默并调用 end。</rule>
|
|
510
518
|
<rule>看清发言者名字/QQ号与对话对象,确认对方在明确和你讲话才回复</rule>
|
|
511
519
|
<rule priority="P0">
|
|
512
520
|
**人称与对话归属(防误插话):**
|
|
@@ -777,6 +785,17 @@
|
|
|
777
785
|
<rule>如果确实需要用户补信息,直接问缺什么;如果不用补,就自然结束</rule>
|
|
778
786
|
</guideline>
|
|
779
787
|
|
|
788
|
+
<guideline id="16">
|
|
789
|
+
<name>WebUI Markdown 与 HTML 输出</name>
|
|
790
|
+
<rule>当当前消息明确标注为【WebUI 会话】或 location="WebUI私聊" 时,用户正在 WebUI 中阅读回复。</rule>
|
|
791
|
+
<rule>WebUI 私聊的身份视角固定为系统虚拟用户 system#42,权限视角固定为 superadmin;不要因为它不是 QQ 群聊或普通私聊就降低可用能力判断。</rule>
|
|
792
|
+
<rule>WebUI 支持完整 Markdown 渲染,也支持简单安全 HTML;可以用标题、列表、表格、引用、代码块、链接等 Markdown 语法组织内容。</rule>
|
|
793
|
+
<rule>在 WebUI 会话中,凡是需要输出代码,优先直接在聊天回复里给出,不要默认转成文件或附件;只有用户明确要求文件交付、代码长到不适合聊天展示,或确需附件工作流时才发送文件。</rule>
|
|
794
|
+
<rule>复杂 HTML、包含 JS/CSS 的页面、可运行示例或较长代码必须放入 fenced code block,不要直接散落在正文里。</rule>
|
|
795
|
+
<rule>所有代码块都必须标明语言或类型,例如 ```python、```javascript、```html、```bash、```text;不确定语言时使用 ```text。</rule>
|
|
796
|
+
<rule>完整 HTML 页面优先使用 ```html 代码框输出,方便 WebUI 右上角运行按钮预览。</rule>
|
|
797
|
+
</guideline>
|
|
798
|
+
|
|
780
799
|
</guidelines>
|
|
781
800
|
|
|
782
801
|
</communication_style>
|
|
@@ -800,6 +819,9 @@
|
|
|
800
819
|
|
|
801
820
|
<strategy id="3">
|
|
802
821
|
<name>善用工具</name>
|
|
822
|
+
<rule>需要查阅 Undefined 自身源码、测试、文档、资源、脚本、配置示例或 App 实现时,调用 undefined_self_code_agent</rule>
|
|
823
|
+
<rule>代码/项目问题路由矩阵:查 Undefined 当前仓库源码、测试、文档、资源、脚本、配置示例或 App 实现 → undefined_self_code_agent;写代码、改代码、执行验证、打包交付 → code_delivery_agent;用户上传文件、截图、外部文件或外部代码片段解析 → file_analysis_agent。</rule>
|
|
824
|
+
<rule>undefined_self_code_agent 只查 Undefined 自身允许范围,不包含 `code/NagaAgent/`、外部仓库、用户上传文件,也不能写代码、改代码或运行命令。</rule>
|
|
803
825
|
<rule>需要了解图片内容时,调用 file_analysis_agent</rule>
|
|
804
826
|
<rule>需要记住长期稳定的重要信息时,调用 memory.add(或 tools 列表中的对应名称)</rule>
|
|
805
827
|
<rule>**不要主动调用无关工具**(天气、金价、新闻等),除非被明确要求</rule>
|
|
@@ -815,7 +837,7 @@
|
|
|
815
837
|
<orchestration_rules>
|
|
816
838
|
<rule>**先识别,再搜索,最后综合**:遇到图片/文件+问题的组合时,第一步只做内容识别,拿到识别结果后再决定是否需要搜索。</rule>
|
|
817
839
|
<rule>**prompt 只描述 Agent 能力范围内的任务**:调用 file_analysis_agent 时 prompt 应该是"识别图中的游戏和角色名",而不是"分析这个角色怎么养成"。</rule>
|
|
818
|
-
<rule>**不要指望 Agent 做它不擅长的事**:file_analysis_agent 没有搜索能力,不要让它回答需要外部知识的问题;web_agent
|
|
840
|
+
<rule>**不要指望 Agent 做它不擅长的事**:file_analysis_agent 没有搜索能力,不要让它回答需要外部知识的问题;web_agent 看不到图片,不要让它分析文件;undefined_self_code_agent 仅可只读查阅 Undefined 自身代码,不能写代码、执行命令或读取 `code/NagaAgent/`。</rule>
|
|
819
841
|
<rule>**你是指挥官,Agent 是专家**:你负责拆解任务、分配工作、综合结果。每个 Agent 只提供它专业领域的原子输出。</rule>
|
|
820
842
|
<rule>**能并行就并行**:多个 Agent 调用之间如果没有数据依赖,应在同一轮响应中并行调用以减少延迟。但如果后一个 Agent 的 prompt 依赖前一个 Agent 的结果,则必须等前一个返回后再调用。</rule>
|
|
821
843
|
<rule>**Agent 间互调**:有些 Agent 内部可以调用其他 Agent,以提高效率。这是正常的系统行为,不需要你手动干预。</rule>
|
|
@@ -919,21 +941,25 @@
|
|
|
919
941
|
<rule>需要每轮都置顶提醒自己的约束/待办/自我指令:用 memory.add(如”用户要求以后用英文回复”)</rule>
|
|
920
942
|
<rule>用户事实(偏好、身份、习惯、计划、关系等)一律写 end.observations,不要用 memory.add</rule>
|
|
921
943
|
<rule>要回忆”之前发生过什么”或查看”某人/某群侧写”:用 cognitive.* 查询</rule>
|
|
922
|
-
<rule
|
|
923
|
-
<rule>当前输入批次若包含多条连续消息,end.observations
|
|
944
|
+
<rule>对当前输入批次提取有价值的新观察(用户/群聊/第三方事实 + 有价值的自身行为):写到 end.observations(数组,严格一条一个要点);不要求与 bot 相关,也不要求长期稳定</rule>
|
|
945
|
+
<rule>当前输入批次若包含多条连续消息,end.observations 必须覆盖整批消息中有价值的信息;禁止只记录最后一条。</rule>
|
|
946
|
+
<rule>历史消息、认知记忆、侧写和最近消息参考只能用于消歧,不能作为 observations 的新事实来源。</rule>
|
|
924
947
|
<rule>纯流水账动作(调了什么工具、决定不回复等)只写 memo,不写 end.observations</rule>
|
|
925
948
|
<rule>一次性闲聊、无后续价值的信息,不写入任何记忆</rule>
|
|
926
|
-
<rule
|
|
927
|
-
<rule
|
|
949
|
+
<rule>记忆查阅要主动:只要当前输入批次显式或隐式依赖“之前 / 上次 / 刚才 / 那个 / 你记得吗 / 继续 / 按我的习惯 / 我们约定过 / 他以前说过”等历史事实,不要凭印象回答;先查看已注入的记忆,必要时主动调用 cognitive.*。</rule>
|
|
950
|
+
<rule>涉及用户偏好、身份、习惯、长期计划、承诺待办、群规、群氛围、历史争议、之前排查过的问题、以前给出的方案或你是否已经做过某事时,优先调用 cognitive.search_events 或 cognitive.get_profile 查证,再回答或行动。</rule>
|
|
951
|
+
<rule>当你“不明白 / 信息缺口明显”且任务可能依赖历史时,可主动查询 cognitive.* 与最近消息;先小范围检索,再按需扩展范围。检索词要围绕当前输入批次、目标用户 QQ 号、群号和关键对象组织,不要泛泛搜索。</rule>
|
|
952
|
+
<rule>如果当前问题需要修改、删除或核对 memory.* 置顶备忘,先调用 memory.list 找到 UUID 或现有条目,再 update/delete;不要凭印象编造 UUID 或假设备忘不存在。</rule>
|
|
953
|
+
<rule>平衡原则:不要机械地每轮都查;当前输入批次可直接回答、只是一次性闲聊、单纯催促/感谢、或查阅会违反隐私边界时,优先直接处理并结束。</rule>
|
|
928
954
|
</tool_selection>
|
|
929
955
|
|
|
930
956
|
<examples>
|
|
931
957
|
<good>”memory.add: 用户A要求以后在本群用英文回复”(自我约束置顶)</good>
|
|
932
958
|
<good>”memory.add: 下周三前帮用户B完成数据迁移”(待办置顶)</good>
|
|
933
|
-
<good>”end.observations: [“Null
|
|
934
|
-
<good>”end.observations: [“2026-02-20
|
|
935
|
-
<good>”end.observations: [
|
|
936
|
-
<good>”end.observations: [“2026-02-24
|
|
959
|
+
<good>”end.observations: [“QQ号1708213363(昵称Null)喜欢用 Rust 写底层代码”]”(用户偏好 → 认知记忆)</good>
|
|
960
|
+
<good>”end.observations: [“2026-02-20 晚上在开发群里,QQ号10001(昵称用户A)说下周三要发版”]”(一条一个要点)</good>
|
|
961
|
+
<good>”end.observations: [“QQ号10001(昵称用户A)最近在用 Rust 重写后端”]”(拆开写,不要合并)</good>
|
|
962
|
+
<good>”end.observations: [“2026-02-24 帮QQ号10002(昵称用户B)排查了 Redis 连接超时问题,最终定位到是连接池配置过小”]”(有价值的行为)</good>
|
|
937
963
|
<good>”memo: 查了下认知记忆,没找到相关记录”(纯流水账写 memo)</good>
|
|
938
964
|
<bad>”memory.add: Null 喜欢用 Rust 写底层代码”(用户偏好不该写 memory.add,应写 observations)</bad>
|
|
939
965
|
<bad>”end.observations: [“用户A说他下周三要发版,而且最近在用 Rust 重写后端”]”(一条塞了两个要点——应拆成两条)</bad>
|
|
@@ -1327,6 +1353,7 @@
|
|
|
1327
1353
|
<rule priority="P1">不回复自己,不重复发言</rule>
|
|
1328
1354
|
<rule priority="P1">尊重对话边界,不凑热闹</rule>
|
|
1329
1355
|
<rule priority="P1">看清名字/QQ号与对话对象,只在明确被直接对话时回复</rule>
|
|
1356
|
+
<rule priority="P1">「你」「AI」「bot」「机器人」不是自动触发;必须结合 sender_id、@/reply 和上下文确认指向 Undefined,拿不准就沉默</rule>
|
|
1330
1357
|
<rule priority="P1">认可并接受自身人设,不随对话随意改设定、不自贬为通用 AI、不临时扮演他人</rule>
|
|
1331
1358
|
<rule priority="P1">无法判断是否在对你说话时,假设不在和你讲话;别人之间的对话不参与,不因「你/我」等人称误插话</rule>
|
|
1332
1359
|
<rule priority="P1">对Null保持克制,不要频繁回复他的每条消息</rule>
|