An agent swarm that reads research papers before YouTube does.
FlowScout is a Claude Code command bundle that turns a single paper URL into a structured corpus, walks the citation graph in your sleep, mines cross-paper theses, and verifies them against the open literature. Designed for operators who want an edge in AI (or any fast-moving research field) before the primitives get wrapped in a brand.
Five commands. One overnight loop. One open-source repo.
/digest-paper one paper, one structured digest
↓
/citation-walk follow the citation graph (broad, deep, canonical, orbit)
↓
/research-cycle chain all four walking modes plus longitudinal synthesis
↓
/flow-frontier mine falsifiable cross-paper theses from the corpus
↓
/verify-thesis adversarial verification against the open literature
Wrap any command in /loop and walk away. Cycle 3 of the system that built this repo produced 34 new paper digests, a 5,716-word synthesis, and 23 falsifiable theses overnight.
Read the full journey in Outrunning the AI Hype Train on The Cognitive Shift.
Open Claude Code in your second-brain directory and say:
Install FlowScout from https://github.com/RhysEJF/flowscout
Claude will read the INSTALL.md in this repo and copy the commands and skills into the right places.
From the root of your second-brain directory:
curl -sSL https://raw.githubusercontent.com/RhysEJF/flowscout/main/install.sh | bashgit clone https://github.com/RhysEJF/flowscout.git /tmp/flowscout
cp /tmp/flowscout/commands/*.md ./.claude/commands/
cp -R /tmp/flowscout/skills/* ./skills/Once installed, all five commands are available as Claude Code slash commands.
Digest a single paper:
/digest-paper https://arxiv.org/abs/2109.02157
Walk citations from a seed:
/citation-walk arxiv.org/abs/2109.02157 --topic="vector-symbolic encodings" --broad
Run an overnight research cycle:
/loop /research-cycle "agentic memory architectures"
Mine theses across your corpus:
/flow-frontier --topic="agentic memory" --max-papers=20
Verify all open theses:
/verify-thesis --all-open
| Command | What it does | Reads | Writes |
|---|---|---|---|
/digest-paper |
URL to structured markdown digest. TLDR, key takeaway, method, figure, citations, "what experts overlook." Lens-tailored (multiple personas per paper). | Web (paper URL) | memory/knowledge-sources/papers/<slug>.md |
/citation-walk |
Walks the citation graph in four modes: --broad (all refs), --deep (follow the thread), --canonical (foundational works in the wiki), --orbit (lateral discovery via mutated takeaways). |
A seed digest + the wiki | experiences/citation-walk/<run>/ + new digests |
/research-cycle |
Chains all four citation-walk modes in sequence on a single topic, plus a longitudinal meta-digest that compounds across runs. Designed to be wrapped by /loop. |
The wiki + a topic | A per-cycle synthesis |
/flow-frontier |
Mines cross-paper theses across five gap-types: convergence, unstated-assumption, mechanism-gap, edge-of-consensus, direct contradiction. Emits falsifiable theses. | The wiki | experiences/theses/<slug>.md |
/verify-thesis |
Generates adversarial search queries per thesis, runs them through Exa + WebSearch, scores candidates as supports/contradicts/qualifies/irrelevant, synthesises a verdict, drafts an experiment if the thesis stays open. | A thesis + the open literature | Updated thesis file with verdict |
FlowScout ships with a lightweight HTML viewer (skills/digest-paper/viewer-template.html) that auto-installs to memory/knowledge-sources/papers/viewer.html the first time you run /digest-paper. Open it in a browser to scroll your digests, search them, and click through to the markdown source. It is a single self-contained file. No server, no build step, no dependencies.
Obsidian, Logseq, or similar users: point your vault at memory/knowledge-sources/papers/ and you can ignore the viewer entirely. The digests are plain markdown with YAML frontmatter, so your existing tooling will pick them up. The bundled viewer exists because I had not adopted Obsidian when I built this and wanted something quick I could read in the browser. Might build a richer one on top of it later.
-
Claude Code installed (CLI or IDE extension)
-
An Exa API key for orbit mode and verify-thesis (set as
EXA_API_KEYin your shell, or via the Exa MCP) -
A second brain with these conventions:
memory/knowledge-sources/papers/for paper digestsexperiences/citation-walk/for walk runsexperiences/theses/for mined theses
These are the Flow OS defaults. If your second brain uses different paths, edit the
SKILL.mdfiles inskills/<command>/to match. The path conventions are the only Flow OS-specific assumption FlowScout makes. -
Optional: a hybrid search engine (Flow OS uses QMD for corpus-wide search inside
--orbitand--canonicalmodes). The commands degrade gracefully without it.
Each command stands alone. You can chain them however you like:
# Build coverage on one topic over a week
for topic in "neuromorphic computing" "in-context learning theory" "RLHF alternatives"; do
/research-cycle "$topic"
done
# Then mine the whole corpus
/flow-frontier --refresh
# Then verify everything
/verify-thesis --all-openOr wrap the lot in /loop and go to bed.
FlowScout is alpha. Things on the list:
- Path config: a single
flowscout.tomlto overridememory/knowledge-sources/papers/etc. - Second-brain adapters (Obsidian, Logseq, Notion export folders)
- Built-in scheduling without needing
/loop - A richer viewer (annotations, tags, full-text search across digests) on top of the bundled HTML one
- LaTeX-to-figure extractor for arxiv source tarballs (current version uses PDF screenshots)
PRs welcome. Issues even more welcome.
An outrider that scouts the literature ahead of the brand. Reads papers while you sleep. Reports back with theses you can be first to test.
The "Flow" half nods at Flow OS, the second brain it was built inside. FlowScout is the first piece of Flow OS that makes sense as a standalone tool, because reading papers is a job everyone has.
MIT. See LICENSE.
Built by Rhys Fisher inside Flow OS. The full story of how it was built, command by command, is in Outrunning the AI Hype Train.
If you run FlowScout on something interesting, tell me. I want to know what edges other operators are finding while the YouTubers are still rendering their thumbnails.
