A shared cache of answers for AI coding assistants — your fix, everyone's gain. Includes a fail-open Claude Code hook + a local-memory CLI.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/tryaieph/aieph && cp aieph/*.md ~/.claude/agents/Subagents overview
# aieph
*your fix, everyone's gain*
aieph is a shared answer cache for AI coding assistants.
When an AI coding assistant is about to search the web, a small hook can quietly
ask: *"Does someone already have the answer?"*
If the answer is already in the shared cache, aieph can return it right away —
avoiding another trip to the web. If there is no answer, aieph simply gets out
of the way.
MISS, timeout, or error? Nothing breaks. The original request continues as
usual. That is the whole idea.
Your fix can become everyone's gain.
## Why a shared cache?
AI coding assistants often look up the same kinds of things:
- a familiar error message
- a library's behavior
- a configuration detail
- a solution someone has already found
The first person does the searching. The next person doesn't necessarily need
to. aieph gives those answers a place to be shared, and as more people use it,
the cache can gradually become more useful.
It's still early, so a cache hit is not guaranteed. Sometimes aieph simply won't
have the answer yet — and that's perfectly fine.
## How it feels
```text
AI assistant
│
│ "I'm about to search..."
▼
aieph
│
├── HIT → answer is already here
│
└── MISS / timeout / error
│
▼
original search
```
aieph is designed to stay out of the way. There is no need to change how you
work when the cache doesn't have something useful.
## Getting started with Claude Code
Claude Code can use aieph with a single `PreToolUse` hook for `WebSearch` and
`WebFetch`. A small setup looks like this:
```bash
git clone https://github.com/tryaieph/aieph.git
```
Then, in `~/.claude/settings.json`, the relevant hook can look like:
```json
{
"hooks": {
"PreToolUse": [
{
"matcher": "WebSearch|WebFetch",
"hooks": [
{
"type": "command",
"command": "node /path/to/aieph/hook/aieph-cache.mjs"
}
]
}
]
}
}
```
That's it.
Requirements: Node.js 18+. No account or API key is required.
Optional environment variables:
```text
AIEPH_API_BASE
LOOKUP_TIMEOUT_MS
```
Cursor support is being prepared.
## Removing aieph
If aieph is no longer useful for you, removing the `PreToolUse` block is enough
to return to the original setup.
## What gets sent?
aieph is intentionally simple and transparent. Only the search query text is
sent for matching. Nothing else is sent. There is no account to create and no
personal profile to maintain. When there is no matching answer, the request
passes through normally.
## Local shared memory
aieph also includes a small local-only memory CLI in [`cli/`](cli/). It is
separate from the shared answer cache. The idea is simple: write a fact once,
and let connected assistants remember it later. This memory stays completely
local.
## Early days, honest expectations
aieph is still growing. The shared cache is young, so there will be plenty of
moments when it doesn't have an answer yet. That's intentional: aieph never
needs to be perfect to be useful. A miss should feel exactly like there was no
cache at all.
Over time, every useful answer someone discovers has the potential to help the
next person.
*your fix, everyone's gain.*
## License
MIT
What people ask about aieph
What is tryaieph/aieph?
+
tryaieph/aieph is subagents for the Claude AI ecosystem. A shared cache of answers for AI coding assistants — your fix, everyone's gain. Includes a fail-open Claude Code hook + a local-memory CLI. It has 1 GitHub stars and its last recorded update is dated 2026-09-12.
How do I install aieph?
+
You can install aieph by cloning the repository (https://github.com/tryaieph/aieph) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is tryaieph/aieph safe to use?
+
Our security agent has analyzed tryaieph/aieph and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains tryaieph/aieph?
+
tryaieph/aieph is maintained by tryaieph. The last recorded GitHub activity is dated 2026-09-12, with 0 open issues.
Are there alternatives to aieph?
+
Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.
Deploy aieph to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/tryaieph-aieph)<a href="https://claudewave.com/repo/tryaieph-aieph"><img src="https://claudewave.com/api/badge/tryaieph-aieph" alt="Featured on ClaudeWave: tryaieph/aieph" width="320" height="64" /></a>More Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Build Agentic workflows, RAG pipelines, with rich AI model and tool support on one collaborative workspace. Deploy on cloud, VPC, or self-hosted, so teams move from prototype to production without rebuilding the stack.
The agent engineering platform.
Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.