atmina-kb-mcp

Guides agents to recall, capture, update, and consolidate shared memory via the Atmina MCP server.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/latentminds-ai/atmina-plugins --skill atmina-kb-mcp-latentminds-ai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atmina-kb-mcp
Source: https://github.com/latentminds-ai/atmina-plugins/tree/main/plugins/atmina-codex/.agents/skills/atmina-kb-mcp
Command: npx skills add https://github.com/latentminds-ai/atmina-plugins --skill atmina-kb-mcp-latentminds-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coding agents forget everything between sessions and lose context within one. This Skill teaches an agent how to use the Atmina MCP server as durable shared memory, so decisions, findings, and procedures survive to the next prompt instead of being re-derived from training data. ## Core Features & Use Cases - Four memory reflexes: Recall (search before answering from training), Capture (write decisions and session notes with integrity-checked writes), Update (etag-guarded edits with conflict retry), and Consolidate (run → review → promote routine loop for a KB-wide current-state view). - Typed filtering and exhaustive listing: Use list_files for exhaustive audits and search for relevance-ranked discovery, with built-in and registered frontmatter pointer filters. - Index and navigation generation: Preview-then-apply workflows for generate_hub_index and generate_nav to maintain folder hub indexes and wiki/nav.yaml menus. - Use Case: Before answering "what did we decide about the auth flow?", the agent searches the team's Knowledge Base, reads the cited source file to verify evidence state, and answers from attested memory rather than guessing. ## Quick Start Ask the agent to orient with the Atmina MCP server by running health, whoami, and list_kbs, then search your Knowledge Base before answering any question about past team decisions.

Frequently Asked Questions about atmina-kb-mcp

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I give my coding agent persistent memory between sessions?

Connect the agent to the Atmina MCP server and follow this workflow: orient with health, whoami, and list_kbs, then search the Knowledge Base before answering from training. Capture decisions with write_file so they survive to the next session.

How do I search an Atmina Knowledge Base from an agent?

Use the search tool as the default discovery path; it returns file-grouped results with snippets and a read_ref. For authoritative detail, call read_file on the top result, since snippets carry no attestation of evidence state.

What is the difference between search and list_files in Atmina?

list_files applies filters to the KB's complete active catalog and is exhaustive, while search only filters its relevance candidates and reports exhaustive: false. Use list_files when you need every match, a count, or an audit.

How does the Atmina memory consolidation routine work?

Run run_routine, poll get_routine_run until completed, then read the staged report.md and proposed-current-state.md for review. An owning-team admin promotes the draft with promote_artifact; staged outputs are unreviewed and excluded from search.

Why did my Atmina write fail with a conflict error?

A [conflict] result means the file changed since you read it. Re-read the file with get_file_outline and read_file, re-draft against the new content, and retry write_file with the fresh if_match etag plus jitter; never blind-retry the same bytes.

Can I upload binary files like PDFs to an Atmina Knowledge Base?

Yes. Use upload_file or update_file for binary files up to 1 MiB as base64, or request_uploads followed by confirm_uploads for presigned bulk uploads over 1 MiB. Plain text formats must always go through write_file or write_files.