llms.txt Content
# BaseMouse
> BaseMouse serves cited, checksummed context packs to AI agents from your own documents. Import your docs, then fetch grounded, agent-ready JSON with a source and a checksum on every claim — one API call, full version history, open source at the core.
BaseMouse is an AI-native, local-first document/notes repository for workspaces and agents. It exports structured, versioned `basemouse.context_pack.v1` bundles agents consume directly: every entry carries citations, provenance, a checksum, a version, a relevance score, and the document relationships it was drawn from. Retrieval blends three signals — lexical term overlap, one-hop graph expansion along document links, and a local offline vector similarity — and annotates why each result surfaced. Anonymous callers see a public demo corpus; authenticated `bm_` keys reach a private workspace. Verify checksums before treating pack claims as authoritative.
## Docs
- [OpenAPI specification](https://basemouse.com/openapi.json): the full HTTP API — `/api/search`, `/api/context-pack`, `/api/repository`, document CRUD, and MCP.
- [Open source core](https://github.com/basemouse/basemouse-core): the open-core repository (zero-dependency Node.js).
- [Open source overview](https://github.com/basemouse/basemouse-core/blob/master/docs/open-source.md): what is open source versus hosted-only.
## Product
- [Home](https://basemouse.com/): what BaseMouse is, a live query terminal, pricing, and FAQ.
- [Agent Governance Demo](https://basemouse.com/agent-governance-demo.html): a synthetic governance corpus with auditor and operator queries and a lexical-vs-hybrid retrieval-quality baseline.
- [Design Partner Intake](https://basemouse.com/design-partner.html): bring one small real corpus and real agent questions, get a retrieval baseline and context-pack examples back.
## Optional
- [Terms of Service](https://basemouse.com/terms.html)
- [Privacy Policy](https://basemouse.com/privacy.html)
OpenAPI Spec (preview)
{
"openapi": "3.1.0",
"info": {
"title": "BaseMouse API",
"version": "0.3.1",
"description": "Context infrastructure for AI agents: import your docs, pull cited, checksummed context packs, audit the append-only record. Authenticate with `Authorization: Bearer bm_...`; anonymous reads see the public demo corpus. An MCP endpoint exposing the same tools lives at POST /mcp (JSON-RPC, Streamable HTTP, stateless)."
},
"servers": [
{
"url": "https://basemouse.com"
}