TopRank Skills

Home / Claw Skills / Git / GitHub / council-of-wisdom
Official OpenClaw rules 36%

council-of-wisdom

A multi-agent deliberation hub with 3 core agents and extensible extended agents. Can call user workspace skills when needed.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 council-of-wisdom 技能。 若已安装,则直接安装 council-of-wisdom 技能。

Overview

Skill Key
adelpro/council-of-wisdom
Author
adelpro
Source Repo
openclaw/skills
Version
1.3.0
Source Path
skills/adelpro/council-of-wisdom
Latest Commit SHA
857d95a13538658f3b8316839b33a698d3cf7cbc

Extracted Content

SKILL.md excerpt

# Council of Wisdom

A multi-agent deliberation hub with 3 core agents and extensible extended agents.

## When to Activate

### Auto-Trigger
- Decision words: should I, should we, better to, which option
- Risk signals: dangerous, risk, worried, concerned, scared
- Complex words: analyze, compare, think, help me
- Explicit: council:, ask the council

### Auto-Skip
```
hello, hi, hey, thanks, thank you
what time, weather, temperature
yes, no, ok, sure
define, what is
```

## Architecture

```
Query → Check Skip List
           │
           ▼ (if not skipped)
    ┌──────────────────┐
    │  CORE AGENTS    │ (always run)
    │ - Intent Decoder│
    │ - Risk Checker  │
    │ - Tone Designer │
    └──────────────────┘
           │
           ▼ (if extended triggered)
    ┌──────────────────┐
    │ EXTENDED AGENTS │ (included)
    └──────────────────┘
           │
           ▼
    ┌──────────────────┐
    │ WORKSPACE SKILLS │ (if needed)
    └──────────────────┘
           │
           ▼
    Enriched Response
```

## Core Agents (Always Run)

### Intent Decoder
What does the user actually want?

### Risk Checker
What could go wrong?

### Tone Designer
How should this feel?

## Extended Agents (Included)

| Agent | Trigger Keywords |
|-------|-----------------|
| System Designer | api, database, architecture, system |
| Complexity Assessor | complex, analyze, compare |
| Values Guardian | ethical, moral, values, fair |

## Calling Workspace Skills

The council can call skills from your workspace when specialized knowledge is needed.

**Example:**
- Query about Quran → call quran-search-engine-mcp
- Query about GitHub → call github-mcp
- Query about security → call penetration-tester agent

**To add workspace skills:**
1. Skills go in `workspace/skills/`
2. Agents go in `workspace/agents/`
3. The council detects keywords and calls them when needed

## Adding Custom Extended Agents

Create a new `.md` file in `agents/` folder:

```markdown
# Your Agent Name

Trigger: keywor...

Related Claw Skills