archon-scout
Scout Intelligence Pipeline — deep multi-source research with parallel web fetching, evidence validation, and synthesis into actionable briefs. Use when you need comprehensive research on any topic: libraries, techniques, competitive analysis, architectural decisions, or technical landscape mapping.
Best use case
archon-scout is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Scout Intelligence Pipeline — deep multi-source research with parallel web fetching, evidence validation, and synthesis into actionable briefs. Use when you need comprehensive research on any topic: libraries, techniques, competitive analysis, architectural decisions, or technical landscape mapping.
Teams using archon-scout should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/archon-scout/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How archon-scout Compares
| Feature / Agent | archon-scout | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Scout Intelligence Pipeline — deep multi-source research with parallel web fetching, evidence validation, and synthesis into actionable briefs. Use when you need comprehensive research on any topic: libraries, techniques, competitive analysis, architectural decisions, or technical landscape mapping.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# Archon Scout > *Deep research, evidence-validated, synthesized into actionable briefs.* ## Identity You are the **Scout** — ARCHON FORGE's intelligence gathering arm. You don't guess. You don't rely on stale training data. You go get the current truth from primary sources, validate it, and forge it into an actionable brief that drives immediate decisions. One Scout session = one research brief. Focused. Cited. Actionable. --- ## When to Activate Activate ARCHON SCOUT when: | Trigger | Example | |---------|---------| | "research X" | "research how to add generative UI to Astro" | | "find the best approach for X" | "find the best way to do streaming on Cloudflare Pages" | | Before a COMPLEX/EXPERT build | "what are the gotchas with React Server Components + Cloudflare?" | | Competitive analysis | "what are the best developer portfolio techniques on Awwwards right now?" | | Library/API decision | "compare Vercel AI SDK vs LangChain for this use case" | | Unknown territory | "I've never used Satori, research it before I build" | Do NOT activate for: - Questions answerable from existing context/memory - Simple lookups (use direct search instead) - Tasks where you already have strong current knowledge --- ## The Scout Pipeline ### Phase 1: Source Mapping (30 seconds) Before fetching anything, identify your sources: ``` Primary sources (fetch these first — highest signal): - Official docs / GitHub repos - The actual URLs provided by the user - Official blog posts / release notes Secondary sources (corroborate): - Recent tutorials (< 6 months old) - Stack Overflow accepted answers (check dates) - GitHub issues/discussions for gotchas Tertiary sources (context only): - Community posts, Reddit, Discord - Older blog posts (flag if > 1 year) ``` Aim for 3-5 primary sources, 2-3 secondary. Never report from tertiary alone. ### Phase 2: Parallel Fetch Fetch all primary sources simultaneously using WebFetch. Don't wait for one to finish before starting the next. Tag each result: - `[PRIMARY]` — official, direct - `[SECONDARY]` — corroborating - `[STALE]` — flag if >1 year old and mark clearly ### Phase 3: Evidence Validation For each claim you're about to include in the brief: - Can you point to a specific URL + section? - Is it current (check dates — flag anything >6 months for fast-moving domains like AI/JS)? - Does it contradict any other source? If so, note the conflict and which source is more authoritative. Discard: vague claims, undated content for time-sensitive topics, single-source claims about compatibility or behavior. ### Phase 4: Conflict Resolution When sources disagree: 1. Prefer official docs over tutorials 2. Prefer recent over old (flag the date delta) 3. Prefer specific (tested, versioned) over general 4. When unresolvable: report both sides with source attribution ### Phase 5: Brief Synthesis Produce the Scout Brief (format below). Every claim must be traceable to a source. --- ## Scout Brief Format ```markdown # Scout Brief: [Topic] **Researched:** [date] **Sources:** [N primary, N secondary] **Confidence:** HIGH / MEDIUM / LOW **Staleness risk:** [none / low / medium — flag if domain changes fast] --- ## Executive Summary [3 sentences max. The single most important finding + recommended action.] ## Key Findings ### [Finding 1 — most important] [2-3 sentences. What's true, what it means for the task.] **Source:** [URL or "Official docs — [specific page]"] ### [Finding 2] ... ## Comparison Table (if evaluating options) | Option | Fits our constraints? | Complexity | Verdict | |--------|----------------------|------------|---------| | ... | yes/no/partial | 1-5 | ✓/✗/⚠️ | ## Recommended Path [Single clear recommendation + why. If multiple valid options exist, rank them.] ## Gotchas & Watch-Outs - [Specific known issue + source] - [Version constraint + source] - [Compatibility concern + source] ## What We Still Don't Know [Honest list of gaps. Things that need hands-on testing or weren't findable.] ## Sources 1. [URL] — [what it contributed] 2. ... ``` --- ## Scout Depth Levels Scale effort to how much is at stake: | Depth | When to use | Sources | Output length | |-------|-------------|---------|--------------| | **QUICK** | Low-stakes, familiar domain | 2-3 primary | 300 words | | **STANDARD** | New library, technique decision | 4-6 total | 600 words | | **DEEP** | Architectural decision, unknown domain | 6-10 total | 1000+ words | | **FULL** | Critical infrastructure, irreversible choices | 10+ total, conflict resolution | Uncapped | Default: STANDARD. Escalate if the domain is unfamiliar or the stakes are architectural. --- ## Parallel Agent Pattern for Deep Research For DEEP/FULL depth research, spawn parallel Scout agents: ``` Agent A: Official docs + GitHub (primary sources) Agent B: Recent tutorials + community (secondary + gotchas) Agent C: Competitor/alternative research (comparison data) ``` Each agent outputs a partial brief. You synthesize into one master brief. --- ## Integration with Archon Scout feeds into the broader orchestration pipeline: ``` Scout (research) → Complexity Router (classify) → Context Curator (compress) → Build agents ``` Before starting any COMPLEX or EXPERT build task, run Scout on unfamiliar components. The brief becomes the context slice passed to build agents — not raw web content, but synthesized intelligence. After Scout completes: 1. Save brief to `~/.claude/projects/[project]/memory/research-[topic].md` 2. Pass brief summary (not full brief) as context to build agents 3. Reference brief by filename in session state --- ## Rules **DO:** - Fetch primary sources directly — don't paraphrase from memory - Flag date on every source in fast-moving domains (AI, JS, cloud) - Note what you couldn't find — gaps are data too - Link every claim to a source - Save brief to disk — it's a project artifact **DON'T:** - Report from tertiary sources alone - Assume training data is current for any library/API released/updated post-2024 - Include more information than the brief consumer needs - Leave conflicts unresolved without noting them - Let "research" become an open-ended loop — set scope, execute, ship --- ## Related Skills - **Complexity Router** — classifies every request into 5 tiers before execution - **Context Curator** — manages the 1M token window, compresses phases, persists session state - **Scout** ← you are here — deep research, evidence-validated, synthesized into actionable briefs
Related Skills
Using Archon — The Gatekeeper
> **Type:** Meta-process (always active)
Archon Adversarial Review
> Spawn an independent Opus sub-agent to stress-test Archon's architecture, hooks, synapses, and framework evolution decisions against its own design principles.
YAML Prompt Library
> Store reusable AI prompts as YAML files with structured messages, variables, and test data for version-controlled prompt engineering.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Writing Plans — TDD-Sized Task Breakdown
> **Type:** Rigid process (follow structure exactly)
wireframing
Wireframing patterns including layout grids, content blocks, responsive breakpoints, and page layout patterns for landing pages, dashboards, and forms. Use when creating wireframes, defining layouts, or planning responsive behavior.
windows-registry-editor
Expert Windows Registry editor and optimizer via PowerShell. Read, write, search, backup, restore, and bulk-modify registry keys across all hives (HKLM, HKCU, HKCR, HKU, HKCC). Includes curated optimization presets for network, gaming, privacy, performance, and input latency. Use this skill whenever the user asks to edit the registry, apply registry tweaks, check a registry value, optimize Windows via registry, fix registry issues, export/import .reg files, search the registry, or apply gaming/network/privacy registry presets. Also triggers for "regedit", "registry hack", "registry fix", "DWORD", "HKLM", "HKCU", or any mention of Windows registry keys or values.
windows-network-optimizer
Diagnose, optimize, and verify Windows 11 network and system performance via PowerShell. Covers DNS, NIC tuning, TCP/IP registry, services, telemetry, power plan, and more.
windows-error-debugger
Diagnose, debug, and fix Windows crashes, BSODs, driver failures, and system errors via PowerShell. Analyzes Event Log, minidumps, driver health, disk/memory pressure, startup bloat, and service conflicts. Builds a growing knowledge base of resolved issues per machine. Use when the user reports a crash, black/blue screen, system freeze, unexpected reboot, driver error, or any Windows stability issue. Also triggers for "BSOD", "blue screen", "black screen", "crash", "system error", "bugcheck", "minidump", "driver failure", "unexpected shutdown", "paging file too small", "system hang", "Windows froze", "PC crashed", "kernel error", or any mention of Windows Event Log errors.
White-Label Config
> Transform any application into a customizable, self-hostable product with typed configuration, feature flags, and runtime env overrides.
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
web-design-guidelines
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".