home / skills / openclaw / skills / flow-search

flow-search skill

/skills/windseeker1111/flow-search

This skill enables deep web research with Claude, delivering multi-source insights for market analysis and competitor intelligence.

npx playbooks add skill openclaw/skills --skill flow-search

Review the files below or copy the command above to add this skill to your agents.

Files (4)
SKILL.md
2.1 KB
---
name: flow-search
description: Deep web research using Claude's native search tool. Use for comprehensive research, market analysis, competitor intelligence, or when standard search isn't enough. Free from the Flow team.
metadata: {"clawdbot":{"emoji":"🔍"}}
---

# FlowSearch — Deep Web Research

Power web research using Claude CLI. Use this when you need:
- Deep research requiring synthesis across multiple sources
- Market and competitor analysis
- Finding recent news, pricing, and trends
- Any query where quick search isn't cutting it

## Prerequisites

- [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated
- `CLAUDE_CODE_OAUTH_TOKEN` set in your environment (from `claude auth login`)

## Installation

```bash
npx clawhub@latest install flow-search
cd ~/.openclaw/skills/flow-search
npm install
```

## Usage

### Quick Search
```bash
npx tsx search.ts "Kling AI Pro plan pricing 2026"
```

### Deep Research
```bash
npx tsx search.ts --deep "AI video generation market analysis"
```

### In Code / Skills
```typescript
import { claudeSearch, claudeResearch } from "./search.ts";

// Quick search
const result = await claudeSearch("What is Kling AI pricing?");
console.log(result.answer);

// Deep research with specific questions
const research = await claudeResearch("AI video market", [
  "Who are the top players?",
  "What are typical pricing models?",
  "What's the market size?"
]);
```

## When to Use

| Use FlowSearch | Use Brave/Basic Search |
|----------------|----------------------|
| Deep research | Quick facts |
| Multi-source synthesis | Single answer needed |
| Market analysis | Simple lookups |
| Competitor intelligence | Basic info |

## Output Format

**Quick search** returns a direct answer with sources.

**Deep research** returns:
- Summary (2-3 sentences)
- Key Findings (bullet points)
- Detailed Analysis
- Sources with URLs

## Notes

- Requires Claude Code CLI with an active Max subscription for best results
- Quick search: ~15-30 seconds
- Deep research: ~60-180 seconds
- Works with any Claude Code auth method (`CLAUDE_CODE_OAUTH_TOKEN` or browser login)

Overview

This skill performs deep web research using Claude's native search tooling to synthesize information across many sources. It is designed for market analysis, competitor intelligence, and investigations where quick search is insufficient. The tool outputs concise summaries, key findings, detailed analysis, and source links.

How this skill works

The skill calls Claude Code CLI search endpoints to crawl and aggregate multiple web sources, then uses Claude to synthesize results into structured outputs. Quick searches return a direct answer with source citations; deep research runs longer queries and returns a summary, key findings, and a detailed analysis section with URLs. Authentication is handled through the Claude Code CLI token in the environment.

When to use it

  • Deep research requiring synthesis across many sources
  • Market sizing, trend spotting, and pricing research
  • Competitor intelligence and feature comparisons
  • Investigations needing recent news and primary sources
  • When single-result search is not providing actionable context

Best practices

  • Provide clear, focused research questions or a short list of follow-ups for deep runs
  • Use quick search for single factual checks and deep mode for strategic reports
  • Include date ranges or geographic filters to improve relevance
  • Verify cited URLs directly for compliance or primary-source needs
  • Expect longer run times for deep searches (up to a few minutes) and budget accordingly

Example use cases

  • Prepare a competitive landscape brief for product planning with top players, pricing, and feature gaps
  • Generate a market trend summary and citations for executive presentations
  • Collect recent pricing and licensing details for vendor comparisons
  • Gather and synthesize industry news for quarterly business reviews
  • Create a research dossier with direct source links for due diligence

FAQ

What do I need to run this skill?

Install and authenticate Claude Code CLI and set the CLAUDE_CODE_OAUTH_TOKEN in your environment or use the CLI browser login.

How long do searches take?

Quick searches take about 15–30 seconds. Deep research can take 60–180 seconds depending on scope and number of sources.