multi-candidate-search-module

Execute multi-candidate search with budgeted diversification, pruning, and evidence-based selection.

43|2|Updated Mar 26, 2026
One-click install
npx skills add https://github.com/curated-skills/LinguaClaw --skill multi-candidate-search-module
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: multi-candidate-search-module
Source: https://github.com/curated-skills/LinguaClaw/tree/main/harnesses/modules/multi-candidate-search
Command: npx skills add https://github.com/curated-skills/LinguaClaw --skill multi-candidate-search-module

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps when a single model attempt is too fragile by making the search process explicit: it explores multiple candidates, prunes weak branches, and selects the best remaining option.

Core Features & Use Cases

  • Explicit candidate budgeting: Allocates a meaningful default budget (K=5) or respects a user-specified limit, and treats branch failures as missing-budget events rather than normal pruning.
  • Diversified candidate generation: Encourages variation across hypothesis, decomposition, evidence routes, tool usage plans, or risk preferences to avoid near-duplicates.
  • Lightweight pruning and evidence-based selection: Removes duplicates, inconsistencies, unsupported candidates, and dominated options; selects using task-fit and evidence quality with pairwise comparison when scoring is noisy.
  • Failure-aware escalation: Avoids forcing a bad winner when quality is insufficient, instead expanding budget, changing diversification axes, or triggering a new round with refined guidance.

Quick Start

Use the multi-candidate-search-module when you need to reliably solve a high-stakes or ambiguous task where a single-shot answer is likely to be brittle.

Frequently Asked Questions about multi-candidate-search-module

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

FAQPage Schema
How do I improve robust reasoning when a single model attempt is too fragile?

Multi-candidate search handles ambiguous or high-stakes tasks by generating diversified candidates across different hypotheses, pruning duplicates and inconsistencies, and selecting the best fit using evidence quality.

How does pruning work in a multi-candidate search workflow?

Pruning removes duplicates, inconsistencies, unsupported candidates, and dominated options from the search branches, ensuring only the most robust solutions remain for evidence-based selection.

What happens if all candidates fail during multi-candidate search?

Branch failures are treated as missing-budget events triggering failure-aware escalation, which expands the budget, changes diversification axes, or starts a new round with refined guidance instead of forcing a bad winner.

Can I set a custom limit for candidate generation instead of using the default?

Yes, explicit candidate budgeting respects a user-specified limit while allocating a meaningful default budget of K=5, ensuring the multi-candidate search explores enough branches without exceeding constraints.

When should I use multi-candidate search over single-shot generation?

Use multi-candidate search for decomposition-heavy workflows and scenarios where local optima or plausible-but-wrong hypotheses are common, ensuring high-stakes or ambiguous tasks yield reliable solutions.