Skip to main content
ClaudeWave

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.

SubagentsRegistry oficial1 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/13/2026
Install as a Claude Code subagent
Method: Clone
Terminal
git clone https://github.com/tryaieph/aieph && cp aieph/*.md ~/.claude/agents/
1. Clone the repository and copy the agent .md definitions into ~/.claude/agents (or .claude/agents inside a project).
2. Start a new Claude Code session to load the agents.
3. Delegate work to them with the Task/Agent tool or by name.
Casos de uso

Resumen de Subagents

# 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
aiai-agentscacheclaude-codecoding-assistantcursordeveloper-toolsmcp

Lo que la gente pregunta sobre aieph

¿Qué es tryaieph/aieph?

+

tryaieph/aieph es subagents para el ecosistema de Claude AI. 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. Tiene 1 estrellas en GitHub y su última actualización registrada es del 2026-09-12.

¿Cómo se instala aieph?

+

Puedes instalar aieph clonando el repositorio (https://github.com/tryaieph/aieph) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar tryaieph/aieph?

+

Nuestro agente de seguridad ha analizado tryaieph/aieph y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene tryaieph/aieph?

+

tryaieph/aieph es mantenido por tryaieph. La última actividad registrada en GitHub es del 2026-09-12, con 0 issues abiertos.

¿Hay alternativas a aieph?

+

Sí. En ClaudeWave puedes explorar subagents similares en /categories/agents, ordenados por popularidad o actividad reciente.

Despliega aieph en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: tryaieph/aieph
[![Featured on ClaudeWave](https://claudewave.com/api/badge/tryaieph-aieph)](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>

Más Subagents

Alternativas a aieph