autosearch:channel-selection

Select 1-3 channel groups and 3-8 leaf channels for runtime routing.

40|6|Updated Mar 26, 2026
One-click install
npx skills add https://github.com/0xmariowu/Autosearch --skill autosearch-channel-selection
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: autosearch:channel-selection
Source: https://github.com/0xmariowu/Autosearch/tree/main/autosearch/skills/meta/channel-selection
Command: npx skills add https://github.com/0xmariowu/Autosearch --skill autosearch-channel-selection

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Group-first channel selection algorithm for v2 tool-supplier architecture. Given a research query + clarify rubrics + channel_priority hints, picks 1-3 relevant groups from the router index, then 3-8 leaf channels from within those groups. Replaces flat-rank selection across 41 channels with a two-stage pick so runtime AI never has to read all 41 SKILL.md bodies.

Core Features & Use Cases

  • Two-stage selection reduces the need to read all 41 channel SKILL.md bodies by first selecting 1-3 groups and then 3-8 leaf channels.
  • Integrates with autosearch router and 14 group index files to form a scalable routing strategy.
  • Outputs a ranked set of groups and leaves to drive subsequent run_channel invocations with predictable latency and cost.
  • Designed to be used after clarify and before run_channel to guide channel fan-out in complex queries.

Quick Start

Run the clarify step with a research query to prepare channel_priority hints, then execute the channel-selection step to pick groups and leaves before invoking run_channel.

Frequently Asked Questions about autosearch:channel-selection

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

FAQPage Schema
How does group-first channel selection optimize runtime routing latency?

Group-first channel selection optimizes runtime routing by using a two-stage pick to select 1-3 groups and 3-8 leaf channels, preventing the AI from reading all 41 SKILL.md bodies. This reduces latency and computational overhead.

How do I implement two-stage channel selection using a research query?

To implement two-stage channel selection, run the clarify step with a research query to prepare channel_priority hints, then execute the channel-selection step to pick groups and leaves before invoking run_channel.

What inputs are required for deterministic channel scoring in the v2 tool-supplier architecture?

Deterministic channel scoring in the v2 tool-supplier architecture requires a research query, clarify rubrics, and channel_priority hints. These inputs drive the selection of groups and leaves from the router index.

Why use a two-stage group-first routing strategy instead of flat-rank selection?

A two-stage group-first routing strategy replaces flat-rank selection across 41 channels to ensure scalable operation. It applies deterministic scoring, hard caps, and fallback rules to provide predictable latency and cost.

Are there fallback rules when channel selection fails to find valid leaf channels?

Yes, the channel selection mechanism includes fallback rules alongside deterministic scoring and hard caps. These rules ensure safe operation by maintaining scalable routing even when initial leaf channel choices are insufficient.