介绍
# Council of the Wise
从 AI 专家小组那里获得关于你想法的多视角反馈。非常适合用于对商业计划、项目设计、内容策略或重大决策进行压力测试。
## 使用方法
``` "Send this to the council: [idea/plan/document]" "Council of the wise: [topic]" "Get the council's feedback on [thing]" ```
## 议会成员
该技能会从 `{skill_folder}/agents/` **自动发现** 代理角色。该文件夹中的任何 `.md` 文件都会成为议会成员。
**默认成员:** - `DevilsAdvocate.md` — 挑战假设,发现弱点,进行压力测试 - `Architect.md` — 设计系统,架构,高层方法 - `Engineer.md` — 实现细节,技术可行性 - `Artist.md` — 语气,风格,演示,用户体验 - `Quant.md` — 风险分析,投资回报率,期望值,仓位配置
### 添加新的议会成员
只需在 `agents/` 文件夹中添加一个新的 `.md` 文件:
```bash # Add a security reviewer echo "# Pentester\n\nYou analyze security implications..." > agents/Pentester.md
# Add a QA perspective echo "# QATester\n\nYou find edge cases..." > agents/QATester.md ```
该技能将自动包含它找到的任何代理。无需配置文件。
### 自定义代理位置(可选)
如果用户在 `~/.claude/Agents/` 处有自定义 PAI 代理,则可以使用这些代理: - 检查 `~/.claude/Agents/` 是否存在并包含代理文件 - 如果存在,优先使用该目录中的自定义代理 - 如果不存在,则使用此技能 `agents/` 文件夹中的内置代理
## 流程
1. 从用户那里接收想法/主题 2. 发现可用的代理(扫描 `agents/` 文件夹或自定义路径) 3. 向用户发送加载消息:`🏛️ *The Council convenes...* (this takes 2-5 minutes)` 4. 使用此任务模板生成一个具有 **5 分钟超时** 的子代理:
``` Analyze this idea/plan from multiple expert perspectives.
**The Idea:** [user's idea here]
**Your Task:** Read and apply these agent perspectives from [AGENT_PATH]: [List all discovered agents dynamically]
For each perspective: 1. Key insights (2-3 bullets) 2. Concerns or questions 3. Recommendations
End with: - **Synthesis** section combining best ideas and flagging critical decisions - Note where council members **disagree** with each other — that's where the insight is - Put **Synthesis first** (TL;DR at the top, details below)
Use the voice and personality defined in each agent file. Don't just list points — embody the perspective. ```
5. 将汇总的反馈返回给用户
## 输出格式
```markdown ## 🏛️ Council of the Wise — [Topic]
### ⚖️ Synthesis (TL;DR) [combined recommendation + key decisions needed] [note where council members disagreed and why — that's the gold]
---
### 👹 Devil's Advocate [challenges and risks — sharp, probing voice]
### 🏗️ Architect [structure and design — strategic, principled voice]
### 🛠️ Engineer [implementation notes — practical, direct voice]
### 🎨 Artist [voice and presentation — evocative, user-focused voice]
### 📊 Quant [risk analysis, ROI, expected value — data-driven voice] ```
## 配置
无需配置文件。该技能自动发现代理并使用合理的默认值:
- **超时:** 5 分钟(通过子代理生成强制执行) - **代理:** `agents/` 文件夹中的所有 `.md` 文件 - **输出:** 包含综合和令牌使用情况的 Markdown - **模型:** 使用会话默认值(可通过 Clawdbot 覆盖)
## 注意事项
- 议会审查根据复杂程度需要 2-5 分钟 - **超时:** 强制执行 5 分钟;超时时,如果可用则返回部分结果 - 适用于:商业想法,内容计划,项目设计,重大决策 - 不适用于:快速问题,简单任务,时效性请求 - 子代理将所有视角合并为单个响应,首先包含综合部分 - 添加专门的代理以进行特定领域的分析(安全、法律等)
---
## 代理实现说明
**触发短语:** "send this to the council", "council of the wise", "get the council's feedback on"
**触发时:** 1. 发送加载消息:`🏛️ *The Council convenes...* (this takes 2-5 minutes)` 2. 使用流程部分中的任务模板生成具有 5 分钟超时的子代理 3. 将综合后的议会报告返回给用户
**不要在以下情况调用:** 快速问题,时效性任务,简单决策。