proomt

Search

Search posts, papers, and topics

All posts

Hacker News front pageasciimoo2 min readrelease notesintro

Hister: A private search engine for the pages you visit and the files you keep

Summary

Hister is an open‑source self‑hosted search engine that indexes the full text of visited web pages and local files, offering both keyword and optional semantic search via a web UI, CLI, TUI, and MCP client. It runs locally with no telemetry and can be installed via binary, Homebrew, Docker, or Nix.

  • Install the binary (or via Homebrew/Docker/Nix) and run `hister listen` to start the local server.
  • Browser extensions automatically capture visited pages; you can also import browser history or index local directories/files.
  • Supports full‑text queries with field filters, phrases, wildcards, negation, and optional semantic search via a configurable embeddings endpoint.
  • Provides multiple clients: web UI, terminal UI, command‑line, and MCP integration, with multi‑user isolation on shared servers.

Engineers who want a private, self‑hosted search over their browsing history and local files without sending data to third‑party services.

4/10

Related reading

  1. Self-Evolving Search Index

    The paper introduces SELF-INDEX, a framework that lets a search index automatically diagnose retrieval failures, revise its keys, and validate changes, using a query simulator to anticipate future queries. Experiments show consistent gains across corpora and downstream LLM agents.

    Hugging Face Daily Papersarxiv.org1 minpaper
  2. Rails Hyperdrive: supercharged agentic development for Rails

    Rails Hyperdrive is a development‑only Rails engine that mounts a Model Context Protocol (MCP) server and lets any gem ship agent knowledge (skills, agents, commands, guidelines) as markdown files. The engine adds no knowledge itself; companion gems provide the context‑aware artifacts that agents can query at runtime, avoiding token‑heavy guessing and stale schema reads. Installation is a single…

    Evil Martiansevilmartians.com22 min
  3. Show HN: Scry, programmable internet search w/ congestion pricing

    Scry is a read‑only, SQL‑like search service that lets LLM agents query billions of public‑web records (e.g. Reddit, Hacker News, academic papers) via a single MCP or HTTP endpoint. It enforces per‑query limits (deadline, memory, row cap), offers schema discovery, explain, rerank, and compile APIs, and reports freshness per source (e.g. Hacker News <15 min). In a DeepSearchQA benchmark Scry‑enabl…

    Hacker News front pagescry.io28 minreleaseHN6025
  4. Laravel Scalpel Scans for Filesystem Intrusion Evidence

    Laravel Scalpel is a Laravel‑native scanner that looks for post‑deployment filesystem tampering – rogue PHP files, obfuscated backdoors, altered .htaccess/.user.ini, missing or mis‑configured .env, and diffs against a signed baseline. It ships with six built‑in scanners, baseline snapshot commands, fast vs strict hashing modes, CI‑friendly output (JSON, SARIF, GitHub annotations) and a ScanFinish…

    Laravellaravel-news.com5 min