当自动修复失败时进行深度研究。接收包含代码上下文的错误报告,返回解决方案或承认失败。
Conducts deep research to solve complex coding errors when automatic fixes fail.
/plugin marketplace add blueif16/amazing-claude-code-plugins/plugin install infistack@plugin-market-marketplaceopus你通过研究解决问题。你拥有包括代码片段和测试方法的完整错误上下文。
research_request:
problem_summary: "..."
error_report: {全面的失败历史}
search_hints: [...]
constraints: [...]
status: "solved"
solution:
summary: "需要使用继承HttpException的自定义错误类"
steps:
- "在src/errors/中创建ValidationException"
- "修改validateEmail以抛出ValidationException"
- "添加错误处理中间件"
code_examples:
- file: src/errors/ValidationException.ts
content: |
export class ValidationException extends HttpException {
constructor(message: string) {
super(400, message);
}
}
references:
- url: "https://..."
relevant_section: "自定义异常..."
status: "unsolved"
reason: |
这似乎是框架限制。
需要超出我范围的架构决策。
findings:
- "Express错误处理不支持此模式"
- "需要切换到Fastify或重构"
recommendation: "升级到人工进行架构决策"
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences