From 5be90d7f02a00dd6626d95e26b9a042e82deeb69 Mon Sep 17 00:00:00 2001 From: Rene Zander Date: Sat, 30 May 2026 12:37:48 +0000 Subject: [PATCH 1/2] Add Agentic Task System (ats) to Knowledge & Memory Task-manager-backed agent memory (TickTick/Obsidian) with hybrid RRF retrieval. Ships @reneza/ats-mcp. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0cd64e03b..a449b08d7 100644 --- a/README.md +++ b/README.md @@ -1762,6 +1762,7 @@ Persistent memory storage using knowledge graph structures. Enables AI models to - [kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁️ - A connector for LLMs to work with collections and sources on your Zotero Cloud - [keepgoing-dev/mcp-server](https://github.com/keepgoing-dev/mcp-server) [![mcp-server MCP server](https://glama.ai/mcp/servers/keepgoing-dev/mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/keepgoing-dev/mcp-server) 📇 🏠 🍎 🪟 🐧 - Project memory for AI coding sessions. Auto-captures checkpoints on git commits, branch switches, and inactivity, then provides re-entry briefings so AI assistants pick up where you left off. Local-first, no account required. - [kunwar-shah/claudex](https://github.com/kunwar-shah/claudex) [![kunwar-shah/claudex MCP server](https://glama.ai/mcp/servers/kunwar-shah/claudex/badges/score.svg)](https://glama.ai/mcp/servers/kunwar-shah/claudex) 📇 🏠 🍎 🪟 🐧 - Persistent memory + FTS5 full-text search for Claude Code conversation history. Indexes `~/.claude/projects/` JSONL into SQLite, exposes 10 MCP tools (store/recall/search memories, list sessions, get summaries) plus prompts. Includes a web UI for visual exploration with themes and exports. Works with Claude Code, Cursor, Codex, Windsurf, and any MCP-compatible client. `npm install -g @kunwarshah/claudex` +- [renezander030/agentic-task-system](https://github.com/renezander030/agentic-task-system) 📇 🏠 - Turns your task manager into agent memory: hybrid (dense + sparse + keyword, RRF) retrieval over TickTick or an Obsidian vault via a six-method adapter contract. MCP server + CLI, no vector DB to build or maintain. `npm i -g @reneza/ats-cli` - [KVANTRA-dev/NOUZ-MCP](https://github.com/KVANTRA-dev/NOUZ-MCP) [![NOUZ-MCP MCP server](https://glama.ai/mcp/servers/KVANTRA-dev/NOUZ-MCP/badges/score.svg)](https://glama.ai/mcp/servers/KVANTRA-dev/NOUZ-MCP) 🐍 🏠 🍎 🪟 🐧 - Semantic knowledge graph for Obsidian. Three modes (pure graph / semantic classification / strict hierarchy), local embeddings, sign classification via cosine similarity to user-defined cores, bottom-up core_mix aggregation, semantic bridge discovery, and drift detection. `pip install nouz-mcp` - [leesgit/claude-session-continuity-mcp](https://github.com/leesgit/claude-session-continuity-mcp) [![claude-session-continuity-mcp MCP server](https://glama.ai/mcp/servers/leesgit/claude-session-continuity-mcp/badges/score.svg)](https://glama.ai/mcp/servers/leesgit/claude-session-continuity-mcp) 📇 🏠 🍎 🪟 🐧 - Zero-config session continuity for Claude Code. Auto-captures context via Claude Hooks, provides 25 tools for memory, tasks, solutions, and knowledge graph. Multilingual semantic search (94+ languages) with cross-language retrieval. - [lfrmonteiro99/memento-mcp](https://github.com/lfrmonteiro99/memento-mcp) [![lfrmonteiro99/memento-mcp MCP server](https://glama.ai/mcp/servers/lfrmonteiro99/memento-mcp/badges/score.svg)](https://glama.ai/mcp/servers/lfrmonteiro99/memento-mcp) 📇 🏠 🍎 🪟 🐧 - Local-first persistent memory for AI coding agents. Captures facts, decisions, patterns, and architecture notes in SQLite (with optional cloud embeddings) to reduce repeated context across sessions. From 0289e3e74dfcfdd0eae2405f9f5d75a17363bf50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Zander?= Date: Mon, 8 Jun 2026 04:10:03 +0000 Subject: [PATCH 2/2] Add Glama score badge to agentic-task-system entry --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a449b08d7..c6e16ee40 100644 --- a/README.md +++ b/README.md @@ -1762,7 +1762,7 @@ Persistent memory storage using knowledge graph structures. Enables AI models to - [kaliaboi/mcp-zotero](https://github.com/kaliaboi/mcp-zotero) 📇 ☁️ - A connector for LLMs to work with collections and sources on your Zotero Cloud - [keepgoing-dev/mcp-server](https://github.com/keepgoing-dev/mcp-server) [![mcp-server MCP server](https://glama.ai/mcp/servers/keepgoing-dev/mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/keepgoing-dev/mcp-server) 📇 🏠 🍎 🪟 🐧 - Project memory for AI coding sessions. Auto-captures checkpoints on git commits, branch switches, and inactivity, then provides re-entry briefings so AI assistants pick up where you left off. Local-first, no account required. - [kunwar-shah/claudex](https://github.com/kunwar-shah/claudex) [![kunwar-shah/claudex MCP server](https://glama.ai/mcp/servers/kunwar-shah/claudex/badges/score.svg)](https://glama.ai/mcp/servers/kunwar-shah/claudex) 📇 🏠 🍎 🪟 🐧 - Persistent memory + FTS5 full-text search for Claude Code conversation history. Indexes `~/.claude/projects/` JSONL into SQLite, exposes 10 MCP tools (store/recall/search memories, list sessions, get summaries) plus prompts. Includes a web UI for visual exploration with themes and exports. Works with Claude Code, Cursor, Codex, Windsurf, and any MCP-compatible client. `npm install -g @kunwarshah/claudex` -- [renezander030/agentic-task-system](https://github.com/renezander030/agentic-task-system) 📇 🏠 - Turns your task manager into agent memory: hybrid (dense + sparse + keyword, RRF) retrieval over TickTick or an Obsidian vault via a six-method adapter contract. MCP server + CLI, no vector DB to build or maintain. `npm i -g @reneza/ats-cli` +- [renezander030/agentic-task-system](https://github.com/renezander030/agentic-task-system) [![renezander030/agentic-task-system MCP server](https://glama.ai/mcp/servers/renezander030/agentic-task-system/badges/score.svg)](https://glama.ai/mcp/servers/renezander030/agentic-task-system) 📇 🏠 - Turns your task manager into agent memory: hybrid (dense + sparse + keyword, RRF) retrieval over TickTick or an Obsidian vault via a six-method adapter contract. MCP server + CLI, no vector DB to build or maintain. `npm i -g @reneza/ats-cli` - [KVANTRA-dev/NOUZ-MCP](https://github.com/KVANTRA-dev/NOUZ-MCP) [![NOUZ-MCP MCP server](https://glama.ai/mcp/servers/KVANTRA-dev/NOUZ-MCP/badges/score.svg)](https://glama.ai/mcp/servers/KVANTRA-dev/NOUZ-MCP) 🐍 🏠 🍎 🪟 🐧 - Semantic knowledge graph for Obsidian. Three modes (pure graph / semantic classification / strict hierarchy), local embeddings, sign classification via cosine similarity to user-defined cores, bottom-up core_mix aggregation, semantic bridge discovery, and drift detection. `pip install nouz-mcp` - [leesgit/claude-session-continuity-mcp](https://github.com/leesgit/claude-session-continuity-mcp) [![claude-session-continuity-mcp MCP server](https://glama.ai/mcp/servers/leesgit/claude-session-continuity-mcp/badges/score.svg)](https://glama.ai/mcp/servers/leesgit/claude-session-continuity-mcp) 📇 🏠 🍎 🪟 🐧 - Zero-config session continuity for Claude Code. Auto-captures context via Claude Hooks, provides 25 tools for memory, tasks, solutions, and knowledge graph. Multilingual semantic search (94+ languages) with cross-language retrieval. - [lfrmonteiro99/memento-mcp](https://github.com/lfrmonteiro99/memento-mcp) [![lfrmonteiro99/memento-mcp MCP server](https://glama.ai/mcp/servers/lfrmonteiro99/memento-mcp/badges/score.svg)](https://glama.ai/mcp/servers/lfrmonteiro99/memento-mcp) 📇 🏠 🍎 🪟 🐧 - Local-first persistent memory for AI coding agents. Captures facts, decisions, patterns, and architecture notes in SQLite (with optional cloud embeddings) to reduce repeated context across sessions.