Convex Agents Context

Customize LLM context for Convex agents with configurable memory and filtering.

1|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/AbrahamX3/hivio --skill convex-agents-context-abrahamx3
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Convex Agents Context
Source: https://github.com/AbrahamX3/hivio/tree/main/.cursor/skills/convex-agents-context
Command: npx skills add https://github.com/AbrahamX3/hivio --skill convex-agents-context-abrahamx3

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Customizes what information the LLM receives for each generation, enabling granular control over memory, history, and cross-thread context.

Core Features & Use Cases

  • Custom context handlers for per-call context customization (memory injection, filtered conversations, and summarization).
  • Cross-thread search and selective memory embedding to improve relevance without leaking sensitive data.
  • Simple, declarative configuration for per-prompt context options and deterministic behavior.

Quick Start

Configure a new Agent with a custom context handler and test how recent messages influence responses.

Frequently Asked Questions about Convex Agents Context

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

FAQPage Schema
How do I customize LLM context for Convex agents to control memory injection?

You can customize LLM context for Convex agents by configuring custom context handlers that manage memory injection and filter recent messages. This allows granular control over exactly what information the model receives during each generation.

Can I implement cross-thread search for AI agents without leaking sensitive data?

Yes, cross-thread search can be implemented alongside selective memory embedding to improve response relevance. This approach ensures context retrieval remains auditable and prevents sensitive data from leaking across separate conversation threads.

What is the best way to override LLM context patterns on a per-prompt basis?

The best way to override LLM context per prompt is through declarative configuration of context options. This establishes deterministic behavior and safe defaults, ensuring the model only sees the specific information required for that individual call.

How do I set up custom context handlers for filtering conversations in Convex agents?

Set up custom context handlers by configuring a new Agent with a handler that filters recent messages and applies summarization. You can then test how these filtered conversations influence the model's responses.

Does configuring per-call context overrides require manual memory management?

No, per-call context overrides automate the customization process so you do not need manual memory management. The system applies default options and configurable context patterns automatically to ensure safe, auditable behavior.