Skip to main content
Glama

Continuo Memory System

by GtOkAi
fix_lint.sh903 B
#!/bin/bash # Script to fix linting issues automatically set -e echo "🔧 Fixing linting issues..." echo "" # Check if ruff is installed if ! command -v ruff &> /dev/null; then echo "📦 Installing ruff..." pip install ruff fi # Fix safe issues echo "✅ Applying safe fixes..." ruff check --fix continuo/ examples/ tests/ # Fix unsafe issues (with confirmation) echo "" echo "⚠️ The following requires unsafe fixes (imports reordering, etc):" echo "" ruff check --unsafe-fixes continuo/ examples/ tests/ --statistics || true echo "" read -p "Apply unsafe fixes? (y/N) " -n 1 -r echo "" if [[ $REPLY =~ ^[Yy]$ ]]; then echo "🔧 Applying unsafe fixes..." ruff check --fix --unsafe-fixes continuo/ examples/ tests/ fi # Format code echo "" echo "🎨 Formatting code with black..." black continuo/ examples/ tests/ echo "" echo "✅ Done! Review changes with: git diff"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/GtOkAi/continuo-memory-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server