Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

swarm-coding-skill群体编码技能

Agent Skill

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

总安装

23,238

周安装

988

GitHub Stars

3

下载量

8,141
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:swarm-coding-skill(群体编码技能)
来源仓库:https://github.com/arunnadarasa/swarm-coding-skill
安装命令:
openclaw skills install swarm-coding-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install swarm-coding-skill

简介

swarm-coding-skill 协调多代理角色自主完成软件项目规划到交付全流程。

  • 涵盖需求分析、编码、测试与部署,减少人工干预环节。
  • 适用于复杂系统开发或敏捷冲刺中的并行任务分配场景。
  • 安装前请确认是否允许执行代码仓库克隆与 CI/CD 流水线触发。
  • 输出结果需人工监督关键环节,防止自动化偏差导致逻辑错误。

SKILL.md

name
swarm-coding-skill
description
Autonomous multi-agent code generation. Planner creates manifest, specialized roles execute tasks. Generates complete projects with tests, Docker, CI, and decision logs.
requiredEnv
optionalEnv
warnings
autonomy
orchestrator-driven-code-generation
outputPaths
externalServices
purpose
LLM inference for planning and code generation
scope
API key sent with requests
capabilities

Swarm Coding Skill

Fully autonomous multi-agent software development. Given a plain-English prompt, the swarm designs, implements, tests, and delivers a complete project end-to-end.

Core capability: Code generation via OpenRouter's qwen3-coder model. The orchestrator drives a Planner to create a manifest, then executes specialized worker roles (BackendDev, FrontendDev, QA, DevOps, etc.) in dependency order. All code is written to files; no interactive sessions.

Important: This skill generates code for review and deployment by the user. It does not make business decisions or operate autonomously in production. The user remains responsible for security, compliance, and operational decisions.

How It Works

  1. Orchestrator (Planner role) analyzes your prompt, decides tech stack and architecture, and creates a swarm.yaml manifest with tasks and dependencies.
  2. Worker agents (BackendDev, FrontendDev, QA, DevOps) are spawned as sub-sessions. Each has a clear persona and works on its assigned files in a shared workspace.
  3. Coordination: The orchestrator tracks task completion and dependencies. When a task finishes, it marks it done and starts any unblocked downstream tasks.
  4. Conflict avoidance: Files are partitioned by role (Backend owns server/, Frontend owns client/, etc.). If two roles need the same file, the manifest assigns an owner.
  5. Quality gates: QA must pass tests before integration; DevOps ensures containerization; no merge without green tests.
  6. Deliverable: You get a complete project directory with README, tests, Dockerfile, and optionally a GitHub repo or zip.

Usage

# In your main OpenClaw session, invoke:
/trigger swarm-code "Build a dashboard that shows Moltbook stats and ClawCredit status"

The skill will:

  • Spawn the orchestrator in an isolated session
  • Orchestrator spawns workers sequentially or in parallel (based on dependencies)
  • Output a final summary and path to the completed project

Requirements

  • Node.js v18+
  • Environment variables (in .env at workspace root):

- Required: OPENROUTER_API_KEY — OpenRouter API key with qwen/qwen3-coder access - Optional: OPENROUTER_MODEL (default: qwen/qwen3-coder), MOCK=1 for dry-run

  • Internet access for OpenRouter API (and optionally GitHub/Docker if deployment requested)

Important: The orchestrator reads .env from the workspace root (parent directory of this skill) and writes project files to swarm-projects/ and logs to .learnings/ in that same workspace root. Run in an isolated workspace to avoid exposing unrelated secrets.

Configuration

Store your OpenRouter key in .env at the workspace root:

OPENROUTER_API_KEY=sk-or-...

Optional overrides:

OPENROUTER_MODEL=qwen/qwen3-coder
MOCK=1  # dry-run, no API calls

The skill uses qwen/qwen3-coder by default. Ensure your OpenRouter key has that model enabled.

Output

The created project lives in swarm-projects/<timestamp>/ and includes:

  • README.md with run instructions
  • package.json (or equivalent)
  • Source code organized by component
  • test/ directory with automated tests
  • Dockerfile and docker-compose.yml (if applicable)
  • CI/ with GitHub Actions workflow (optional)
  • DECISIONS.md — Project memory documenting key architectural and technical decisions with rationale
  • .learnings/ — Learning logs capturing errors, insights, and feature requests

- ERRORS.md — Failures, exceptions, and recovery actions - LEARNINGS.md — Corrections, better approaches, knowledge gaps - FEATURE_REQUESTS.md — Requested capabilities that don't exist yet

  • SWARM_SUMMARY.md — Execution summary with role performance, statistics, and next steps

Continuous Improvement

The swarm skill automatically captures learnings during execution to improve future runs:

What Gets Logged

  • Worker failures.learnings/ERRORS.md with context and recovery suggestions
  • Better approaches discovered.learnings/LEARNINGS.md (e.g., "Simplified X by using Y")
  • User corrections.learnings/LEARNINGS.md when you override a decision
  • Missing capabilities.learnings/FEATURE_REQUESTS.md when you ask for something the skill can't do

After Each Run

A SWARM_SUMMARY.md is generated with:

  • Role success/failure rates
  • Total files generated
  • References to learnings captured
  • Recommendations for next steps

Promoting Learnings

Over time, review .learnings/ files:

  • Recurring error patterns → update orchestrator prompts or add retry logic
  • Better approaches → incorporate into the skill's default behavior
  • Feature requests → consider for skill enhancements

This creates a feedback loop where each swarm run makes the skill smarter.

Example Prompts

  • "Build a Node.js API with Express that serves Moltbook stats from JSON logs"
  • "Create a React dashboard with dark theme and charts for ClawCredit status"
  • "Make a CLI tool that checks ClawCredit pre-qualification and notifies via desktop alert"
  • "Generate a smart contract that holds ClawCredit limits and allows x402 payments"
  • "Build a hackathon app: a React dashboard that shows user's token balance using Privy auth" (includes Privy integration out of the box)

Notes

  • The skill makes all decisions autonomously: tech stack, file structure, library choices.
  • If a task fails, the orchestrator will retry once with adjusted instructions.
  • You can monitor progress via the sub-agent logs in .openclaw/agents/<agent-id>/sessions/.
  • To stop early, send /stop to the orchestrator's session.
  • Privy Integration: When the prompt mentions blockchain, web3, tokens, NFTs, or Privy, the skill automatically includes Privy authentication and wallet infrastructure. Backend includes /auth/callback with JWKS verification and a simulated fallback; frontend integrates @privy-io/react-auth if React is used. For advanced agentic wallet controls, see the Privy Agentic Wallets skill.
  • Project Memory: Each swarm run creates a DECISIONS.md file that documents significant decisions made by the planner and each agent. This serves as long-term knowledge grounding—future developers (or the same human weeks later) can understand why certain choices were made. Agents are prompted to explain their technical decisions (e.g., library selection, architecture patterns, security tradeoffs) as part of their output.

Enjoy your autonomous coding factory 🚀

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

OpenClaw

72.75%
按下载量换算5,923

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills