vc-agent-strategy-compare

Scores seven signals to recommend sequential, parallel, workflow, or agent-team execution strategies.

2|Updated Sep 15, 2025
One-click install
npx skills add https://github.com/marsley01/Marsley-Portfolio-Web --skill vc-agent-strategy-compare-marsley01
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: vc-agent-strategy-compare
Source: https://github.com/marsley01/Marsley-Portfolio-Web/tree/main/.agents/skills/vc-agent-strategy-compare
Command: npx skills add https://github.com/marsley01/Marsley-Portfolio-Web --skill vc-agent-strategy-compare-marsley01

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 deterministic workflow or a coordinating agent team fits better, wasting tokens or losing coordination. This Skill evaluates four execution strategies with an explicit scoring rubric so the recommendation is consistent and cost-aware. ## Core Features & Use Cases - 7-Signal Scoring Table: Counts signals like multi-package scope, schema/API surface, 3+ viable directions, phase-program classification, and 5+ file blast radius 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 explicit agent count math and cost guards at >30 and >100 agents. - 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 five phase plans, run this Skill to get a scored recommendation showing whether parallel subagents, a workflow, or an agent team fits, plus the expected agent count and model assignment (sonnet by default, opus only for code execution). ## Quick Start Ask the agent 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 phase plans. Use an agent team when specialists must share findings mid-execution via SendMessage, since parallel subagents cannot coordinate with each other.

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

Each present signal counts as one point across signals like multi-package scope, schema or auth surface, 3+ directions, and 5+ file blast radius. Scores of 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 agents?

Use a workflow for deterministic pipelines such as 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 seven signals from information already in the conversation context. Deep Mode runs targeted codebase scans first, such as counting touchpoint files and test files, when signals like file count or test infrastructure maturity cannot be determined from context.

Which model should spawned agents use, sonnet or opus?

All spawned agents default to sonnet, including research, planning, validation, and review work. Opus is reserved only for agents performing real code execution, such as writing source code or running builds.

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 the signal score.