From 0c3080fb141cf7d3ee1d2315ae063c9bb61cd88b Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 25 Jun 2026 09:00:09 -0400 Subject: [PATCH] Add Hindsight plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds Hindsight — automatic long-term memory for Grok Build. Recalls relevant memories before each prompt, retains conversation transcripts, and exposes agent_knowledge_* tools via a bundled stdio MCP server. Source: url pin to vectorize-io/hindsight-grok-plugin at a full commit SHA, same shape as the other third-party entries. Category `memory`. Changes: - .grok-plugin/marketplace.json — Hindsight catalog entry (url source + SHA). - .grok-plugin/plugin-index.json — regenerated; records the hindsight MCP server (stdio), 4 lifecycle hooks, and the create-agent skill. Co-Authored-By: Claude Opus 4.8 (1M context) --- .grok-plugin/marketplace.json | 13 +++++++++++++ .grok-plugin/plugin-index.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/.grok-plugin/marketplace.json b/.grok-plugin/marketplace.json index 55518e0..e2b3ff2 100644 --- a/.grok-plugin/marketplace.json +++ b/.grok-plugin/marketplace.json @@ -105,6 +105,19 @@ "homepage": "https://github.com/firecrawl/firecrawl-grok-plugin", "keywords": ["firecrawl", "fire crawl"], "domains": ["firecrawl.dev", "docs.firecrawl.dev"] + }, + { + "name": "hindsight", + "description": "Automatic long-term memory for Grok via Hindsight. Recalls relevant memories before each prompt, retains conversation transcripts, and exposes knowledge-page tools (recall, ingest, create/update/delete pages) through the bundled Hindsight MCP server. Runs a local hindsight-embed daemon on 127.0.0.1; bring your own LLM key for fact extraction.", + "category": "memory", + "source": { + "source": "url", + "url": "https://github.com/vectorize-io/hindsight-grok-plugin.git", + "sha": "31a126047666fc569e83069a07a7953607170214" + }, + "homepage": "https://vectorize.io/hindsight", + "keywords": ["hindsight", "hindsight memory", "vectorize hindsight", "agent memory"], + "domains": ["vectorize.io", "hindsight.vectorize.io"] } ] } diff --git a/.grok-plugin/plugin-index.json b/.grok-plugin/plugin-index.json index aa0d5d7..b965673 100644 --- a/.grok-plugin/plugin-index.json +++ b/.grok-plugin/plugin-index.json @@ -168,6 +168,37 @@ ] } }, + "hindsight": { + "sha": "31a126047666fc569e83069a07a7953607170214", + "components": { + "hooks": [ + { + "name": "SessionEnd" + }, + { + "name": "SessionStart" + }, + { + "name": "Stop" + }, + { + "name": "UserPromptSubmit" + } + ], + "mcpServers": [ + { + "name": "hindsight", + "description": "stdio" + } + ], + "skills": [ + { + "name": "create-agent", + "description": "Create a new Hindsight-powered subagent with long-term memory. Use when the user wants a specialized agent that learns…" + } + ] + } + }, "mongodb": { "sha": "9ea7387c7a1638604542c6efd52e5efc6a7fc393", "components": {