ether-claude-memory

Query ether memory stores and Claude Code session transcripts through a local MCP server.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/arayaroma/ether --skill ether-claude-memory-arayaroma
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ether-claude-memory
Source: https://github.com/arayaroma/ether/tree/main/skills/ether-claude-memory
Command: npx skills add https://github.com/arayaroma/ether --skill ether-claude-memory-arayaroma

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working across many coding sessions, past decisions, bugs, and learnings get lost. This Skill lets you safely consult the local ether memory store and Claude Code session transcripts without directly touching .ether databases or transcript files, keeping the stores read-only and consistent. ## Core Features & Use Cases - Session summaries: Retrieve recent archived session summaries via the session_summaries tool, bounded with last. - Memory search: Run read-only keyword searches across problems, learnings, and observations with search_memories, using a focused query and bounded limit. - Transcript access: Locate recent Claude sessions with claude_sessions and read bounded excerpts with read_claude_session instead of loading entire transcripts. - Use Case: You hit a bug that feels familiar. Ask the agent to search ether memory for the error message, and it surfaces the prior problem, cause, and solution without re-deriving the fix from scratch. ## Quick Start Ask the agent to search ether memory for past learnings about a specific error message or topic using the ether-mcp-claude MCP tools.

Frequently Asked Questions about ether-claude-memory

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

FAQPage Schema
How do I search past Claude Code session history?▼

Use the claude_sessions tool to locate recent top-level sessions, then call read_claude_session with a session_id to retrieve a bounded excerpt. Avoid requesting entire transcripts unless the user explicitly needs them.

How do I search ether memory for past bugs and learnings?▼

Call the search_memories tool on the ether-mcp-claude MCP server with a focused query and a bounded limit. It performs read-only keyword search across problems, learnings, and observations stored in the local ether memory.

Can I read .ether database files directly instead of using the MCP server?▼

No. The skill explicitly forbids inspecting .ether files, databases, or transcript files directly from the agent. All access must go through the ether-mcp-claude MCP server tools to keep the stores consistent and read-only.

Does this skill modify ether memory or session data?▼

No, this skill is strictly read-only. It only consults memories and transcripts through the MCP server. Writes to memory are handled separately, and the Codex-scoped .void store must never be mixed with the Claude store.

What happens when a memory search returns no results?▼

Missing or empty results are treated as valid outcomes, not errors. The skill instructs the agent to accept an empty response from search_memories or session_summaries rather than retrying or falling back to direct file inspection.