Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

feature-council特色委员会

Agent Skill

feature-council 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

372

周安装

16

GitHub Stars

10

下载量

131
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:feature-council(特色委员会)
来源仓库:https://github.com/michaelboeding/skills
仓库路径:skills/feature-council
安装命令:
npx skills add https://github.com/michaelboeding/skills --skill feature-council
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/michaelboeding/skills --skill feature-council

简介

通过多智能体协作实现同一功能,综合各方案优势形成完整实现。

  • 不同于多数投票式纠错,适用于具有多种有效实现路径的复杂功能。
  • 可配置 3-10 个求解器代理并行工作,平衡速度与覆盖广度。
  • 最终合并各代理实现中的最佳部分,提升功能完整性。
  • 适合需要多样化探索和全面覆盖的功能开发任务。feature-council 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Feature Council: Multi-Agent Feature Implementation

Spawns multiple agents to implement the same feature independently, then synthesizes the best parts from each. Unlike code-council (majority voting for bugs), this skill merges strengths because features have multiple valid approaches.

Use this for complex features where you want diverse implementations and comprehensive coverage.

Step 0: Ask User How Many Agents

Before doing anything else, ask the user how many solver agents to use:

How many solver agents would you like me to use? (3-10)

Recommendations:
- 3 agents: Faster, good for straightforward features
- 5 agents: Good balance of diversity and speed
- 7 agents: Comprehensive coverage
- 10 agents: Maximum diversity (complex features)

Note: Each agent will independently implement the entire feature.
More agents = more diverse approaches and edge case coverage.

Wait for the user's response. If they specified a number (e.g., "feature council of 5"), use that.

Minimum: 3 agents | Maximum: 10 agents


CRITICAL: Pure Independence

What This Means

  1. NO orchestrator exploration - Do NOT read files or gather context before spawning agents
  2. Raw user prompt to all agents - Each agent gets the user's original request, unchanged
  3. Each agent explores independently - Agents discover the codebase themselves
  4. Each agent implements fully - Complete, working implementations

Why This Matters

Independent implementations mean:

  • Different architectural choices to compare
  • Different edge cases discovered
  • Different error handling approaches
  • More comprehensive final solution

Workflow

Step 1: Capture the Raw User Prompt

Take the user's request exactly as stated. Do NOT:

  • ❌ Read files first
  • ❌ Explore the codebase
  • ❌ Add context
  • ❌ Rephrase or enhance the prompt

Just capture what the user said.

Step 2: Spawn Agents IN PARALLEL with RAW PROMPT

Spawn ALL agents simultaneously. Each gets the exact same raw prompt:

Task(agent: "feature-solver-1", prompt: "[USER'S EXACT WORDS]")
Task(agent: "feature-solver-2", prompt: "[USER'S EXACT WORDS]")
Task(agent: "feature-solver-3", prompt: "[USER'S EXACT WORDS]")
... (all in the SAME batch - parallel execution)

DO NOT modify the prompt. DO NOT add context. Raw user words only.

Step 3: Agents Work Independently

Each agent will:

  1. Read and understand the user's feature request
  2. Explore the codebase to understand existing patterns
  3. Design their approach
  4. Implement the complete feature
  5. Handle edge cases they identify
  6. Verify their implementation

Each agent works in complete isolation.

Step 4: Track Progress & Collect Solutions

As agents complete, show progress to the user:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
                     AGENT PROGRESS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
☑ Agent 1 - Complete
☑ Agent 2 - Complete
☑ Agent 3 - Complete
☐ Agent 4 - Working...
☐ Agent 5 - Working...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Collect all outputs when complete.

Step 5: Analyze & Compare Implementations

DO NOT use majority voting. Instead, analyze each implementation for:

CategoryWhat to Look For
ArchitectureDesign patterns, code organization, modularity
Edge CasesWhat edge cases did each agent handle?
Error HandlingHow robust is the error handling?
Type SafetyType definitions, null checks, validation
PerformanceEfficiency, caching, optimization
MaintainabilityReadability, documentation, testability
Codebase FitHow well does it match existing patterns?

Create a comparison matrix:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
                  IMPLEMENTATION COMPARISON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

| Aspect          | Agent 1 | Agent 2 | Agent 3 | Agent 4 | Agent 5 |
|-----------------|---------|---------|---------|---------|---------|
| Architecture    | MVC     | Service | MVC     | MVC     | Modular |
| Edge Cases      | 3       | 5       | 4       | 3       | 6       |
| Error Handling  | Basic   | Robust  | Good    | Basic   | Robust  |
| Type Safety     | ✓       | ✓✓      | ✓       | ✓       | ✓✓      |
| Codebase Match  | 90%     | 75%     | 95%     | 85%     | 80%     |

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Step 6: Synthesize Best Solution

Combine the best elements from each agent:

  1. Select base implementation - Choose the one that best matches codebase patterns
  2. Incorporate edge cases - Add edge cases from other agents the base missed
  3. Enhance error handling - Use the most robust error handling approach
  4. Improve type safety - Merge type definitions and validations
  5. Document sources - Track which elements came from which agent
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
                     SYNTHESIS DECISION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Base: Agent 3 (best codebase pattern match)

Incorporating from other agents:
├─ Agent 2: Robust error handling pattern
├─ Agent 5: Edge cases for [empty input, concurrent access]
├─ Agent 2: Type definitions for [UserInput, ValidationResult]
└─ Agent 4: Caching optimization

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Step 7: Create Finalized Implementation Plan

Before implementing, create a detailed execution plan from the synthesized solution:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
                 📋 IMPLEMENTATION PLAN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## Files to Create

