fleet-memory/hindsight-docs
Nicolò Boschi 5b52a84fff
chore: internal renames (#204)
This commit renames the terminology across the entire codebase:
- "mental models" (fact_type='mental_model' in memory_units) → "observations"
- "reflections" table (stored reflect responses) → "mental_models"

Changes include:
- Database migration to rename tables, indexes, and constraints
- API endpoints: /reflections → /mental-models, /mental-models → /observations
- Config: ENABLE_MENTAL_MODELS → ENABLE_OBSERVATIONS
- Response models and Pydantic classes
- Reflect agent tools and prompts
- Control plane UI and routes
- Documentation and examples
- Regenerated OpenAPI spec and client SDKs (Python, TypeScript)
- Rust CLI: reflection commands → mental-model commands
- LiteLLM: updated fact_types documentation
2026-01-27 09:53:28 +01:00
..
docs chore: internal renames (#204) 2026-01-27 09:53:28 +01:00
examples chore: internal renames (#204) 2026-01-27 09:53:28 +01:00
src doc: mental models (#199) 2026-01-26 14:27:08 +01:00
static chore: internal renames (#204) 2026-01-27 09:53:28 +01:00
versioned_docs/version-0.3 doc: mental models (#199) 2026-01-26 14:27:08 +01:00
versioned_sidebars chore: versioned docs (#198) 2026-01-26 11:21:13 +01:00
.gitignore rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
docusaurus.config.ts doc: mental models (#199) 2026-01-26 14:27:08 +01:00
package.json feat: extensions (#54) 2025-12-22 11:05:23 +01:00
README.md rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
sidebars.ts chore: internal renames (#204) 2026-01-27 09:53:28 +01:00
tsconfig.json rename to hindsight (#2) 2025-11-25 19:28:26 +01:00
versions.json chore: versioned docs (#198) 2026-01-26 11:21:13 +01:00

Website

This website is built using Docusaurus, a modern static website generator.

Installation

npm install

Local Development

npm start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Build

npm run build

This command generates static content into the build directory and can be served using any static contents hosting service.

Deployment

Using SSH:

USE_SSH=true npm run deploy

Not using SSH:

GIT_USER=<Your GitHub username> npm run deploy

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.