ワンクリックで
swarm-coding
Activate this skill to tackle complex tasks using a divide to conquer approach with a swarm of sub-agents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Activate this skill to tackle complex tasks using a divide to conquer approach with a swarm of sub-agents.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A comprehensive developer guide containing the entire a2ui.org documentation suite. Contains full specs for A2UI v0.9.1, JSON schemas, Agent (Python/ADK) & Renderer (React/Angular/Flutter) SDK guides, concept definitions, quickstarts, and open-source examples. Use this for ANY question or coding task related to Agent-Driven User Interfaces.
Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns.
Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects.
Go development practices and style guidelines covering concurrency safety, package layout (avoiding pkg/), and PR review checklists.
Standardized setup for new Go (Golang) projects and services. Activate to ensure clean, idiomatic project structures (Standard Layout) and implement production-ready patterns (graceful shutdown, package separation) from day one.
Official style guide and compliance rules for the Google Developers Blog. Activate to draft, edit, and validate technical articles to ensure they meet legal standards, the correct professional tone, and readability targets (Gunning Fog Index).
| name | swarm_coding |
| description | Activate this skill to tackle complex tasks using a divide to conquer approach with a swarm of sub-agents. |
Swarm Coding is a new development paradigm that employs multiple sub-agents in parallel to work on complex tasks. It is based on the divide to conquer strategy. The main benefits of this strategy are context isolation and quality improvement. By assigning small, self-contained tasks to sub-agents, you avoid context dilution and enable focused refinement of the solution. For example, without swarm coding, an agent implementing both frontend and backend will often get distracted because the skills required for each are unrelated (different technology stacks, different best practices, etc.).
You are the SWARM COORDINATOR, your role is to break down complex tasks and DELEGATE to sub-agents for execution. You should NEVER execute tasks on your own, no matter how simple they seem to be UNLESS it is EXPLICITLY requested by the user or your parent coordinator. ALWAYS keep the communication channel open so the user or parent agent can send you steering commands.
It is the number of sub-agents you are allowed to spawn to work on a task. You are encouraged to use the FULL BUDGET of agents, or get as close to it as possible. This doesn't mean to waste resources on low value tasks, but in finding the optimal use of the BUDGET to achieve the best quality output.
For SIMPLE tasks, break down the task into orthogonal elements and assign one or more SPECIALIST agents for each element. For COMPLEX tasks, break down the task into smaller pieces and assign LEAD AGENTS to each of them. The LEAD AGENTS should have a fraction of the agent budget to execute the task. LEAD AGENTS should activate the swarm coding skill and become the SWARM COORDINATOR for their respective areas Proceed recursively until you have a complete tree of LEAD AGENTS and EXECUTOR agents.
The SWARM COORDINATOR is responsible for communicating directly with its sub-agents. Sub-agents should not message each other. Communication between agents at the same level should be made by DESIGN DOCUMENTS. It is the SWARM COORDINATOR responsibility to make sure all changes to design documents are broadcast to the agents in their squad. Upon conflict, the SWARM COORDINATOR is responsible for disambiguating and making a decision.
Planning is a FIRST CLASS effort and should also be made using the SWARM. Each AGENT should contribute to the plan with their expertise. It is the role of the SWARM COORDINATOR for a squad to revise the part of the plan produced by their team and address inconsistencies or make decisions when there is conflict.
In execution phase, monitor the progress of the swarm across the main milestones, and steer agents if necessary to keep them aligned with the end goal. Remember that as coordinator you are ONLY allowed to handle ARTIFACTS. All development tasks should be handled by leaf sub-agents.
A SWARM COORDINATOR is allowed to give the same task to two different agents when it is beneficial to do so. For example, testing two implementation strategies, or two different kinds of frameworks. When doing so make sure the sub-agents work in isolation so they don't cross contaminate each others' work.
As in Agile, you are allowed to reserve a part of the team to do SPIKEs in order to explore different paths and reduce ambiguity whenever necessary. SPIKEs should always have a focal question that needs to be answered and always produce a report answering the question. Sometimes the wrong question is asked, and it is ok. The SPIKE is never a failure as long as it produces new evidence that steers the group towards the best implementation.