Feature

Context Memory

Give the AI persistent knowledge about your project. Write instructions once and they're injected into every task execution automatically.

What Is Context Memory?

Context Memory is a per-project Markdown field where you write instructions, conventions, architecture notes, or any context that should be shared with the AI across all task executions.

Think of it as a .vibe-memory.md file that the AI reads before starting every task.

Without context memory, the AI treats each task in isolation. With it, the AI has shared understanding that carries across all tasks in the project.

What to Include

Architecture & Structure

Folder structure, design patterns, where models/controllers/views live, database conventions.

Coding Conventions

Naming conventions, preferred libraries, how to handle errors, logging patterns, rules about what not to do.

Tech Stack Details

Specific versions, ORMs, authentication methods, API patterns, state management, CSS framework details.

Business Logic

User roles, permission systems, pricing logic, workflow rules, validation constraints.

Example Context Memory

.vibe-memory.md
# Project Context
Laravel 11, Vue 3, Inertia.js SaaS app.
## Conventions
- Use Form Requests for validation
- Use Tailwind CSS, never inline styles
- Keep controllers thin, use Services
## Database
- UUID primary keys, all tables soft delete