Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

rename-swarm重命名群

Agent Skill

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

总安装

848

周安装

35

GitHub Stars

81

下载量

277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dagster-io/erk --skill rename-swarm

简介

用于更改分布式系统中 Swarm 集群的名称标识。

  • 适合在多节点部署或容器编排环境中进行资源归类与管理。
  • 通过 GitHub 安装后,可在 Codex、Claude、Cursor、Gemini CLI 中调用集群管理接口。
  • 名称变更可能影响监控、日志聚合等服务发现机制。
  • 操作前应通知相关团队成员,确保配置同步更新。

SKILL.md

You are an expert at orchestrating parallel mechanical renames across large codebases using swarms of lightweight agents. This skill documents a proven pattern for completing bulk renames in a single batch rather than sequential file-by-file edits.

When to Use

  • Renaming an identifier, parameter, key, or variable across 5+ files
  • The renames are mechanical — same find-and-replace logic in each file, no reasoning required
  • Files are independent — editing file A doesn't affect what needs to change in file B
  • Examples: renaming issue_number to plan_number, renaming old_func to new_func, updating a key name across config consumers

When NOT to Use

  • Cross-file cascading refactors where renaming a shared type changes method signatures, requiring each file to adapt differently
  • Renames requiring judgment — e.g., "rename this concept" where each call site needs context-aware naming
  • Fewer than 5 files — sequential edits are simpler and have less overhead
  • Complex AST transforms — use libcst-refactor agent instead

The Pattern

Step 1: Identify All Files

Use Grep to find every file containing the target identifier:

Grep(pattern="old_name", output_mode="files_with_matches")

Partition files into two groups:

  • Source files (src/ or library code)
  • Test files (tests/)

Step 2: Launch Source File Agents in Parallel

Launch one Task agent per file (or per small group of 2-3 closely related files):

Task(
    subagent_type='general-purpose',
    model='haiku',
    description='Rename old_name in path/to/file.py',
    prompt="""..."""  # See agent prompt template below
)

Launch ALL source file agents in a single message so they run concurrently.

Step 3: Wait for Source Agents to Complete

Collect results from all source file agents. Review for errors.

Step 4: Launch Test File Agents in Parallel

Same pattern as Step 2, but for test files. This second wave runs after source files because tests import from source — if source renames fail, test renames would be wrong.

Step 5: Verify

After all agents complete:

  1. Grep check: Confirm old name no longer appears (except intentional exceptions)
  2. Run CI: Use devrun agent to run tests, type checking, and linting

Agent Prompt Template

Each agent receives a focused, self-contained prompt:

In the file `{file_path}`:

Rename all occurrences of `{old_name}` to `{new_name}`.

This includes:
- Variable names and assignments
- Function/method parameter names
- Dictionary keys (both definition and access)
- String literals that reference the identifier programmatically
- Type annotations
- Comments that reference the identifier by name

DO NOT rename:
- {boundary_constraints}

Read the file first, then apply all renames using the Edit tool.

Boundary Constraints

Boundary constraints are critical for partial renames. Always specify what should NOT be renamed. Examples:

  • "Do not rename occurrences inside string literals that are user-facing messages"
  • "Do not rename the GitHub API field 'issue_number' — only rename internal references"
  • "Do not rename imports from external packages"

If there are no exceptions, state: "No exceptions — rename ALL occurrences."

Batching Strategy

WaveFilesRationale
1Source files (src/)Core renames, no dependencies on other waves
2Test files (tests/)Tests import from source; must run after source renames land

Within each wave, all agents run in parallel. Between waves, wait for completion.

For very large renames (30+ files), consider sub-batching into groups of ~10-15 agents per message to avoid overwhelming the system.

Key Design Decisions

  • Model: haiku — mechanical edits need speed, not deep reasoning. Haiku is 10x cheaper and sufficient for find-and-replace tasks.
  • One agent per file — keeps prompts focused, avoids cross-file edit conflicts, makes failures isolated and retriable.
  • Two waves (source then test) — tests depend on source; parallel within each wave, sequential between waves.
  • Explicit boundary constraints — every agent prompt MUST specify what not to rename. Omitting this causes over-eager renames (e.g., renaming API field names that must stay as-is).

Example: Renaming issue_number to pr_number

  1. Grep found 16 source files and 12 test files containing issue_number
  2. Wave 1: Launched 16 haiku agents for source files — completed in ~25 seconds
  3. Wave 2: Launched 12 haiku agents for test files — completed in ~20 seconds
  4. Verification: Grep(pattern="issue_number") confirmed only intentional GitHub API references remained
  5. CI: All tests passed, type checker clean

Total wall time: ~60 seconds for 28 files, vs ~10+ minutes for sequential edits.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.07%
按下载量换算97

Claude

28.53%
按下载量换算79

Cursor

18.24%
按下载量换算51

Gemini CLI

8.98%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills