agentmemory icon indicating copy to clipboard operation
agentmemory copied to clipboard

#1 Persistent memory for AI coding agents based on real-world benchmarks

Results 490 agentmemory issues
Sort by recently updated
recently updated
newest added

## Summary Coolify v4's PHP-based docker-compose validator rejects the shorthand environment list syntax (`- VAR` without `=`) in `deploy/coolify/docker-compose.yml`, breaking the official one-click deploy flow. The exact build error is:...

## Bug Description In the agentmemory viewer, the top navigation tab bar can collapse to a very small height on Windows/Chromium-like environments. The tab buttons still exist in the DOM,...

## Summary The agentmemory viewer top navigation tabs can be vertically clipped. In the affected layout, the tab text appears partially hidden under the header/content boundary. ## Environment - Package:...

Fixes #374 ## Summary - Add an OpenAI-compatible LLM provider for compression and summarization. - Detect Azure-shaped `OPENAI_BASE_URL` values and call `/chat/completions` without adding `/v1`. - Add `api-version` for Azure...

## Summary Adds a new `openai` LLM provider that uses raw fetch to call any OpenAI-compatible `/v1/chat/completions` endpoint. ## Changes - `src/types.ts`: Add `openai` to `ProviderType` union - `src/providers/openai.ts`: New...

## Problem `memory_signal_read` marks delivered messages as read (`readAt` set). This is correct for the primary use case (agent reading own inbox), but blocks **passive listing** use cases. ## Use...

## Problem The integrations/pi/security.ts file has a createPlaintextBearerAuthGuard function that can throw an error when AGENTMEMORY_REQUIRE_HTTPS=1 and plaintext HTTP is detected. However, this guard is not applied to the main...

## Problem The hook scripts (stop.ts, post-tool-use.ts, etc.) send Bearer tokens in Authorization headers to REST_URL. When AGENTMEMORY_URL defaults to 'http://localhost:3111', tokens are transmitted over plaintext HTTP. While localhost traffic...

Closes #392. ## Summary Adds optional ISO 8601 `start_time` and `end_time` arguments (both inclusive) to `memory_recall`, `memory_smart_search`, and `memory_sessions` so agents can answer "what did I work on last week?"...

## What changed - Add a shared timeout wrapper for raw LLM provider HTTP calls. - Use it for MiniMax and OpenRouter/Gemini-compatible provider requests. - Document `AGENTMEMORY_LLM_TIMEOUT_MS` in `.env.example`. -...