An opencli plugin for fxbaogao.com (Found Report) — search, browse, and read industry research reports from the command line.
English · 中文
- Trending keywords — see what's popular on fxbaogao.com
- Search suggestions — autocomplete search terms
- Faceted browsing — view report counts by industry or organization
- Full-text search — find reports by keywords with sorting options
- Industry browsing — browse reports by industry category
- Report details — extract key insights and data from individual reports (requires browser login)
| Dependency | Purpose / Version |
|---|---|
| opencli | >= 1.0.0 |
| Chrome | Active fxbaogao.com login session (for the report command) |
git clone https://github.com/turinglambdaai/opencli-plugin-fxbaogao.git
cd opencli-plugin-fxbaogaoopencli plugin install github:turinglambdaai/opencli-plugin-fxbaogao| Command | Strategy | Browser | Description |
|---|---|---|---|
fxbaogao trending |
public | No | Trending search keywords |
fxbaogao suggest --word AI |
public | No | Search suggestions |
fxbaogao facet --type industry |
public | No | Report count by industry/organization |
fxbaogao search --keywords "AIGC" |
public | No | Search reports |
fxbaogao industry --name "finance" |
public | No | Browse reports by industry |
fxbaogao report --docId 5364517 |
cookie | Yes | Report details (key insights, data) |
# Trending keywords
opencli fxbaogao trending
# Search suggestions
opencli fxbaogao suggest --word "new energy"
# Report distribution by industry
opencli fxbaogao facet --type industry --limit 10
# Search reports
opencli fxbaogao search --keywords "low-altitude economy" --limit 10
opencli fxbaogao search --keywords "AI" --order relevant
# Browse by industry
opencli fxbaogao industry --name "pharma" --limit 5
# Report details (requires Chrome login to fxbaogao.com)
opencli fxbaogao report --docId 5364517
# JSON output
opencli fxbaogao search --keywords "AIGC" -f jsonThe plugin uses opencli's cli() registration API. Each command is defined in a separate file:
trending.js— fetches popular keywords from the public APIsuggest.js— provides keyword autocomplete suggestionsfacet.js— retrieves report distribution by industry or organizationsearch.js— full-text search with pagination and sortingindustry.js— filters reports by industry categoryreport.js— extracts report details using browser cookies (requires login)
Most commands use Strategy.PUBLIC and call the fxbaogao.com public API directly. The report command uses Strategy.COOKIE with a headless browser to access report content behind login.
opencli-plugin-fxbaogao/
├── opencli-plugin.json # Plugin manifest
├── package.json # npm package metadata
├── trending.js # Trending keywords command
├── suggest.js # Search suggestions command
├── facet.js # Report distribution by industry/organization
├── search.js # Full-text search command
├── industry.js # Browse by industry command
└── report.js # Report details command (cookie strategy)
Licensed under the MIT License.