Source profileQuality 71/100

dyoshikawa/rulesync/.rulesync/skills/agent-team/SKILL.md

agent-team

Form an Agent Team of Implementer and Reviewer subagents to tackle the given task, looping implementation and review until the Reviewer reports zero high-or-above findings and no more than three mid findings.

Source repository stars
1,263
Declared platforms
0
Static risk flags
0
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

TASK = the user's request

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/dyoshikawa/rulesync --skill ".rulesync/skills/agent-team"
    Safe inspection promptEditorial

    Inspect the Agent Skill "agent-team" from https://github.com/dyoshikawa/rulesync/blob/310b711fbe8cffc14debb276ade8a384c2b89083/.rulesync/skills/agent-team/SKILL.md at commit 310b711fbe8cffc14debb276ade8a384c2b89083. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      1-1. Implementation Phase

      Delegate to the Implementer Agent via the Agent tool.

      subagenttype: general-purposeRole framing: "You are the Implementer Agent on an Agent Team."Inputs to pass:
    2. 02

      1-2. Review Phase

      Delegate to the Reviewer Agent via the Agent tool.

      subagenttype: code-reviewerRole framing: "You are the Reviewer Agent on an Agent Team."Inputs to pass:
    3. 03

      0. Exit Condition

      The loop exits when both of the following hold in a single review round:

      0 findings of severity high or critical.3 or fewer findings of severity mid.The loop exits when both of the following hold in a single review round:
    4. 04

      1. Iteration Loop

      Repeat the following steps until the exit condition is satisfied.

      subagenttype: general-purposeRole framing: "You are the Implementer Agent on an Agent Team."Inputs to pass:
    5. 05

      1-3. Evaluate the Exit Condition

      Parse the Reviewer's Severity Summary.

      If high + critical == 0 and mid <= 3: exit the loop.Otherwise: feed the findings into the next Implementation Phase andParse the Reviewer's Severity Summary.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score71/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars1,263SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    dyoshikawa/rulesync
    Skill path
    .rulesync/skills/agent-team/SKILL.md
    Commit
    310b711fbe8cffc14debb276ade8a384c2b89083
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Agent Team

    TASK = the user's request

    If TASK is not provided, ask the user for the task description and stop.

    Coordinate an Agent Team composed of an Implementer Agent and a Reviewer Agent. Iterate the implementation/review loop until the exit condition is satisfied.

    0. Exit Condition

    The loop exits when both of the following hold in a single review round:

    • 0 findings of severity high or critical.
    • 3 or fewer findings of severity mid.

    Findings of severity low do not affect the exit condition.

    Set a hard safety cap of 10 iterations. If the exit condition is still not met at the cap, stop the loop and report the remaining findings to the user for manual decision.

    1. Iteration Loop

    Repeat the following steps until the exit condition is satisfied.

    1-1. Implementation Phase

    Delegate to the Implementer Agent via the Agent tool.

    • subagent_type: general-purpose
    • Role framing: "You are the Implementer Agent on an Agent Team."
    • Inputs to pass:
      • The original TASK.
      • All Reviewer findings from the previous round (if any), grouped by severity.
    • Instructions to include in the prompt:
      • Implement the TASK end-to-end in the current repository.
      • Address every Reviewer finding from the previous round. For each finding, either fix it or, if you intentionally reject it, record the reason.
      • Edit files directly; do not only describe changes.
      • Run pnpm cicheck (or the narrower pnpm cicheck:code / cicheck:content when appropriate) and fix any failures before returning.
      • Report: a concise summary of the changes, the list of modified files, how each previous finding was handled, and the result of the checks.

    1-2. Review Phase

    Delegate to the Reviewer Agent via the Agent tool.

    • subagent_type: code-reviewer
    • Role framing: "You are the Reviewer Agent on an Agent Team."
    • Inputs to pass:
      • The original TASK.
      • The Implementer's summary and the list of modified files from this round.
    • Instructions to include in the prompt:
      • Review the changes for correctness, design quality, tests, and adherence to project conventions (see CLAUDE.md, docs/**/*.md, and .claude/rules/feature-change-guidelines.md).
      • Also consider security concerns.
      • Produce a findings list. For each finding, include:
        • Sequential number (e.g., #1, #2).
        • Severity: low / mid / high / critical.
        • File path and line number(s).
        • Problem description and recommended fix.
      • At the end of the report, include a Severity Summary with the counts per severity level so the exit condition can be evaluated mechanically.

    1-3. Evaluate the Exit Condition

    Parse the Reviewer's Severity Summary.

    • If high + critical == 0 and mid <= 3: exit the loop.
    • Otherwise: feed the findings into the next Implementation Phase and continue.

    Between iterations, emit a short status line to the user such as Iteration N complete — high/critical: X, mid: Y, low: Z.

    2. Final Report

    After the loop exits, report the following to the user:

    • Outcome: Converged (exit condition met) or Capped (hit iteration cap).
    • Iterations: how many rounds were executed.
    • Remaining findings: the final Severity Summary, plus the full list of remaining mid and low findings (and any high/critical findings that remain when the loop was capped).
    • Changes: a brief summary of what was implemented and which files were modified.
    • Next steps: suggestions for the user (e.g., create a commit / PR via the commit-push-pr skill).

    Do not auto-commit or open a PR from this skill; leave that to the user.

    Alternatives

    Compare before choosing

    Computed 10042,015

    coreyhaines31/marketingskills

    ab-testing

    When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

    Computed 10042,015

    coreyhaines31/marketingskills

    churn-prevention

    When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o

    Computed 997

    event4u-app/agent-config

    design-review

    Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.

    Computed 9831,966

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.