One-click install
npx skills add https://github.com/cheafi/Trading-bot-CC --skill team-cheafi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team
Source: https://github.com/cheafi/Trading-bot-CC/tree/main/.github/skills/team
Command: npx skills add https://github.com/cheafi/Trading-bot-CC --skill team-cheafi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves the coordination overhead of breaking a large work item into parallel subtasks and reliably driving them to completion.

Core Features & Use Cases

  • Staged multi-agent pipeline: Runs a plan→product spec→execution→verification→fix loop, with a clear handoff between stages.
  • Parallel decomposition with dependencies: Decomposes a task into a subtask graph and dispatches N worker agents that can operate in parallel.
  • Team + verification recovery: Detects verification failures and generates targeted fixes, iterating until gates pass or max attempts are exceeded.
  • Use Case: Refactor or migrate a medium-to-large codebase module (e.g., auth + API changes) where multiple files and concurrent workstreams are required.

Quick Start

Invoke the team pipeline by asking: /team 4 executor "refactor the authentication module and update all affected REST endpoints, including tests".

Frequently Asked Questions about team

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multiple agents for parallel code refactoring?

Multi-agent coordination for parallel code refactoring is achieved by decomposing a shared task list into a dependency-aware subtask graph and dispatching worker agents to execute it.

How does task decomposition work for multi-file software migrations?

Task decomposition for multi-file software migrations works by breaking a large work item into a subtask graph, routing staged agents from planning to verification, and applying iterative fixes.

What is the best way to automate verification and fixes for multi-service development?

Automating verification and fixes for multi-service development is best handled by a pipeline that detects verification failures, generates targeted fixes, and iterates until validation gates pass.

Can I run a team pipeline for concurrent workstreams across an auth module and REST endpoints?

Yes, you can run a team pipeline for concurrent workstreams by invoking the executor to refactor an auth module and update affected REST endpoints, including tests, in parallel.

When should I avoid using a staged multi-agent pipeline for software engineering tasks?

You should avoid using a staged multi-agent pipeline for software engineering tasks that are not parallelizable, lack multi-file scope, or require no staged planning and iterative fixing.

What happens if verification fails during agent routing for a complex codebase migration?

If verification fails during agent routing for a complex codebase migration, the pipeline generates targeted fixes and iterates through a verify/fix loop until gates pass or max attempts are exceeded.