vc-agent-strategy-compare

Evaluates four agent execution strategies and recommends one using a 7-signal scoring table.

Updated Apr 9, 2026
One-click install
npx skills add https://github.com/HyuseCS/project-c --skill vc-agent-strategy-compare-hyusecs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vc-agent-strategy-compare
Source: https://github.com/HyuseCS/project-c/tree/main/.claude/skills/vc-agent-strategy-compare
Command: npx skills add https://github.com/HyuseCS/project-c --skill vc-agent-strategy-compare-hyusecs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Choosing how to orchestrate multiple AI agents for a phase or fan-out task is error-prone: teams default to parallel subagents even when a sequential run, deterministic workflow, or coordinating agent team fits better, wasting tokens or losing coordination. This Skill scores the task against 7 signals and outputs a ranked strategy recommendation with explicit agent-count math and cost guards. ## Core Features & Use Cases - 7-Signal Scoring: Scores multi-package scope, schema/API surface, viable directions, phase-program classification, user depth requests, high-risk classes, and blast-radius file count to produce a 0-7 score mapped to a strategy threshold. - Four Strategy Comparison: Always evaluates sequential, parallel subagents, dynamic workflow, and agent team side-by-side with agent count math, cost guards (>30 and >100 agents), and best-fit criteria. - Simple and Deep Modes: Scores from existing conversation context by default, or runs targeted codebase scans (touchpoint files, test infrastructure, phase dependencies) before scoring when signals are ambiguous. - Use Case: Before spawning agents to validate 5 phase plans in a RIPER-5 workflow, run this Skill to get a scored recommendation showing whether parallel subagents or an agent team is correct, plus the expected agent count. ## Quick Start Ask the assistant to run vc-agent-strategy-compare on your current phase or fan-out task, for example: compare execution strategies for validating these five phase plans.

Frequently Asked Questions about vc-agent-strategy-compare

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

FAQPage Schema
How do I choose between parallel subagents and an agent team?

Use parallel subagents when agents work independently with no mid-task communication, such as validating separate finished plans. Use an agent team when 2+ specialists must share findings mid-execution, since only team members can coordinate via SendMessage and a shared TaskList.

How does the 7-signal scoring table select a strategy?

Each present signal (multi-package scope, schema/API surface, 3+ directions, phase program, user depth request, high-risk class, 5+ files) adds one point. Scores 0-1 map to sequential, 2-3 to parallel subagents, and 4+ to workflow or agent team.

When should I use a workflow instead of parallel subagents?

Use a workflow for deterministic pipelines like full RIPER-5 automation, TDD loops, or when the item count is unknown upfront. Workflows support pipeline and parallel steps with up to 1000 agents and 16 concurrent, at roughly the same token cost as sequential.

What is the difference between Simple Mode and Deep Mode?

Simple Mode scores the 7 signals from information already in the conversation context. Deep Mode runs targeted codebase scans first, such as counting touchpoint files and checking test infrastructure, when signals cannot be determined from context alone.

When is sequential execution the right strategy?

Sequential is correct for trivial or single-file changes and for phase programs where each phase clearly depends on the previous one. The auto-skip rule forces sequential for trivial changes regardless of score.

What are the cost guard thresholds for spawning agents?

When total agent count exceeds 30, the skill shows a full breakdown of strategy and count math before proceeding. Above 100 agents, or above 6 team members, it requires explicit user confirmation before spawning.