cerebro
01marcodavidd020/cerebro-code-memory
Plugin Claude Code
Plugin marketplace listing 1 plugin: cerebro.
marcodavidd020/cerebro-code-memory
Plugin Claude Code
Plugin marketplace listing 1 plugin: cerebro.
marcodavidd020/cerebro-code-memory
Instructions file
Instructions for marcodavidd020/cerebro-code-memory, covering claude.md — cerebro, qué es, stack (verificado en pyproject.toml), convenciones (observadas en el código, respétalas) and cómo agregar una tool mcp nueva (patrón completo).
marcodavidd020/cerebro-code-memory
Plugin Claude Code
Persistent code-knowledge memory: an MCP brain that caches a codebase's structure and summaries so AI sessions query it instead of re-reading files. Bundles the MCP server, cerebro-first subagents, and session hooks.
marcodavidd020/cerebro-code-memory
MCP server Claude CodeCodexCursor +2
Persistent code-knowledge memory across AI chat sessions (MCP server). Runs locally from the cerebro-code-memory Python package.
marcodavidd020/cerebro-code-memory
Agent
Use BEFORE writing code for a feature or a new project — this is the design gate that prevents hallucinated work. It (1) grounds itself in the project's REAL standards (CLAUDE.md + Cerebro), (2) asks you in detail what functionality to include/design, and (3) returns a grounded spec/plan to approve. It does NOT write…
marcodavidd020/cerebro-code-memory
Agent
Use to ANSWER questions about an existing codebase — "where is X?", "how does Y work?", "what depends on Z?", "explain this module or flow" — WITHOUT spending tokens re-reading folders. Read-only navigator that queries the Cerebro brain first and only opens files when the brain has no/stale info. Use PROACTIVELY…
marcodavidd020/cerebro-code-memory
Agent
Use BEFORE a refactor or risky change to assess blast radius and architectural health, or to audit dead code and circular dependencies. Read-only. Answers "what breaks if I change X?", "is this safe to delete?", "where are the import cycles?", "which modules are most fragile?". Triggers (es): "qué riesgo tiene…
marcodavidd020/cerebro-code-memory
Agent
Use to IMPLEMENT a focused code change — fix a bug, add a small feature, refactor a function — once the goal is clear. Rebuilds context cheaply via Cerebro before editing, makes surgical changes that match surrounding code, verifies, then records what it learned and decided back into the brain. Triggers (es): "arregla…
marcodavidd020/cerebro-code-memory
Agent
Use to keep the Cerebro brain fresh and well-documented so future sessions stay cheap. Run after a work session, after a git pull / branch switch, or periodically: it syncs and reindexes changed files, finds important files lacking summaries, and records concise summaries plus loose decisions. Triggers (es)…
marcodavidd020/cerebro-code-memory
Hook
Runs when a session starts, executing session_start.py. From marcodavidd020/cerebro-code-memory.
marcodavidd020/cerebro-code-memory
Hook
Runs when a session ends, executing cerebro-session-end.py. From marcodavidd020/cerebro-code-memory.
marcodavidd020/cerebro-code-memory
Hook
Runs before the agent uses a tool for Bash, Grep and Glob tool calls, executing cerebro-first.py. From marcodavidd020/cerebro-code-memory.
marcodavidd020/cerebro-code-memory
Hook
Runs after a tool call finishes for Edit, Write, MultiEdit and mcp__cerebro__.* tool calls, executing post_edit.py, verify-edit.py and cerebro-mark-used.py (3 commands). From marcodavidd020/cerebro-code-memory.
marcodavidd020/cerebro-code-memory
Skill Claude CodeCodex
Use the Cerebro brain to understand a codebase cheaply instead of re-reading folders. Invoke when starting work on a project, when you need to understand what a file does or where something lives, or before exploring directories. Query cerebromap / cerebroget / cerebrosearch first; record what you learn with…