{"id":35182612,"url":"https://github.com/contextfs/contextfs","last_synced_at":"2026-01-29T16:04:27.243Z","repository":{"id":328692945,"uuid":"1117173224","full_name":"contextfs/contextfs","owner":"contextfs","description":"Universal AI Memory Layer - Cross-client, cross-repo context management with RAG. Works with Claude Code, Claude Desktop, Gemini CLI, and any MCP client.","archived":false,"fork":false,"pushed_at":"2026-01-19T20:03:13.000Z","size":6015,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T22:05:32.315Z","etag":null,"topics":["ai","chromadb","claude","claude-code","context","gemini","gemini-cli","llm","mcp","memory","python","rag","semantic-search"],"latest_commit_sha":null,"homepage":"https://contextfs.ai","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/contextfs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-15T23:57:14.000Z","updated_at":"2026-01-19T20:03:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/contextfs/contextfs","commit_stats":null,"previous_names":["magnetonio/contextfs","contextfs/contextfs"],"tags_count":55,"template":false,"template_full_name":null,"purl":"pkg:github/contextfs/contextfs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contextfs%2Fcontextfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contextfs%2Fcontextfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contextfs%2Fcontextfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contextfs%2Fcontextfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/contextfs","download_url":"https://codeload.github.com/contextfs/contextfs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/contextfs%2Fcontextfs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28647502,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T21:29:11.980Z","status":"ssl_error","status_checked_at":"2026-01-21T21:24:31.872Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","chromadb","claude","claude-code","context","gemini","gemini-cli","llm","mcp","memory","python","rag","semantic-search"],"created_at":"2025-12-29T03:28:11.571Z","updated_at":"2026-01-29T16:04:27.235Z","avatar_url":"https://github.com/contextfs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ContextFS\n\n**Persistent Memory for AI Agents** - Give your AI tools memory that persists across sessions.\n\n[![PyPI](https://img.shields.io/pypi/v/contextfs)](https://pypi.org/project/contextfs/)\n[![CI](https://github.com/contextfs/contextfs/actions/workflows/ci.yml/badge.svg)](https://github.com/contextfs/contextfs/actions/workflows/ci.yml)\n[![Coverage](https://codecov.io/gh/contextfs/contextfs/branch/main/graph/badge.svg)](https://codecov.io/gh/contextfs/contextfs)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)\n\n**[Full Documentation](https://contextfs.ai/docs)** | **[Get Started](https://contextfs.ai)**\n\n## Install\n\n```bash\n# With pip\npip install contextfs\n\n# With uv (recommended)\nuv pip install contextfs\n\n# Run directly without installing\nuvx contextfs\n```\n\n## Quick Start\n\n```bash\n# Initialize your repo for indexing\ncontextfs index init\n\n# Save a memory\ncontextfs memory save \"Use PostgreSQL for database\" --type decision\n\n# Search memories\ncontextfs memory search \"database\"\n\n# Index your codebase for semantic search\ncontextfs index index\n```\n\n## MCP Integration\n\nAdd to your AI tool's MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"contextfs\": {\n      \"command\": \"uvx\",\n      \"args\": [\"contextfs\"]\n    }\n  }\n}\n```\n\n**Works with:** Claude Code, Claude Desktop, Cursor, VS Code, and any MCP-compatible client.\n\nSee [tool-specific setup guides](https://contextfs.ai/docs) for detailed instructions.\n\n## Key Features\n\n- **Semantic Search** - Find relevant memories using natural language\n- **Auto Code Indexing** - Index your entire codebase for context-aware AI\n- **Cross-Session Memory** - Decisions, facts, and patterns persist across conversations\n- **Multi-Tool Sync** - Share memory between Claude, Cursor, VS Code, and more\n\n## Python SDK\n\n```python\nfrom contextfs import ContextFS\n\nctx = ContextFS()\n\n# Save\nctx.save(\"Use JWT for auth\", type=\"decision\", tags=[\"auth\"])\n\n# Search\nresults = ctx.search(\"authentication\")\n```\n\n## Cloud Sync\n\nEnable cross-device memory sync:\n\n```bash\ncontextfs cloud login\ncontextfs cloud sync\n```\n\nSign up at [contextfs.ai](https://contextfs.ai) for cloud features.\n\n## Documentation\n\nVisit **[contextfs.ai/docs](https://contextfs.ai/docs)** for:\n- Installation guides for each AI tool\n- API reference\n- Memory types and best practices\n- Cloud sync setup\n\n## License\n\nMIT - Matthew Long and The YonedaAI Collaboration\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontextfs%2Fcontextfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontextfs%2Fcontextfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontextfs%2Fcontextfs/lists"}