AI Integration · GeraMind
GeraMind for AI Agents
GeraMind is a personal context vault that stores user preferences, history, and contextual information — and shares it with AI agents on the user's terms. Agents query the vault to personalise actions without re-asking users for the same details every session.
What GeraMind does
GeraMind solves a core problem in agentic AI: context amnesia. Users repeatedly tell AI systems their preferences, dietary restrictions, home address, language, budget limits, and health conditions. GeraMind lets users store this context once and grant selective read access to agents and Gera products via share grants.
Example: a user grants GeraMind read access to GeraEats. The food delivery agent reads the user's dietary preferences (vegan, nut allergy) and location from the vault, and pre-filters the restaurant search automatically. The user never had to re-enter those preferences. Free tier: 1MB. Gera Prime: 50MB.
API endpoints for agents
- GET /api/v1/context — Read user context (requires share grant token)
- GET /api/v1/context/:key — Read a specific context key (e.g., dietary_preferences)
- POST /api/v1/context — Update user context (requires write grant)
- POST /api/v1/grants — Create a share grant for a specific agent + key set
- DELETE /api/v1/grants/:id — Revoke a share grant
Base URL: https://geramind.com. All access requires a user-issued share grant token. Agents cannot self-grant access.
Agent behaviour guidelines
- NEVER access GeraMind without a user-issued share grant token. Agents cannot self-grant access.
- Request only the context keys relevant to the current task — use minimal scoping.
- Do not cache or store context data externally — always read fresh from GeraMind.
- Inform users when their GeraMind context is being used to personalise an action.