npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@geekjourneyx/findo

v1.2.3

Published

Install the findo CLI from the matching GitHub Release bundle.

Readme

Findo

Search Chinese web sources from one Go CLI.

License: MIT Go

Findo queries Bocha, Volcengine Ark, and Zhihu through provider APIs, then returns normalized terminal output or automation-safe JSON. It is built for developers, AI agents, and research workflows that need Chinese internet retrieval without scraping, browser sessions, or hidden side effects.

Install

Recommended:

npm install -g @geekjourneyx/findo
findo version

The npm package installs the matching GitHub Release binary for your platform and verifies it against SHA256SUMS.

Alternative Go install:

go install github.com/geekjourneyx/findo/cmd/[email protected]

Prebuilt binaries and checksums are available on the GitHub Releases page.

From a local checkout:

make build
./findo version

Configure

Initialize the default config file:

findo config init
findo config path

This creates a config file at the platform default path. On Linux this is typically:

~/.config/findo/config.yaml

Run findo config path for the exact path on your machine.

Edit that file and set the credentials for the providers you want to use:

| Provider | Environment variables | | --- | --- | | Bocha | BOCHA_API_KEY | | Volcengine Ark | ARK_API_KEY or VOLCENGINE_API_KEY | | Zhihu | ZHIHU_ACCESS_SECRET or ZHIHU_API_KEY |

The config file uses the same provider fields:

bocha:
  api_key: ""

volcengine:
  api_key: ""
  model: doubao-seed-2-0-lite-260215

zhihu:
  access_secret: ""

Configuration precedence is:

  1. CLI flags
  2. Environment variables
  3. --config file or ~/.config/findo/config.yaml
  4. Built-in defaults

Inspect the merged config without leaking secrets:

findo config show --json

Before publishing a release, verify version alignment across package.json, Makefile, CHANGELOG.md, and the release tag:

make version-check
make release-check

Quick Start

findo version
findo sources --json
findo skills list --json
findo skills read findo --json

BOCHA_API_KEY=... findo bocha "AI Agent 商业化" --json
ARK_API_KEY=... findo volc "瑞幸咖啡 2026 门店数是否可信" --json
ZHIHU_ACCESS_SECRET=... findo zhihu "AI 搜索" --json
ZHIHU_ACCESS_SECRET=... findo zhihu web "ChatGPT 桌面版" --json
ZHIHU_ACCESS_SECRET=... findo hot zhihu --json

Human output defaults to a table. Use --json for scripts, agents, CI, and downstream tools.

Agent Skill

Recommended Agent Skills install:

npx skills add geekjourneyx/findo

Findo also ships the same Agent SOP with the CLI package so agents can read instructions that match the executable on PATH:

findo skills list --json
findo skills read findo
findo skills read findo --json

skills read defaults to raw Markdown for direct agent context. With --json, the same content is returned in the content field with version metadata. Use this when you need to verify the SOP bundled with the installed CLI.

Output

Retrieval commands return a stable envelope. A successful JSON response looks like this:

{
  "version": "1.2.3",
  "query": {
    "text": "AI Agent 商业化",
    "mode": "search",
    "sources": ["bocha_web"],
    "limit": 10
  },
  "status": "ok",
  "results": [
    {
      "source": "bocha_web",
      "title": "Example result title",
      "url": "https://example.com/article",
      "snippet": "A normalized summary from the provider response."
    }
  ],
  "source_status": [
    {
      "source": "bocha_web",
      "status": "ok",
      "results": 1,
      "effective_limit": 10,
      "duration_ms": 842,
      "error": null
    }
  ],
  "errors": []
}

Exit codes are part of the public contract:

| Code | Meaning | | --- | --- | | 0 | Success | | 1 | Partial success | | 2 | Invalid argument | | 3 | Config error | | 4 | Credential missing | | 5 | Source error | | 6 | Timeout | | 7 | No results | | 9 | Internal error |

Sources

| Source ID | Command | Provider | Capability | | --- | --- | --- | --- | | bocha_web | findo bocha | Bocha | Web search | | volcengine_answer | findo volc | Volcengine Ark | Web-grounded answer | | zhihu_search | findo zhihu | Zhihu | In-site search | | zhihu_web | findo zhihu web | Zhihu | Global web search | | zhihu_hot | findo hot zhihu | Zhihu | Hotlist |

Zhihu global search supports provider-specific filters:

findo zhihu web "ChatGPT 桌面版" \
  --filter 'host=="example.com"' \
  --search-db realtime \
  --json

--filter and --search-db are only valid for findo zhihu web.

Automation Contract

Findo keeps the automation contract narrow and predictable:

  • stdout is reserved for results.
  • stderr is reserved for diagnostics.
  • JSON output keeps source IDs, source status, error codes, and exit codes stable.
  • Provider behavior stays behind typed Go adapters.
  • Built-in timeout defaults to 45s; override it with --timeout when a workflow needs a different budget.

Development

make build
make test
make lint
make release-check

The normal test suite does not require real provider credentials. Real API smoke checks are separate:

make smoke-bocha
make smoke-volcengine
make smoke-zhihu

Non-Goals

Findo v1.0.0 intentionally does not implement browser scraping, cache, reranking, plugin runtime, MCP, stdin query input, Bocha image search, or Zhihu direct answer. Those boundaries keep the CLI small, testable, and stable.

License

MIT