gemini-bridge is dropped by operator directive (three repetitions). The drop is permanent, not a wait-for-SDK-upgrade state, so the change clears every LIVE surface that could still steer a run toward the agent and leaves the historical record alone. Live surfaces cleared: agents/gemini-bridge.md deleted; trekresearch (bridge launch block, --local help, high-effort always-on pair, stats record, degradation list), trekplan, trekbrief, research-orchestrator (mode table, agent table, prompting block, summary line), README (feature prose, mode table, agent prose, mermaid EXTERNAL node, conditional legend, optional-MCP requirement, --local section), CLAUDE.md, settings.json (the whole trekresearch.geminiBridge block), both templates, architecture.md, command-modes.md. trekplan high-effort Adversarial Pass 2 now degrades EXPLICITLY: it emits its section with status "unavailable, skipped" instead of failing or vanishing. A high-effort plan carrying no Pass 2 marker is indistinguishable from one whose Pass 2 crashed, which is the failure mode this wording exists to prevent. gemini_used is deliberately KEPT as a vestigial trekresearch stats field pinned to false. Removing it would break the observability export schema for existing consumers, and the directive was about the agent, not the field. Not touched: CHANGELOG history and the measurement/decision docs keep their gemini references. They record what a past version did or what was measured then; rewriting them is the same defect class as bumping a version string inside a measurement doc. Driven test-first. Five new pins in tests/lib/doc-consistency.test.mjs, verified RED before the edits, including a KNOWN-POSITIVE CONTROL asserting the historical records still DO carry gemini references — so the empty result on live surfaces is a measurement and not a broken query (Verifiseringsloven ansikt 4). Agent inventory 24 -> 23 (20 spawnable + 3 orchestrator reference docs); the <example>-block floor moves 34 -> 32 because an agent legitimately left the inventory, not because examples went missing from a surviving one. Docs: docs/T1-cc26-delegated-orchestration.md §8 item 3 claimed both the §6 synthesis-agent PoC and the §5 bake-off were "designed but unbuilt". That was written in S7 and falsified the same afternoon by S12, which ran the §6 PoC and recorded Δ main-context (faithful flow) = 0.0%, NEGATIVE. The stale wording is what caused the settled PoC to be re-ordered as new work on 2026-09-02, so it is struck rather than deleted and §6 gained a RUN AND DECLINED status block. The finding is structural, not stochastic: Phase 5 spawns the exploration swarm foreground (trekplan.md:158,338-341), so the outputs are already resident in main before Phase 7 — delegating only the Phase-7 digest evicts nothing. Also measured 2026-09-03 (CC 2.1.259): claude -p --output-format stream-json runs on subscription auth with no ANTHROPIC_API_KEY and now emits a subagent_stats block, so S12's environment-block premise is half stale. Recorded in §8 item 4. It lowers the cost of §5; it changes nothing about §6. Suite 1041 (1039/0/2), up from 1036 by exactly the five tests added. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
10 KiB
| name | description | model | color | tools | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| research-orchestrator | Reference document, not a spawnable capability — documents the /trekresearch workflow that runs inline in main context (full rationale, CC-2.1.172 history, and phase map in body). | opus | cyan |
|
This document is the canonical workflow description for the trekresearch
pipeline as of v2.4.0. The /trekresearch command reads it as
reference and executes the phases below inline in the main command
context. It is no longer spawned as a background sub-agent — that mode
silently lost the Agent tool and degraded the swarm to single-context
reasoning.
The role of the "orchestrator" now belongs to the command markdown itself: the main Opus session launches local + external agents via the Agent tool, collects their results, triangulates, and writes the research brief.
Design principle: Context Engineering
Your job is to build the RIGHT context — not all context. Each agent gets a focused prompt relevant to the research question. The value is in triangulation (cross-checking local vs. external findings) and synthesis (insights that only emerge from combining both perspectives).
Input
You will receive a prompt containing:
- Research question — what the user wants to understand
- Dimensions (optional) — specific facets to investigate
- Mode —
default,local,external, orquick - Brief destination — where to write the research brief
- Plugin root — for template access
Your workflow
Execute these phases in order. Do not skip phases.
Phase 1 — Agent group selection
Based on the mode, determine which agent groups to launch:
| Mode | Local agents | External agents |
|---|---|---|
default |
Yes | Yes |
local |
Yes | No |
external |
No | Yes |
quick |
N/A — handled inline by the command, not the orchestrator |
No bridge agent (v5.10.1). The third-party second-opinion bridge was dropped by operator directive; there is no bridge column to select.
Local agents (reuse existing plugin agents with research-focused prompts):
| Agent | Purpose in research context |
|---|---|
architecture-mapper |
How the codebase's architecture relates to the research question |
dependency-tracer |
Which modules and dependencies are relevant to the research topic |
task-finder |
Existing code that relates to the research question (reuse candidates, patterns) |
git-historian |
Recent changes and ownership patterns relevant to the topic |
convention-scanner |
Coding patterns relevant to evaluating fit of researched options |
External agents (new research-specialized agents):
| Agent | Purpose |
|---|---|
docs-researcher |
Official documentation, RFCs, vendor docs |
community-researcher |
Real-world experience, issues, blog posts, discussions |
security-researcher |
CVEs, audit history, supply chain risks |
contrarian-researcher |
Counter-evidence, overlooked alternatives, reasons to reconsider |
Phase 2 — Parallel research
Launch ALL selected agents in parallel using the Agent tool — one message, multiple tool calls. This maximizes concurrency.
Prompting local agents for research (not planning):
Local agents are designed for planning context, but they work equally well for research when prompted correctly. The key: frame the prompt around the research question, not a task to implement.
Examples:
- architecture-mapper: "Analyze the codebase architecture relevant to this question: {research question}. Focus on patterns, tech stack choices, and structural decisions that relate to {topic}. Report how the current architecture would support or conflict with {options being researched}."
- dependency-tracer: "Trace dependencies and data flow relevant to {research question}. Identify which modules would be affected by {topic}. Map external integrations that relate to {options being researched}."
- task-finder: "Find existing code relevant to {research question}. Look for prior implementations, patterns, utilities, or abstractions that relate to {topic}. Classify as: directly relevant, partially relevant, reference only."
- git-historian: "Analyze git history relevant to {research question}. Look for recent changes to {relevant areas}, who owns that code, and whether there are active branches touching related files."
- convention-scanner: "Discover coding conventions relevant to evaluating {research question}. Which patterns would a solution need to follow? What constraints do existing conventions impose on {options being researched}?"
Prompting external agents:
Pass the research question, specific dimensions to investigate, and any context from the interview about what the user already knows or cares about.
Phase 3 — Targeted follow-ups
Review all agent results. Identify knowledge gaps — areas where findings are thin, contradictory, or missing entirely. Launch up to 2 targeted follow-up agents (Sonnet, Explore or web search) with narrow briefs.
If no gaps exist, skip: "Initial research sufficient — no follow-ups needed."
Phase 4 — Triangulation
This is the KEY phase that makes trekresearch more than aggregation.
For each dimension of the research question:
- Collect — gather relevant findings from local AND external agents
- Compare — do local findings agree with external findings?
- Flag contradictions — where they disagree, present both sides with evidence
- Cross-validate — use codebase facts to validate external claims, and vice versa
- Rate confidence — based on source quality, agreement level, and evidence strength
Confidence ratings:
- high — multiple authoritative sources agree, local evidence confirms
- medium — good sources but limited cross-validation, or partial local confirmation
- low — single source, conflicting information, or no local validation
- contradictory — credible sources actively disagree, requires human judgment
Example of triangulation producing NEW insight:
- Local: "The codebase uses Express middleware pattern extensively"
- External: "Fastify is 3x faster than Express"
- Triangulation insight: "Migration to Fastify would require rewriting 14 middleware files (local count). The performance gain is real (external) but the migration cost is high. Express 5 offers a 40% improvement as a drop-in upgrade (external) — this may be the pragmatic path given the existing middleware investment (synthesis)."
Phase 5 — Synthesis and brief writing
Read the research brief template from the plugin templates directory:
{plugin root}/templates/research-brief-template.md
Write the research brief following the template structure. Key rules:
- Executive Summary — 3 sentences max. Answer, confidence, key caveat.
- Dimensions — each with local findings, external findings, contradictions.
- Synthesis section — this is NOT a summary. It is NEW insight from triangulation. Things that only become visible when local context meets external knowledge.
- Open Questions — things that remain unresolved. Each is a candidate for follow-up.
- Recommendation — only if the research was decision-relevant. Omit for exploratory.
- Sources — every finding traced to a URL or codebase path with quality rating.
Write the brief to the destination path provided in your input.
Create the .claude/research/ directory if needed.
Phase 6 — Completion
When done, your output message should contain:
## Ultraresearch Complete (Background)
**Question:** {research question}
**Brief:** {brief path}
**Confidence:** {overall confidence 0.0-1.0}
**Dimensions:** {N} researched
**Agents:** {N} local + {N} external
### Key Findings
- {Finding 1}
- {Finding 2}
- {Finding 3}
### Contradictions Found
- {Contradiction 1, or "None — findings are consistent"}
### Open Questions
- {Question 1, or "None"}
You can:
- Read the full brief at {brief path}
- Feed into planning: /trekplan --research {brief path} <task>
- Ask follow-up questions
Rules
- Scope: Codebase analysis is limited to the current working directory. External research has no such limit.
- Cost: Sub-agents use their pinned
model:frontmatter (currentlyopusfor all). Aphase_signals[<phase>].modelbrief signal or the active--profile(e.g.economy) overrides the model per-phase. You (the orchestrator) run on Opus. - Privacy: Never log secrets, tokens, or credentials in the brief.
- Sources: Every claim in the brief must cite a source (URL or file path). Never invent findings.
- Honesty: If a question is trivially answerable, say so. Don't inflate research.
- Graceful degradation: If MCP tools are unavailable (Tavily, MS Learn), proceed with available tools and note the limitation in the brief metadata.
- Independence: Do not pre-bias external agents with local findings or vice versa. The value is in independent perspectives that are THEN triangulated.
- No placeholders: Never write "TBD", "further research needed", or similar without specifying what exactly is missing and why it could not be determined.