Hister 发布:为浏览过的网页和本地文件打造私人全文搜索引擎

Hacker News 热门(buzzing.cc 中文翻译)·2026-09-18 02:32·1小时前·bookofjoe
AI 导读

开源项目 Hister 发布,它对用户访问过的网页和本地文件做全文索引,可通过网页、终端或接入 MCP 的 AI 助手检索。无遥测和强制云服务,支持 Firefox 和 Chrome 扩展自动索引、浏览器历史导入、字段过滤和可选的语义搜索,采用 AGPLv3 许可。

Hacker News 热门(buzzing.cc 中文翻译)
64AI 编辑部评分,满分 100

Hister 发布:为浏览过的网页和本地文件打造私人全文搜索引擎

2026-09-18 02:32· 1小时前· bookofjoe
AI 导读

开源项目 Hister 发布,它对用户访问过的网页和本地文件做全文索引,可通过网页、终端或接入 MCP 的 AI 助手检索。无遥测和强制云服务,支持 Firefox 和 Chrome 扩展自动索引、浏览器历史导入、字段过滤和可选的语义搜索,采用 AGPLv3 许可。

Hister is a private search engine for the pages you visit and the files you keep. It indexes their full contents so you can find information again from the web interface, terminal, or an AI assistant connected through MCP.

Try the demo · Download Hister · Read the quickstart · Documentation

Hister web interface

Quickstart

  1. Download the binary for your platform from the latest release, then rename it to hister (hister.exe on Windows).

  2. On Linux or macOS, make it executable:

    chmod +x hister
    
  3. Start Hister on Linux or macOS:

    ./hister listen
    

    On Windows, run .\hister.exe listen in PowerShell.

    Keep this terminal open while using Hister. The server must be running to index pages and search them.

  4. Open http://127.0.0.1:4433 and install the browser extension for Firefox or Chrome.

  5. Visit a web page with the extension enabled, then return to Hister and search for a phrase from that page to find your first indexed result.

No configuration is required for a local personal setup. See the complete quickstart to choose what Hister indexes.

To search existing content, import browser history, index local directories, or import files.

Alternative installation methods include Homebrew (brew install hister), Docker, and Nix. See the installation guide for instructions.

Features

  • Privacy focused: No telemetry or mandatory cloud service. Run Hister locally or on infrastructure you control.
  • Full text indexing: Search the actual contents of visited pages and local files, not only titles and URLs.
  • Automatic browser indexing: Save newly visited pages with the Firefox or Chrome extension.
  • Powerful queries: Use field filters, phrases, wildcards, negation, aliases, and result priorities.
  • Optional semantic search: Find documents by meaning through an embeddings endpoint you configure.
  • Crawler and browser import: Index websites or bring in existing browser history.
  • Web, terminal, and MCP clients: Search from the browser, TUI, command line, or an AI assistant.
  • Multi user support: Keep each user's documents and search results separate on a shared server.

Hister terminal interface

Privacy

By default, Hister has no telemetry and no cloud sync. The browser extension sends indexed page content only to the Hister server you configure, apart from downloading page favicons. The server stores documents and search indexes on that server.

Optional semantic search sends document text to the embeddings endpoint you choose. Review the privacy overview and semantic search configuration before enabling remote integrations.

Why Hister?

Unlike traditional search engines, Hister builds a personal search index from the web pages and files you choose to keep. Your content stays on your Hister server, making it useful for finding information you've already encountered without relying on a third-party search provider.

Development

Requirements are Go 1.26, npm, and a C compiler for CGO dependencies.

git clone https://github.com/asciimoo/hister.git
cd hister
./manage.sh build

To work on the web app with hot reload and automatic Go rebuilds:

npm run serve:app

This starts a Vite development server and the Go backend with automatic rebuilds through air.

Community and contributing

Join us on IRCNet in #hister or on Discord.

Read CONTRIBUTING.md before submitting a change. Bugs and suggestions belong in the issue tracker. For security reports, see SECURITY.md.

Sponsors

Uruky

License

AGPLv3 or any later version

来源:Hacker News 热门(buzzing.cc 中文翻译)· github.com