| # | File Path | Purpose | Source |
|---|-----------|---------|--------|
| 1 | path/to/NewService.ts | Main service class | Agent 3 base |
| 2 | path/to/types.ts | Type definitions | Agent 2 |
| 3 | path/to/utils.ts | Helper functions | Agent 5 |

## Files to Modify

| # | File Path | Changes | Source |
|---|-----------|---------|--------|
| 1 | path/to/index.ts | Add export | Agent 3 |
| 2 | path/to/config.ts | Add config entry | Agent 4 |
| 3 | path/to/app.ts | Register service | Agent 3 |

## Implementation Order

1. **Create types.ts** (no dependencies)
   - Define interfaces and types
   - From: Agent 2

2. **Create utils.ts** (depends on types)
   - Add helper functions
   - From: Agent 5

3. **Create NewService.ts** (depends on types, utils)
   - Main implementation
   - From: Agent 3 + Agent 2 error handling

4. **Modify config.ts** (no dependencies)
   - Add configuration
   - From: Agent 4

5. **Modify index.ts** (depends on NewService)
   - Export new service
   - From: Agent 3

6. **Modify app.ts** (depends on all above)
   - Register and initialize
   - From: Agent 3

## Edge Cases to Handle

| Edge Case | How Handled | Source |
|-----------|-------------|--------|
| Empty input | Return early with default | Agent 5 |
| Null values | Null coalescing + validation | Agent 2 |
| Concurrent access | Mutex lock | Agent 5 |
| Network timeout | Retry with backoff | Agent 4 |

## Error Handling Strategy

- Pattern: [from Agent 2]
- Logging: [approach]
- Recovery: [approach]

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

This plan ensures:

  • Correct dependency order
  • All edge cases addressed
  • Clear traceability to source agents

Step 8: Execute Implementation Plan

Follow the plan step-by-step. For each step:

  1. Create/modify the file as specified
  2. Verify it matches the synthesized approach
  3. Move to next step

Step 9: Report Results

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
                    FEATURE COUNCIL RESULTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 📊 Implementation Comparison

| Agent | Architecture | Edge Cases | Error Handling | Codebase Fit |
|-------|--------------|------------|----------------|--------------|
| 1     | [approach]   | [count]    | [quality]      | [%]          |
| 2     | [approach]   | [count]    | [quality]      | [%]          |
| ...   | ...          | ...        | ...            | ...          |

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 🔍 What Each Agent Contributed

### Agent 1
- Approach: [brief description]
- Unique strength: [what this agent did best]
- Used in final: [what was incorporated]

### Agent 2
- Approach: [brief description]
- Unique strength: [what this agent did best]
- Used in final: [what was incorporated]

... (for each agent)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 📋 Implementation Plan Executed

| Step | File | Action | Status |
|------|------|--------|--------|
| 1 | path/to/types.ts | Created | ✅ |
| 2 | path/to/utils.ts | Created | ✅ |
| 3 | path/to/Service.ts | Created | ✅ |
| 4 | path/to/config.ts | Modified | ✅ |
| 5 | path/to/index.ts | Modified | ✅ |

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 🧬 Synthesis Breakdown

| Element | Source Agent | Reason |
|---------|--------------|--------|
| Base architecture | Agent 3 | Best codebase pattern match (95%) |
| Error handling | Agent 2 | Most comprehensive try/catch + logging |
| Edge case: empty input | Agent 5 | Only agent that handled this |
| Edge case: concurrent | Agent 5 | Race condition prevention |
| Type definitions | Agent 2 | Strictest typing |
| Caching layer | Agent 4 | Performance optimization |

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 📈 Final Solution Quality

- **Edge Cases Covered**: [total unique from all agents]
- **Error Handling**: [description]
- **Codebase Fit**: [% and explanation]
- **Type Safety**: [description]

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## ✅ Implemented Solution

[The synthesized implementation]

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

## 📁 Files Created/Modified

[List of all files with brief descriptions]

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Configuration

ModeAgentsUse Case
feature council of 33Simple features, faster
feature council of 55Good balance
feature council of 77Complex features
feature council of 1010Maximum coverage

If user just says feature council, ask them to choose.


Difference from Code Council

AspectCode CouncilFeature Council
PurposeBug fixes, algorithmsFeature implementation
SelectionMajority votingSynthesis/merge
OutputSingle winning solutionBest-of-all combined
MetricCorrectness consensusComprehensiveness

Agents

10 feature solver agents in agents/ directory:

  • feature-solver-1 through feature-solver-10

All agents:

  • Same instructions (focused on feature implementation)
  • Same temperature (0.7)
  • Same tools (Read, Grep, Glob, LS)
  • Use ultrathink (extended thinking)
  • Emphasize codebase pattern matching and edge case coverage

Why Synthesis > Voting for Features

With bugs, there's ONE correct answer. With features:

  • Multiple valid architectures exist
  • One agent might catch edge cases others miss
  • Error handling approaches can be combined
  • Type safety can be merged

Synthesis captures the union of good ideas rather than picking one.


When to Use

Use feature-council for:

  • Complex features with many edge cases
  • Features where you're unsure of best approach
  • High-stakes production code
  • When you want comprehensive coverage

Don't use for:

  • Simple CRUD operations
  • Bug fixes (use code-council instead)
  • When speed matters more than coverage

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.89%
按下载量换算44

Claude

30.72%
按下载量换算40

Cursor

21.22%
按下载量换算28

Gemini CLI

10.66%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/michaelboeding/skills --skill feature-council 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills