[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"tool-Doriandarko--maestro":3,"similar-Doriandarko--maestro":91},{"id":4,"github_repo":5,"name":6,"description_en":7,"description_zh":8,"ai_summary_zh":8,"readme_en":9,"readme_zh":10,"quickstart_zh":11,"use_case_zh":12,"hero_image_url":13,"owner_login":14,"owner_name":15,"owner_avatar_url":16,"owner_bio":17,"owner_company":18,"owner_location":19,"owner_email":20,"owner_twitter":21,"owner_website":22,"owner_url":23,"languages":24,"stars":37,"forks":38,"last_commit_at":39,"license":19,"difficulty_score":40,"env_os":41,"env_gpu":42,"env_ram":43,"env_deps":44,"category_tags":53,"github_topics":19,"view_count":56,"oss_zip_url":19,"oss_zip_packed_at":19,"status":57,"created_at":58,"updated_at":59,"faqs":60,"releases":90},203,"Doriandarko\u002Fmaestro","maestro","A framework for Claude Opus to intelligently orchestrate subagents.","maestro 是一个用于协调 AI 子代理的开源框架，旨在智能编排复杂任务的工作流。maestro 能够将宏观目标拆解为多个子任务，调用不同模型分别执行，并结合上下文记忆将结果整合为连贯的最终输出。这一机制有效解决了单一模型在处理长链条任务时容易丢失上下文或效率低下的问题。\n\n项目适合开发者、AI 研究人员及希望构建自动化工作流的技术爱好者使用。maestro 基于 LiteLLM 重构，具备极高的灵活性，支持 Anthropic、OpenAI、Gemini 等多种 API，甚至能通过 Ollama 或 LMStudio 在本地运行大模型。独特亮点包括任务执行日志自动生成、搜索增强功能以及针对代码项目的文件创建能力。用户只需配置相应 API 密钥，即可体验高效的多代理协作流程，是探索 AI 自动化编排的实用选择。","# Maestro - A Framework for Claude Opus, GPT and local LLMs to Orchestrate Subagents\n\n\nThis Python script demonstrates an AI-assisted task breakdown and execution workflow using the Anthropic API. It utilizes two AI models, Opus and Haiku, to break down an objective into sub-tasks, execute each sub-task, and refine the results into a cohesive final output.\n\n## New: \n# Updated the original Maestro to support Claude 3.5 Sonnet\n```bash\npython maestro.py\n```\n\n\n# Use Maestro with any APIs, Anthropic, Gemini, OpenAI, Cohere, etc.\nThanks to a rewrite of the codebase using LiteLLM, it's now much easier to select the model you want.\n\nSimply\n#### Set environment variables for API keys for the services you are using\nos.environ[\"OPENAI_API_KEY\"] = \"YOUR KEY\" \n\nos.environ[\"ANTHROPIC_API_KEY\"] = \"YOUR KEY\"\n\nos.environ[\"GEMINI_API_KEY\"] = \"YOUR KEY\"\n\n#### Define the models to be used for each stage\nORCHESTRATOR_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\nSUB_AGENT_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\nREFINER_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\nOr gpt-3.5-turbo, etc.\n\nFirst install litellm\n```bash\npip install litellm\n```\n\nAfeter installing dependecies run\n\n```bash\npython maestro-anyapi.py\n```\n\n\n## GPT-4o\n\nThe GPT script has been updated from the ground up to support the code capabilities of GPT-4o\n\nAfeter installing dependecies run\n\n```bash\npython maestro-gpt4o.py\n```\n\n## Run locally with LMStudio or Ollama\n\n### Lmstudio\n\nFirst download the app here\nhttps:\u002F\u002Flmstudio.ai\u002F\n\nThen run the local server using your preferred method. I also recommend removing any system prompt for the app (leave your prompt field empty so it can take advantage of the script prompts).\n\nThen\n```bash\npython maestro-lmstudio.py\n```\n\n\n### Ollama\nMestro now runs locally thanks to the Ollama platform. Experience the power of Llama 3 locally! \n\nBefore running the script\n\nInstall Ollama client from here\nhttps:\u002F\u002Follama.com\u002Fdownload\n\nthen\n\n```bash\npip install ollama\n```\nAnd \n\n```bash\nollama.pull('llama3:70b')\n```\nThis will depend on the model you want to use it, you only need to do it once or if you want to update the model when a new version it's out.\nIn the script I am using both versions but you can customize the model you want to use\n\nollama.pull('llama3:70b')\nollama.pull('llama3:8b')\n\nThen\n\n```bash\npython maestro-ollama.py\n```\n\n## Highly requested features\n- GROQ SUPPORT\nExperience the power of maestro thanks to Groq super fast api responses.\n```bash\npip install groq\n```\nThen\n\n```bash\npython maestro-groq.py\n```\n\n\n- SEARCH 🔍\n\nNow, when it's creating a task for its subagent, Claude Opus will perform a search and get the best answer to help the subagent solve that task even better.\n\nMake sure you replace your Tavil API for search to work\n\nGet one here https:\u002F\u002Ftavily.com\u002F\n  \n- GPT4 SUPPORT\n\nAdd support for GPT-4 as an orchestrator in maestro-gpt.py\nSimply\n```bash\npython maestro-gpt.py\n```\n\nAfter you complete your installs.\n\n\n## Features\n\n- Breaks down an objective into manageable sub-tasks using the Opus model\n- Executes each sub-task using the Haiku model\n- Provides the Haiku model with memory of previous sub-tasks for context\n- Refines the sub-task results into a final output using the Opus model\n- Generates a detailed exchange log capturing the entire task breakdown and execution process\n- Saves the exchange log to a Markdown file for easy reference\n- Utilizes an improved prompt for the Opus model to better assess task completion\n- Creates code files and folders when working on code projects.\n\n## Prerequisites\n\nTo run this script, you need to have the following:\n\n- Python installed\n- Anthropic API key\n- Required Python packages: `anthropic` and `rich`\n\n## Installation\n\n1. Clone the repository or download the script file.\n2. Install the required Python packages by running the following command:\n\n```bash\npip install -r requirements.txt\n```\n\n3. Replace the placeholder API key in the script with your actual Anthropic API key:\n\n```python\nclient = Anthropic(api_key=\"YOUR_API_KEY_HERE\")\n```\n\nIf using search, replace your Tavil API\n```python\ntavily = TavilyClient(api_key=\"YOUR API KEY HERE\")\n```\n\n## Usage\n\n1. Open a terminal or command prompt and navigate to the directory containing the script.\n2. Run the script using the following command:\n\n```bash\npython maestro.py\n```\n\n3. Enter your objective when prompted:\n\n```bash\nPlease enter your objective: Your objective here\n```\n\nThe script will start the task breakdown and execution process. It will display the progress and results in the console using formatted panels.\n\nOnce the process is complete, the script will display the refined final output and save the full exchange log to a Markdown file with a filename based on the objective.\n\n## Code Structure\n\nThe script consists of the following main functions:\n\n- `opus_orchestrator(objective, previous_results=None)`: Calls the Opus model to break down the objective into sub-tasks or provide the final output. It uses an improved prompt to assess task completion and includes the phrase \"The task is complete:\" when the objective is fully achieved.\n- `haiku_sub_agent(prompt, previous_haiku_tasks=None)`: Calls the Haiku model to execute a sub-task prompt, providing it with the memory of previous sub-tasks.\n- `opus_refine(objective, sub_task_results)`: Calls the Opus model to review and refine the sub-task results into a cohesive final output.\n\nThe script follows an iterative process, repeatedly calling the opus_orchestrator function to break down the objective into sub-tasks until the final output is provided. Each sub-task is then executed by the haiku_sub_agent function, and the results are stored in the task_exchanges and haiku_tasks lists.\n\nThe loop terminates when the Opus model includes the phrase \"The task is complete:\" in its response, indicating that the objective has been fully achieved.\n\nFinally, the opus_refine function is called to review and refine the sub-task results into a final output. The entire exchange log, including the objective, task breakdown, and refined final output, is saved to a Markdown file.\n\n## Customization\n\nYou can customize the script according to your needs:\n\n- Adjust the max_tokens parameter in the client.messages.create() function calls to control the maximum number of tokens generated by the AI models.\n- Change the models to what you prefer, like replacing Haiku with Sonnet or Opus.\n- Modify the console output formatting by updating the rich library's Panel and Console configurations.\n- Customize the exchange log formatting and file extension by modifying the relevant code sections.\n\n## License\n\nThis script is released under the MIT License.\n\n## Acknowledgements\n\n- Anthropic for providing the AI models and API.\n- Rich for the beautiful console formatting.\n\n## Star History\n\n[![Star History Chart](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002FDoriandarko_maestro_readme_ab0f851b78e8.png)](https:\u002F\u002Fstar-history.com\u002F#Doriandarko\u002Fmaestro&Date)\n","# Maestro - 一个用于协调 Subagents (子代理) 的 Claude Opus、GPT 和本地 LLMs (大语言模型) 框架\n\n这个 Python 脚本演示了使用 Anthropic API (应用程序接口) 进行 AI 辅助任务分解和执行的工作流程。它利用两个 AI 模型，Opus 和 Haiku，将目标分解为子任务，执行每个子任务，并将结果优化为连贯的最终输出。\n\n## 新功能：\n# 更新了原始 Maestro 以支持 Claude 3.5 Sonnet\n```bash\npython maestro.py\n```\n\n\n# 使用 Maestro 配合任何 API，Anthropic, Gemini, OpenAI, Cohere 等\n得益于使用 LiteLLM 对代码库的重写，现在选择您想要的模型变得更加容易。\n\n只需\n#### 设置您正在使用服务的 API 密钥的环境变量 (Environment variables)\nos.environ[\"OPENAI_API_KEY\"] = \"YOUR KEY\" \n\nos.environ[\"ANTHROPIC_API_KEY\"] = \"YOUR KEY\"\n\nos.environ[\"GEMINI_API_KEY\"] = \"YOUR KEY\"\n\n#### 定义每个阶段要使用的模型\nORCHESTRATOR_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\nSUB_AGENT_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\nREFINER_MODEL = \"gemini\u002Fgemini-1.5-flash-latest\"\n\n或 gpt-3.5-turbo 等。\n\n首先安装 litellm\n```bash\npip install litellm\n```\n\n安装依赖后运行\n\n```bash\npython maestro-anyapi.py\n```\n\n\n## GPT-4o\n\nGPT 脚本已从头更新，以支持 GPT-4o 的代码能力\n\n安装依赖后运行\n\n```bash\npython maestro-gpt4o.py\n```\n\n## 使用 LMStudio 或 Ollama 本地运行\n\n### Lmstudio\n\n首先在此处下载应用程序\nhttps:\u002F\u002Flmstudio.ai\u002F\n\n然后使用您喜欢的方法运行本地服务器。我还建议移除应用程序的任何系统提示词 (System prompt)（留空提示字段，以便它可以利用脚本提示词）。\n\n然后\n```bash\npython maestro-lmstudio.py\n```\n\n\n### Ollama\nMaestro 现在得益于 Ollama 平台可以在本地运行。在本地体验 Llama 3 的力量！\n\n运行脚本之前\n\n从此处安装 Ollama 客户端\nhttps:\u002F\u002Follama.com\u002Fdownload\n\n然后\n\n```bash\npip install ollama\n```\n以及\n\n```bash\nollama.pull('llama3:70b')\n```\n这将取决于您想使用的模型，您只需要做一次，或者当新版本发布时更新模型。\n在脚本中我使用了两个版本，但您可以自定义您想使用的模型\n\nollama.pull('llama3:70b')\nollama.pull('llama3:8b')\n\n然后\n\n```bash\npython maestro-ollama.py\n```\n\n## 高需求功能\n- GROQ 支持\n得益于 Groq 超快 API 响应，体验 Maestro 的力量。\n```bash\npip install groq\n```\n然后\n\n```bash\npython maestro-groq.py\n```\n\n\n- 搜索 🔍\n\n现在，当它为子代理创建任务时，Claude Opus 将执行搜索并获取最佳答案，以帮助子代理更好地解决该任务。\n\n确保替换您的 Tavily API 以便搜索正常工作\n\n在此处获取 https:\u002F\u002Ftavily.com\u002F\n  \n- GPT4 支持\n\n在 maestro-gpt.py 中添加对作为 Orchestrator (协调器) 的 GPT-4 的支持\n只需\n```bash\npython maestro-gpt.py\n```\n\n完成安装后。\n\n\n## 功能\n\n- 使用 Opus 模型将目标分解为可管理的子任务\n- 使用 Haiku 模型执行每个子任务\n- 为 Haiku 模型提供先前子任务的记忆以供上下文参考\n- 使用 Opus 模型将子任务结果优化为最终输出\n- 生成详细的交互日志，捕获整个任务分解和执行过程\n- 将交互日志保存到 Markdown 文件以便轻松参考\n- 利用改进的 Prompt (提示词) 使 Opus 模型更好地评估任务完成情况\n- 在处理代码项目时创建代码文件和文件夹。\n\n## 前置条件\n\n要运行此脚本，您需要具备以下条件：\n\n- 已安装 Python\n- Anthropic API 密钥\n- 所需的 Python 包：`anthropic` 和 `rich`\n\n## 安装\n\n1. 克隆仓库 (Repository) 或下载脚本文件。\n2. 通过运行以下命令安装所需的 Python 包：\n\n```bash\npip install -r requirements.txt\n```\n\n3. 将脚本中的占位符 API 密钥替换为您的实际 Anthropic API 密钥：\n\n```python\nclient = Anthropic(api_key=\"YOUR_API_KEY_HERE\")\n```\n\n如果使用搜索，替换您的 Tavily API\n```python\ntavily = TavilyClient(api_key=\"YOUR API KEY HERE\")\n```\n\n## 用法\n\n1. 打开终端 (Terminal) 或命令提示符并导航到包含脚本的目录。\n2. 使用以下命令运行脚本：\n\n```bash\npython maestro.py\n```\n\n3. 提示时输入您的目标：\n\n```bash\nPlease enter your objective: Your objective here\n```\n\n脚本将启动任务分解和执行过程。它将使用格式化的面板在控制台 (Console) 中显示进度和结果。\n\n一旦过程完成，脚本将显示优化后的最终输出，并将完整的交互日志保存到基于目标命名的 Markdown 文件中。\n\n## 代码结构\n\n脚本包含以下主要函数：\n\n- `opus_orchestrator(objective, previous_results=None)`: 调用 Opus 模型将目标分解为子任务或提供最终输出。它使用改进的 Prompt (提示词) 来评估任务完成情况，并在目标完全实现时包含短语 \"The task is complete:\"。\n- `haiku_sub_agent(prompt, previous_haiku_tasks=None)`: 调用 Haiku 模型执行子任务 Prompt (提示词)，并向其提供先前子任务的记忆。\n- `opus_refine(objective, sub_task_results)`: 调用 Opus 模型审查并将子任务结果优化为连贯的最终输出。\n\n脚本遵循迭代过程，重复调用 opus_orchestrator 函数将目标分解为子任务，直到提供最终输出。每个子任务随后由 haiku_sub_agent 函数执行，结果存储在 task_exchanges 和 haiku_tasks 列表中。\n\n当 Opus 模型在其响应中包含短语 \"The task is complete:\" 时，循环终止，表明目标已完全实现。\n\n最后，调用 opus_refine 函数审查并将子任务结果优化为最终输出。整个交互日志，包括目标、任务分解和优化后的最终输出，都保存到 Markdown 文件中。\n\n## 自定义\n\n您可以根据需要自定义脚本：\n\n- 调整 client.messages.create() 函数调用中的 max_tokens 参数，以控制 AI 模型生成的最大 Token (令牌) 数。\n- 将模型更改为您喜欢的模型，例如用 Sonnet 或 Opus 替换 Haiku。\n- 通过更新 rich 库的 Panel 和 Console 配置来修改控制台输出格式。\n- 通过修改相关代码部分来自定义交互日志格式和文件扩展名。\n\n## 许可证\n\n此脚本根据 MIT License (许可证) 发布。\n\n## 致谢\n\n- Anthropic 提供 AI 模型和 API。\n- Rich 提供精美的控制台格式。\n\n## Star 历史\n\n[![Star History Chart](https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002FDoriandarko_maestro_readme_ab0f851b78e8.png)](https:\u002F\u002Fstar-history.com\u002F#Doriandarko\u002Fmaestro&Date)","# Maestro 快速上手指南\n\nMaestro 是一个 AI 任务编排框架，支持 Claude、GPT、Gemini 及本地大模型（Ollama\u002FLMStudio）。它能将复杂目标分解为子任务，协调多个代理执行并优化最终结果。\n\n## 环境准备\n\n- **系统要求**：已安装 Python 环境。\n- **模型访问**：\n  - 云端模型：准备对应的 API Key（Anthropic、OpenAI、Google Gemini 等）。\n  - 本地模型：安装并运行 Ollama 或 LMStudio 服务。\n- **搜索功能（可选）**：如需启用联网搜索，需准备 Tavily API Key。\n\n## 安装步骤\n\n1. **获取源码**\n   克隆仓库或下载脚本文件到本地。\n\n2. **安装依赖**\n   根据使用场景安装必要的 Python 包。\n   ```bash\n   pip install -r requirements.txt\n   ```\n   若使用多 API 支持（LiteLLM），还需安装：\n   ```bash\n   pip install litellm\n   ```\n   若使用本地 Ollama，还需安装：\n   ```bash\n   pip install ollama\n   ```\n   若使用 Groq 加速，还需安装：\n   ```bash\n   pip install groq\n   ```\n\n3. **配置 API Key**\n   - **方式一（环境变量）**：适用于 `maestro-anyapi.py` 等多模型脚本。\n   ```bash\n   os.environ[\"OPENAI_API_KEY\"] = \"YOUR KEY\" \n   os.environ[\"ANTHROPIC_API_KEY\"] = \"YOUR KEY\"\n   os.environ[\"GEMINI_API_KEY\"] = \"YOUR KEY\"\n   ```\n   - **方式二（修改脚本）**：适用于 `maestro.py` 原始脚本。\n   在脚本中找到以下行并替换为你的 Key：\n   ```python\n   client = Anthropic(api_key=\"YOUR_API_KEY_HERE\")\n   ```\n   若使用搜索功能，同样需替换 Tavily Key：\n   ```python\n   tavily = TavilyClient(api_key=\"YOUR API KEY HERE\")\n   ```\n\n## 基本使用\n\n1. **运行脚本**\n   根据选择的模型版本运行对应的脚本。\n   \n   原始版本（Anthropic）：\n   ```bash\n   python maestro.py\n   ```\n   \n   多 API 支持版本：\n   ```bash\n   python maestro-anyapi.py\n   ```\n   \n   本地 Ollama 版本：\n   ```bash\n   python maestro-ollama.py\n   ```\n\n2. **输入目标**\n   根据终端提示输入你的任务目标：\n   ```bash\n   Please enter your objective: Your objective here\n   ```\n\n3. **查看结果**\n   脚本将在控制台显示执行进度，完成后输出优化后的最终结果，并将详细交互日志保存为基于目标命名的 Markdown 文件。","独立开发者小李需要构建一个自动抓取科技新闻并生成每日摘要的 Python 脚本，涉及搜索、抓取、清洗和总结多个环节。\n\n### 没有 maestro 时\n- 单个 Prompt 难以覆盖复杂流程，模型容易遗漏步骤或产生幻觉，导致代码不可用。\n- 手动拆解任务耗时费力，且各步骤间上下文难以连贯传递，数据流转容易出错。\n- 代码生成后缺乏统一校验，错误率高，调试过程没有详细日志记录，排查问题困难。\n- 切换不同模型测试效果麻烦，需要反复修改 API 调用代码，无法快速对比性能。\n\n### 使用 maestro 后\n- maestro 自动将目标拆解为搜索、抓取、清洗等子任务，由子代理分别执行，逻辑清晰。\n- 主代理保留记忆上下文，确保子任务结果连贯，最终统一优化代码质量，减少幻觉。\n- 自动生成详细的执行日志并保存为 Markdown，方便追溯每一步的决策过程与中间结果。\n- 支持通过配置轻松切换 Claude、GPT 或本地 Ollama 模型，灵活验证效果且无需改动核心逻辑。\n\nmaestro 通过智能编排多代理协作流程，将复杂开发任务标准化，显著提升了自动化脚本的构建效率、代码质量与可维护性。","https:\u002F\u002Foss.gittoolsai.com\u002Fimages\u002FDoriandarko_maestro_cb4e4f5d.png","Doriandarko","Pietro Schirano","https:\u002F\u002Foss.gittoolsai.com\u002Favatars\u002FDoriandarko_7146aa01.jpg","Passionate AI engineer on a mission to democratize AI tools.\r\n\r\nFounder at MagicPath 🎨✨\r\n\r\nmagicpath.ai","EverArt",null,"pietro.schirano@gmail.com","skirano","everart.ai","https:\u002F\u002Fgithub.com\u002FDoriandarko",[25,29,33],{"name":26,"color":27,"percentage":28},"Python","#3572A5",97.3,{"name":30,"color":31,"percentage":32},"HTML","#e34c26",1.8,{"name":34,"color":35,"percentage":36},"CSS","#663399",0.9,4328,650,"2026-04-05T10:17:58",2,"Linux, macOS, Windows","非必需（API 模式无需 GPU；本地 Ollama\u002FLMStudio 模式取决于所选模型）","未说明",{"notes":45,"python":43,"dependencies":46},"需配置各服务 API 密钥（Anthropic, OpenAI, Gemini, Tavily 等）；本地运行需预先安装 Ollama 或 LMStudio 客户端；搜索功能需单独获取 Tavily API 密钥；首次使用本地模型需下载模型文件。",[47,48,49,50,51,52],"anthropic","rich","litellm","ollama","groq","tavily",[54,55],"Agent","开发框架",6,"ready","2026-03-27T02:49:30.150509","2026-04-06T08:45:36.510338",[61,66,71,76,80,85],{"id":62,"question_zh":63,"answer_zh":64,"source_url":65},534,"遇到 Anthropic 或 OpenAI API 认证错误（401 invalid x-api-key）如何解决？","首先检查 API 密钥是否正确。如果是新创建的账户，密钥可能需要等待 15 分钟左右才能生效。此外，确保在代码中或环境变量（如在 conda 环境中使用 setx）正确设置了 API 密钥，并检查密钥字符串周围是否有多余的引号。该问题可能同时影响 Anthropic 和 OpenAI 的密钥配置。","https:\u002F\u002Fgithub.com\u002FDoriandarko\u002Fmaestro\u002Fissues\u002F15",{"id":67,"question_zh":68,"answer_zh":69,"source_url":70},535,"在 Windows 上脚本无法读取提供的文件路径内容怎么办？","这是因为原始代码未正确处理 Windows 文件路径格式。需要修改代码中的正则表达式以支持 Windows 路径。解决方案是将路径提取逻辑修改为：`file_path = re.findall(r'[a-zA-Z]:\\\\(?:[^\\\\\u002F:*?\"\u003C>|\\r\\n]+\\\\)*[^\\\\\u002F:*?\"\u003C>|\\r\\n]*', objective)[0]`，以确保能识别如 `C:\\...` 的路径格式。","https:\u002F\u002Fgithub.com\u002FDoriandarko\u002Fmaestro\u002Fissues\u002F32",{"id":72,"question_zh":73,"answer_zh":74,"source_url":75},536,"为什么生成的代码会在完成目标前停止或包含占位符？","这通常是因为模型的响应被截断或上下文长度不足。维护者已通过增加上下文长度来修复此问题。如果使用的是旧版本，可能会遇到生成不完整的情况。","https:\u002F\u002Fgithub.com\u002FDoriandarko\u002Fmaestro\u002Fissues\u002F11",{"id":77,"question_zh":78,"answer_zh":79,"source_url":75},537,"如果生成的代码充满占位符无法运行，有什么临时解决方法？","用户可以浏览完整的对话记录，手动复制模型之前已经写好的函数代码，粘贴到末尾的占位符位置，以获得完整的可运行脚本。这是一种在自动修复前的有效变通方案。",{"id":81,"question_zh":82,"answer_zh":83,"source_url":84},538,"选择不使用搜索功能（回答 n）时脚本报错怎么办？","这是旧版本中的一个 Bug，在新更新中已修复。如果遇到此问题，请更新到最新版本。在修复前，临时解决方法是始终选择使用搜索功能（即在提示 'Do you want to use search? (y\u002Fn)' 时回答 'y'）。","https:\u002F\u002Fgithub.com\u002FDoriandarko\u002Fmaestro\u002Fissues\u002F19",{"id":86,"question_zh":87,"answer_zh":88,"source_url":89},539,"Maestro 只能用于编写代码吗？","不是。虽然它擅长创建代码，但也可以用于创建其他任何内容，不仅仅局限于代码生成任务。它是一个通用的任务执行工具。","https:\u002F\u002Fgithub.com\u002FDoriandarko\u002Fmaestro\u002Fissues\u002F24",[],[92,102,111,119,127,140],{"id":93,"name":94,"github_repo":95,"description_zh":96,"stars":97,"difficulty_score":98,"last_commit_at":99,"category_tags":100,"status":57},3808,"stable-diffusion-webui","AUTOMATIC1111\u002Fstable-diffusion-webui","stable-diffusion-webui 是一个基于 Gradio 构建的网页版操作界面，旨在让用户能够轻松地在本地运行和使用强大的 Stable Diffusion 图像生成模型。它解决了原始模型依赖命令行、操作门槛高且功能分散的痛点，将复杂的 AI 绘图流程整合进一个直观易用的图形化平台。\n\n无论是希望快速上手的普通创作者、需要精细控制画面细节的设计师，还是想要深入探索模型潜力的开发者与研究人员，都能从中获益。其核心亮点在于极高的功能丰富度：不仅支持文生图、图生图、局部重绘（Inpainting）和外绘（Outpainting）等基础模式，还独创了注意力机制调整、提示词矩阵、负向提示词以及“高清修复”等高级功能。此外，它内置了 GFPGAN 和 CodeFormer 等人脸修复工具，支持多种神经网络放大算法，并允许用户通过插件系统无限扩展能力。即使是显存有限的设备，stable-diffusion-webui 也提供了相应的优化选项，让高质量的 AI 艺术创作变得触手可及。",162132,3,"2026-04-05T11:01:52",[55,101,54],"图像",{"id":103,"name":104,"github_repo":105,"description_zh":106,"stars":107,"difficulty_score":40,"last_commit_at":108,"category_tags":109,"status":57},1381,"everything-claude-code","affaan-m\u002Feverything-claude-code","everything-claude-code 是一套专为 AI 编程助手（如 Claude Code、Codex、Cursor 等）打造的高性能优化系统。它不仅仅是一组配置文件，而是一个经过长期实战打磨的完整框架，旨在解决 AI 代理在实际开发中面临的效率低下、记忆丢失、安全隐患及缺乏持续学习能力等核心痛点。\n\n通过引入技能模块化、直觉增强、记忆持久化机制以及内置的安全扫描功能，everything-claude-code 能显著提升 AI 在复杂任务中的表现，帮助开发者构建更稳定、更智能的生产级 AI 代理。其独特的“研究优先”开发理念和针对 Token 消耗的优化策略，使得模型响应更快、成本更低，同时有效防御潜在的攻击向量。\n\n这套工具特别适合软件开发者、AI 研究人员以及希望深度定制 AI 工作流的技术团队使用。无论您是在构建大型代码库，还是需要 AI 协助进行安全审计与自动化测试，everything-claude-code 都能提供强大的底层支持。作为一个曾荣获 Anthropic 黑客大奖的开源项目，它融合了多语言支持与丰富的实战钩子（hooks），让 AI 真正成长为懂上",140436,"2026-04-05T23:32:43",[55,54,110],"语言模型",{"id":112,"name":113,"github_repo":114,"description_zh":115,"stars":116,"difficulty_score":40,"last_commit_at":117,"category_tags":118,"status":57},2271,"ComfyUI","Comfy-Org\u002FComfyUI","ComfyUI 是一款功能强大且高度模块化的视觉 AI 引擎，专为设计和执行复杂的 Stable Diffusion 图像生成流程而打造。它摒弃了传统的代码编写模式，采用直观的节点式流程图界面，让用户通过连接不同的功能模块即可构建个性化的生成管线。\n\n这一设计巧妙解决了高级 AI 绘图工作流配置复杂、灵活性不足的痛点。用户无需具备编程背景，也能自由组合模型、调整参数并实时预览效果，轻松实现从基础文生图到多步骤高清修复等各类复杂任务。ComfyUI 拥有极佳的兼容性，不仅支持 Windows、macOS 和 Linux 全平台，还广泛适配 NVIDIA、AMD、Intel 及苹果 Silicon 等多种硬件架构，并率先支持 SDXL、Flux、SD3 等前沿模型。\n\n无论是希望深入探索算法潜力的研究人员和开发者，还是追求极致创作自由度的设计师与资深 AI 绘画爱好者，ComfyUI 都能提供强大的支持。其独特的模块化架构允许社区不断扩展新功能，使其成为当前最灵活、生态最丰富的开源扩散模型工具之一，帮助用户将创意高效转化为现实。",107662,"2026-04-03T11:11:01",[55,101,54],{"id":120,"name":121,"github_repo":122,"description_zh":123,"stars":124,"difficulty_score":40,"last_commit_at":125,"category_tags":126,"status":57},3704,"NextChat","ChatGPTNextWeb\u002FNextChat","NextChat 是一款轻量且极速的 AI 助手，旨在为用户提供流畅、跨平台的大模型交互体验。它完美解决了用户在多设备间切换时难以保持对话连续性，以及面对众多 AI 模型不知如何统一管理的痛点。无论是日常办公、学习辅助还是创意激发，NextChat 都能让用户随时随地通过网页、iOS、Android、Windows、MacOS 或 Linux 端无缝接入智能服务。\n\n这款工具非常适合普通用户、学生、职场人士以及需要私有化部署的企业团队使用。对于开发者而言，它也提供了便捷的自托管方案，支持一键部署到 Vercel 或 Zeabur 等平台。\n\nNextChat 的核心亮点在于其广泛的模型兼容性，原生支持 Claude、DeepSeek、GPT-4 及 Gemini Pro 等主流大模型，让用户在一个界面即可自由切换不同 AI 能力。此外，它还率先支持 MCP（Model Context Protocol）协议，增强了上下文处理能力。针对企业用户，NextChat 提供专业版解决方案，具备品牌定制、细粒度权限控制、内部知识库整合及安全审计等功能，满足公司对数据隐私和个性化管理的高标准要求。",87618,"2026-04-05T07:20:52",[55,110],{"id":128,"name":129,"github_repo":130,"description_zh":131,"stars":132,"difficulty_score":40,"last_commit_at":133,"category_tags":134,"status":57},2268,"ML-For-Beginners","microsoft\u002FML-For-Beginners","ML-For-Beginners 是由微软推出的一套系统化机器学习入门课程，旨在帮助零基础用户轻松掌握经典机器学习知识。这套课程将学习路径规划为 12 周，包含 26 节精炼课程和 52 道配套测验，内容涵盖从基础概念到实际应用的完整流程，有效解决了初学者面对庞大知识体系时无从下手、缺乏结构化指导的痛点。\n\n无论是希望转型的开发者、需要补充算法背景的研究人员，还是对人工智能充满好奇的普通爱好者，都能从中受益。课程不仅提供了清晰的理论讲解，还强调动手实践，让用户在循序渐进中建立扎实的技能基础。其独特的亮点在于强大的多语言支持，通过自动化机制提供了包括简体中文在内的 50 多种语言版本，极大地降低了全球不同背景用户的学习门槛。此外，项目采用开源协作模式，社区活跃且内容持续更新，确保学习者能获取前沿且准确的技术资讯。如果你正寻找一条清晰、友好且专业的机器学习入门之路，ML-For-Beginners 将是理想的起点。",84991,"2026-04-05T10:45:23",[101,135,136,137,54,138,110,55,139],"数据工具","视频","插件","其他","音频",{"id":141,"name":142,"github_repo":143,"description_zh":144,"stars":145,"difficulty_score":98,"last_commit_at":146,"category_tags":147,"status":57},3128,"ragflow","infiniflow\u002Fragflow","RAGFlow 是一款领先的开源检索增强生成（RAG）引擎，旨在为大语言模型构建更精准、可靠的上下文层。它巧妙地将前沿的 RAG 技术与智能体（Agent）能力相结合，不仅支持从各类文档中高效提取知识，还能让模型基于这些知识进行逻辑推理和任务执行。\n\n在大模型应用中，幻觉问题和知识滞后是常见痛点。RAGFlow 通过深度解析复杂文档结构（如表格、图表及混合排版），显著提升了信息检索的准确度，从而有效减少模型“胡编乱造”的现象，确保回答既有据可依又具备时效性。其内置的智能体机制更进一步，使系统不仅能回答问题，还能自主规划步骤解决复杂问题。\n\n这款工具特别适合开发者、企业技术团队以及 AI 研究人员使用。无论是希望快速搭建私有知识库问答系统，还是致力于探索大模型在垂直领域落地的创新者，都能从中受益。RAGFlow 提供了可视化的工作流编排界面和灵活的 API 接口，既降低了非算法背景用户的上手门槛，也满足了专业开发者对系统深度定制的需求。作为基于 Apache 2.0 协议开源的项目，它正成为连接通用大模型与行业专有知识之间的重要桥梁。",77062,"2026-04-04T04:44:48",[54,101,55,110,138]]