Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

agent-fungibilityAgent 的可替代性

Agent Skill

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

总安装

1,063

周安装

43

GitHub Stars

63

下载量

334
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill agent-fungibility

简介

探讨代理可替代性和集群协调机制的设计原则。agent-fungibility 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于构建高可用、可扩展的多代理系统架构。
  • 支持 Codex、Claude、Cursor 等主流宿主环境。
  • 通过 GitHub 安装,需注意权限和网络访问控制。
  • 建议根据实际部署场景调整角色分配和故障处理策略。

SKILL.md

Agent Fungibility — The Key to Scalable Agent Swarms

Core Principle: "Fungibility bestows a LOT of really good properties automatically in a computer system." YOU are the bottleneck. Be the clockwork deity to your agent swarms: design a beautiful and intricate machine, set it running, and then move on to the next project.

The Debate: Specialized vs. Fungible Agents

A burgeoning debate has sprung up around the optimal way to scale up the number of agents working on a software project:

ApproachDescription
Specialized RolesAssign distinct roles (tester agent, backend agent, committer agent, etc.)
Fungible AgentsAll agents are identical and can do any task

The answer for software development: Fungible agents win.


Why Fungibility Works

The Problem with Specialized Agents

Rather than setting up a complex heterogeneous system where you have assigned roles to specific tasks for agents, which is brittle and creates problems when one of the agents crashes or loses its memory or otherwise suffers from context rot and needs to be euthanized, you have to deal with:

  1. Understanding what kind of agent just died
  2. What was it doing when it died
  3. How to replace it functionally with the relevant context
  4. What happens to the other agents that were depending on that specialized agent?

The Fungibility Solution

You're better off just having a bunch of fungible agents that are all simply executing beads of any kind.

They can be any kind of agent:

  • Claude Code
  • Codex
  • Gemini CLI
  • Amp
  • Cursor
  • etc.

But they're fungible in that they can all wear any hat and adaptively assume any role depending on the bead task they're working on.


The Two Big Unlocks

1. Use BV to Choose Optimal Next Bead

Each agent uses bv --robot-triage or bv --robot-next to find the highest-impact ready bead. No central assignment needed.

2. Put Everything in the Plan → Beads

If you put everything you want to have happening in your original markdown plan that you turn into beads, you get everything else "for free" and it's robust to bad things happening to any agents.


Robustness Properties

Agents fail. They:

  • Crash
  • You accidentally close the tab
  • Context rot (lose track of what they're doing)
  • Get stuck in loops
  • Need to be "euthanized" and restarted

With fungible agents, you never have to worry about that stuff.

When an agent dies:

  1. The bead it was working on remains marked in-progress
  2. Any other agent can pick it up
  3. No special replacement logic needed
  4. No dependency on that specific agent

Scaling Properties

When you want to move faster:

  • Simply spin up more agents at any time
  • Don't need to think about whether there's an imbalance between the counts of each agent role
  • 3 agents → 10 agents → 20 agents: just add more, they all do the same thing

Agent fungibility lets you go much faster and scales better, especially as:

  • Projects get larger and more complex
  • Agent counts increase past 10 working on the same project at the same time

The Analogy: Fountain Codes

This is why I'm a huge fan of things like fountain codes (like RaptorQ) for file storage:

Turn a file into an endless stream of fungible blobs with very little overhead and the user can catch any blob in any order and each new blob helps them reconstruct the file; there's no "rarest chunk" like with BitTorrent.

In software development:

  • Each bead is a "blob"
  • Any agent can work on any bead
  • There's no "critical specialist" that becomes a bottleneck
  • The system is resilient to partial failures

When Specialized Roles DO Make Sense

There are contexts where designated roles for agents work better. Example: Automated scientific inquiry (like BrennerBot).

Why it works there:

  • The discourse itself (the back and forth between different agent types) is the core mechanism of surfacing truth
  • The debate structure IS the point

Why it doesn't work for software:

  • In software development, we just want good code that works
  • The goal is output, not discourse
  • Fungibility removes bottlenecks and single points of failure

The Clockwork Deity Philosophy

Most of my agent tooling and workflows are about removing me from the equation, because there's only one of me, but a potentially unlimited number of agents.

The way to do this:

  1. Front-load all input in planning phases — Use GPT Pro with Extended Reasoning, multiple iterations, blend feedback from all frontier models
  2. Offload task structuring — Convert plans to beads with full dependency graphs
  3. Allow direct communication — Agent Mail lets agents coordinate without you
  4. Set it running and move on — By the time you come back, huge chunks of work are done

Why This Works

It all ultimately works because:

  • The best models (GPT Pro) are used to their fullest
  • Many iterations with blending feedback from all frontier models
  • The very best model as the final arbiter
  • In "plan space" it all fits easily in context windows
  • Models can see the entire system at once instead of through a pinhole

Practical Implementation

Starting a Fungible Swarm

# Spawn agents (any mix of types)
ntm spawn myproject --cc=3 --cod=2 --gmi=1

# Give them all the SAME initial prompt
ntm send myproject --all "$(cat initial_prompt.txt)"

The Initial Prompt (Same for All)

First read ALL of the AGENTS dot md file and README dot md file super carefully and understand ALL of both! Then use your code investigation agent mode to fully understand the code, and technical architecture and purpose of the project. Then register with MCP Agent Mail and introduce yourself to the other agents.

Be sure to check your agent mail and to promptly respond if needed to any messages; then proceed meticulously with your next assigned beads, working on the tasks systematically and meticulously and tracking your progress via beads and agent mail messages.

Don't get stuck in "communication purgatory" where nothing is getting done; be proactive about starting tasks that need to be done, but inform your fellow agents via messages when you do so and mark beads appropriately.

When you're not sure what to do next, use the bv tool mentioned in AGENTS dot md to prioritize the best beads to work on next; pick the next one that you can usefully work on and get started. Make sure to acknowledge all communication requests from other agents and that you are aware of all active agents and their names.  Use ultrathink.

When an Agent Fails

  1. Don't panic
  2. Start a new session in its place
  3. Give it the same initial prompt
  4. It will:

- Read AGENTS.md - Check bead status via bv - See what's in-progress/stuck - Either resume or pick a new bead

No special logic. No role assignment. Just fungibility.


Summary

PropertySpecialized AgentsFungible Agents
Failure handlingComplexSimple
ScalingRequires role balancingJust add more
ReplacementNeed matching specialistAny agent works
Single point of failureYes (each role)No
Coordination overheadHighLow (via beads + mail)
Human involvementOngoingFront-loaded in planning

The bottom line: Agent fungibility lets you build the machine once, set it running, and move on. The swarm handles the rest.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.22%
按下载量换算91

Gemini CLI

24.04%
按下载量换算80

OpenCode

16.44%
按下载量换算55

Antigravity

11.14%
按下载量换算37

Codex

7.49%
按下载量换算25

windsurf

3.76%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills