Memory-Context Alignment Layer for Goal-Coherent AI Agents
Project description
MCAL: Memory-Context Alignment Layer
Intent-Preserving Memory for Goal-Coherent AI Agents
Why MCAL?
Current AI memory systems store facts but lose meaning:
| What's Stored | What's Lost |
|---|---|
| "User chose PostgreSQL" | WHY they chose it over MongoDB |
| "User wants to visit Japan" | HOW this fits their overall travel goals |
MCAL preserves the reasoning behind decisions, not just the conclusions.
Installation
pip install mcal-ai
Framework integrations:
pip install mcal-ai-langgraph # LangGraph integration
pip install mcal-ai-crewai # CrewAI integration
pip install mcal-ai-autogen # AutoGen integration
Quick Start
import asyncio
from mcal import MCAL
async def main():
mcal = MCAL(
llm_provider="anthropic", # or "openai", "bedrock"
embedding_provider="openai", # or "bedrock"
)
messages = [
{"role": "user", "content": "I'm building a fraud detection pipeline"},
{"role": "assistant", "content": "Let's start with data ingestion..."},
{"role": "user", "content": "I chose PostgreSQL over MongoDB for storage"},
]
# Extract goals, decisions, and reasoning
result = await mcal.add(messages, user_id="user_123")
print(f"Extracted {result.unified_graph.node_count} nodes")
# Search with goal-aware retrieval
results = await mcal.search("What database?", user_id="user_123")
# Get context for LLM prompts
context = mcal.get_context("What's next?", user_id="user_123")
asyncio.run(main())
Key Features
- Intent Graph - Hierarchical goal structures (Mission → Goal → Task)
- Reasoning Chains - Store WHY decisions were made, not just conclusions
- Goal-Aware Retrieval - Retrieve based on objective alignment, not just similarity
- Multi-Provider - Works with Anthropic, OpenAI, and AWS Bedrock
- Standalone - No external dependencies, JSON file persistence
Environment Variables
# Choose your LLM provider
ANTHROPIC_API_KEY=sk-ant-... # For Claude
OPENAI_API_KEY=sk-... # For GPT-4 / embeddings
# Optional: AWS Bedrock
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...
AWS_DEFAULT_REGION=us-east-1
Documentation
License
MIT License - see LICENSE for details.
Author
Created by Shiva Koreddi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcal_ai-0.2.2.tar.gz.
File metadata
- Download URL: mcal_ai-0.2.2.tar.gz
- Upload date:
- Size: 63.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e52deda5b01256153104e30842713ad934b5774384ad494d84e6aebcaf897dc0
|
|
| MD5 |
38d7b1b1360e01690c5fd5d5d45939ed
|
|
| BLAKE2b-256 |
4cc01792d7e73603c065849d8df326e32f03f6acee632f258a7d044c71d7bff8
|
File details
Details for the file mcal_ai-0.2.2-py3-none-any.whl.
File metadata
- Download URL: mcal_ai-0.2.2-py3-none-any.whl
- Upload date:
- Size: 68.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccc53a705f6cadf3efa66f53ca9ac396579eaa157278f8d05f316a9eca858650
|
|
| MD5 |
a4a37910793cf66468d95169920ec866
|
|
| BLAKE2b-256 |
be8f852c783f13867a2d5899df8743332e67af59a2554e55bc96a2be00e3fb06
|