mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
093dab5f03
## Summary - Add comprehensive documentation to all MCP prompt modules - Enhance search prompt with detailed contextual output formatting - Implement consistent logging and docstring patterns across prompt utilities - Fix type checking in prompt modules ## Prompts Added/Enhanced - `search.py`: New formatted output with relevance scores, excerpts, and next steps - `recent_activity.py`: Enhanced with better metadata handling and documentation - `continue_conversation.py`: Improved context management ## Resources Added/Enhanced - `ai_assistant_guide`: Resource with description to give to LLM to understand how to use the tools ## Technical improvements - Added detailed docstrings to all prompt modules explaining their purpose and usage - Enhanced the search prompt with rich contextual output that helps LLMs understand results - Created a consistent pattern for formatting output across prompts - Improved error handling in metadata extraction - Standardized import organization and naming conventions - Fixed various type checking issues across the codebase This PR is part of our ongoing effort to improve the MCP's interaction quality with LLMs, making the system more helpful and intuitive for AI assistants to navigate knowledge bases. 🤖 Generated with [Claude Code](https://claude.ai/code) --------- Co-authored-by: phernandez <phernandez@basicmachines.co>
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
from basic_memory.mcp.prompts.json_canvas_spec import json_canvas_spec
|
|
from basic_memory.mcp.prompts.ai_assistant_guide import ai_assistant_guide
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_canvas_spec_resource_exists(app):
|
|
"""Test that the canvas spec resource exists and returns content."""
|
|
# Call the resource function
|
|
spec_content = json_canvas_spec()
|
|
|
|
# Verify basic characteristics of the content
|
|
assert spec_content is not None
|
|
assert isinstance(spec_content, str)
|
|
assert len(spec_content) > 0
|
|
|
|
# Verify it contains expected sections of the Canvas spec
|
|
assert "JSON Canvas Spec" in spec_content
|
|
assert "nodes" in spec_content
|
|
assert "edges" in spec_content
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_ai_assistant_guide_exists(app):
|
|
"""Test that the canvas spec resource exists and returns content."""
|
|
# Call the resource function
|
|
guide = ai_assistant_guide()
|
|
|
|
# Verify basic characteristics of the content
|
|
assert guide is not None
|
|
assert isinstance(guide, str)
|
|
assert len(guide) > 0
|
|
|
|
# Verify it contains expected sections of the Canvas spec
|
|
assert "# AI Assistant Guide" in guide
|