Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

agent-councilAgent 委员会

Agent Skill

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

总安装

1,443

周安装

62

GitHub Stars

1

下载量

506
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/itsahedge/agent-council --skill agent-council

简介

用于查找、检索和筛选相关信息,快速定位候选结果。

  • 适合在关键词、任务场景或来源线索明确时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网或命令执行。
  • 注意检查是否会触发文件读写或高风险操作。agent-council 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent Council

Create and manage autonomous AI agents with full Discord integration.

Updated for OpenClaw 2026.3.x — uses native CLI commands (openclaw agents add/delete/bind/unbind/bindings/set-identity) where possible, with config patching only for Discord channel-specific routing (which the CLI doesn't support yet).

What It Does

  1. Creates agent workspace (SOUL.md, HEARTBEAT.md, IDENTITY.md, memory/)
  2. Registers agent via openclaw agents add
  3. Creates Discord channel (optional) with topic
  4. Binds agent to channel (routing via config patch)
  5. Copies auth profiles (SecretRef-backed, from default agent)
  6. Sets up cron jobs (optional daily memory)

CLI Quick Reference

These native commands are available without the skill:

# List agents and bindings
openclaw agents list
openclaw agents bindings

# Add/remove agents
openclaw agents add <id> --workspace <dir> --model <model> --non-interactive
openclaw agents delete <id>

# Channel-level routing (telegram, discord — not per-Discord-channel)
openclaw agents bind --agent <id> --bind discord
openclaw agents unbind --agent <id> --bind discord

# Identity
openclaw agents set-identity --agent <id> --name "Name" --emoji "🔬"

Note: openclaw agents bind works at the channel level (discord, telegram), not per-Discord-channel-ID. For routing specific Discord channels to specific agents, the skill's config patching is still needed.

Scripts

ScriptPurpose
create-agent.shFull agent setup with Discord integration
bind-channel.shBind existing agent to additional Discord channel
list-agents.shShow all agents and their Discord bindings
remove-agent.shRemove agent (config, crons, optionally workspace/channel)
claim-category.shClaim a Discord category for an agent
sync-category.shSync all channels in a category to its owner
list-categories.shShow category ownership

Usage

Create Agent with New Discord Channel

export DISCORD_GUILD_ID="123456789012345678"

~/.openclaw/skills/agent-council/scripts/create-agent.sh \
  --id watson \
  --name "Watson" \
  --emoji "🔬" \
  --specialty "Deep research and competitive analysis" \
  --create "research" \
  --category "987654321098765432"

This will:

  • Create <workspace>/agents/watson/ with SOUL.md, HEARTBEAT.md, IDENTITY.md
  • Register agent via openclaw agents add
  • Create Discord #research channel in the specified category
  • Bind watson → #research (config patch for channel-specific routing)
  • Add #research to guild allowlist
  • Copy auth profiles from default agent (SecretRef-backed)
  • Create daily memory cron at 11:00 PM (use --no-cron to skip)

Create Agent with Existing Channel

./create-agent.sh \
  --id sage \
  --name "Sage" \
  --emoji "💰" \
  --specialty "Personal finance" \
  --channel "234567890123456789"

Bind Agent to Additional Channel

./bind-channel.sh --agent forge --channel "345678901234567890"
./bind-channel.sh --agent forge --create "defi" --category "456789012345678901"

List Current Setup

./list-agents.sh

Remove Agent

# Remove from config only (keeps workspace)
./remove-agent.sh --id test-agent

# Full removal (workspace trashed, channels deleted)
./remove-agent.sh --id test-agent --delete-workspace --delete-channel

Category Ownership

./claim-category.sh --agent chief --category 123456789012345678 --sync
./list-categories.sh
./sync-category.sh --category 123456789012345678

Agent Cron Jobs

Delivery Pattern

Option A: --announce (preferred for simple jobs)

openclaw cron add \
  --name "My Task" \
  --agent myagent \
  --cron "0 9 * * *" \
  --session isolated \
  --model sonnet \
  --announce --channel discord --to "channel:YOUR_CHANNEL_ID" \
  --message "Do the task."

Option B: delivery: none + message tool (for custom formatting)

openclaw cron add \
  --name "My Task" \
  --agent myagent \
  --cron "0 9 * * *" \
  --session isolated \
  --model sonnet \
  --message "Do the task. Then send the result to Discord using the message tool (action=send, channel=discord, target=channel:YOUR_CHANNEL_ID)."

⚠️ Common mistake: --channel expects the platform name (discord), --to expects the destination (channel:ID).

Heartbeat vs Cron

  • Heartbeat: Multiple checks batched, needs conversation context, timing can drift
  • Cron: Exact timing, task isolation, different model, one-shot reminders

Key Rules

  • delivery.mode = "none" when the payload handles its own delivery via message tool
  • Set timeoutSeconds to 90-120 for tool-using tasks (default 60 is often too tight)
  • Always check for duplicate cron names before creating: cron action=list

Options Reference

create-agent.sh

OptionRequiredDescription
--idAgent ID (lowercase, no spaces)
--nameDisplay name
--emojiAgent emoji
--specialtyWhat the agent does
--modelModel (default: claude-sonnet-4-6)
--channelExisting Discord channel ID
--createCreate new channel with this name
--categoryCategory ID for new channel
--topicChannel topic (auto-generated if not set)
--cronDaily memory cron time (default: 23:00)
--no-cronSkip daily memory cron setup
--tzTimezone (default: America/New_York)
--own-categoryClaim a Discord category (auto-binds all channels)

Environment Variables

VariableRequiredDescription
DISCORD_GUILD_IDFor --createYour Discord server ID
AGENT_WORKSPACE_ROOTNoAgent workspace root (default: ~/workspace/agents)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.31%
按下载量换算184

Claude

28.66%
按下载量换算145

Cursor

18.63%
按下载量换算94

Gemini CLI

9.68%
按下载量换算49

安全审计

Gen Agent Trust Hub

可疑

Socket

未通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills