{"id":39937474,"url":"https://github.com/coreason-ai/coreason-catalog","last_synced_at":"2026-01-27T15:02:40.467Z","repository":{"id":331822073,"uuid":"1132038602","full_name":"CoReason-AI/coreason-catalog","owner":"CoReason-AI","description":"coreason-atlas","archived":false,"fork":false,"pushed_at":"2026-01-18T15:55:51.000Z","size":175,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-18T16:33:48.072Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CoReason-AI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"NOTICE","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-11T07:32:39.000Z","updated_at":"2026-01-11T07:37:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/CoReason-AI/coreason-catalog","commit_stats":null,"previous_names":["coreason-ai/coreason-catalog"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/CoReason-AI/coreason-catalog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoReason-AI%2Fcoreason-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoReason-AI%2Fcoreason-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoReason-AI%2Fcoreason-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoReason-AI%2Fcoreason-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CoReason-AI","download_url":"https://codeload.github.com/CoReason-AI/coreason-catalog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoReason-AI%2Fcoreason-catalog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28815385,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: 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":[],"created_at":"2026-01-18T19:00:44.726Z","updated_at":"2026-01-27T15:02:40.439Z","avatar_url":"https://github.com/CoReason-AI.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# coreason-catalog\n\n**Dynamic Registry and Routing Plane for the CoReason Ecosystem**\n\n`coreason-catalog` serves as the \"Cartographer\" and active gateway for the CoReason data mesh. It enables agents to discover data sources based on semantic meaning and enforces data sovereignty policies at query time.\n\n**Core Philosophy:** \"The Map controls the Territory. Route by Meaning, Filter by Policy.\"\n\n## Documentation\n\nFull documentation is available in the `docs/` folder:\n\n-   **[Home](docs/index.md)**\n-   **[Product Requirements (PRD)](docs/prd.md)**\n-   **[Architecture](docs/architecture.md)**\n-   **[Usage Guide](docs/usage.md)**\n[![CI/CD](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/ci-cd.yml)\n[![Docker](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/docker.yml/badge.svg)](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/docker.yml)\n[![Publish](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/publish.yml/badge.svg)](https://github.com/CoReason-AI/coreason_catalog/actions/workflows/publish.yml)\n[![PyPI version](https://img.shields.io/pypi/v/coreason_catalog.svg)](https://pypi.org/project/coreason_catalog/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/coreason_catalog.svg)](https://pypi.org/project/coreason_catalog/)\n[![codecov](https://codecov.io/gh/CoReason-AI/coreason_catalog/branch/main/graph/badge.svg)](https://codecov.io/gh/CoReason-AI/coreason_catalog)\n[![License](https://img.shields.io/badge/license-Prosperity_3.0-blue)](LICENSE)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit\u0026logoColor=white)](https://github.com/pre-commit/pre-commit)\n\n## Getting Started\n\n### Prerequisites\n\n-   Python 3.12+\n-   Poetry\n\n### Installation\n\n1.  Clone the repository:\n    ```bash\n    git clone https://github.com/CoReason-AI/coreason_catalog.git\n    cd coreason_catalog\n    ```\n2.  Install dependencies:\n    ```bash\n    poetry install\n    ```\n\n### Running the Server\n\nTo start the catalog server locally:\n\n```bash\npoetry run uvicorn coreason_catalog.main:app --reload\n```\n\n### Development\n\n-   Run the linter:\n    ```bash\n    poetry run pre-commit run --all-files\n    ```\n-   Run the tests:\n    ```bash\n    poetry run pytest\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoreason-ai%2Fcoreason-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoreason-ai%2Fcoreason-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoreason-ai%2Fcoreason-catalog/lists"}