{"id":31758434,"url":"https://github.com/ceoweggo/corebrain","last_synced_at":"2025-10-09T20:25:25.576Z","repository":{"id":292905911,"uuid":"982280071","full_name":"ceoweggo/Corebrain","owner":"ceoweggo","description":"Corebrain is an SDK-based solution that allows developers to integrate natural language queries into relational and non-relational databases with AI interpretation and reuse the data obtained. ","archived":false,"fork":false,"pushed_at":"2025-06-05T07:34:58.000Z","size":382,"stargazers_count":3,"open_issues_count":4,"forks_count":9,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T10:47:30.311Z","etag":null,"topics":["artificial-intelligence","data-science","databases","extractor-app","python","schema-registry","sdk"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ceoweggo.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}},"created_at":"2025-05-12T16:34:15.000Z","updated_at":"2025-05-20T16:47:47.000Z","dependencies_parsed_at":"2025-05-12T19:24:26.102Z","dependency_job_id":"a22434ca-0bf3-4c90-87ca-a8872d5d3fb7","html_url":"https://github.com/ceoweggo/Corebrain","commit_stats":null,"previous_names":["ceoweggo/corebrain"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ceoweggo/Corebrain","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceoweggo%2FCorebrain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceoweggo%2FCorebrain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceoweggo%2FCorebrain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceoweggo%2FCorebrain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ceoweggo","download_url":"https://codeload.github.com/ceoweggo/Corebrain/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ceoweggo%2FCorebrain/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002013,"owners_count":26083258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["artificial-intelligence","data-science","databases","extractor-app","python","schema-registry","sdk"],"created_at":"2025-10-09T20:25:18.188Z","updated_at":"2025-10-09T20:25:25.570Z","avatar_url":"https://github.com/ceoweggo.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Corebrain\n\n![Version](https://img.shields.io/badge/version-0.1.0-blue)\n![Status](https://img.shields.io/badge/status-alpha-orange)\n![License](https://img.shields.io/badge/license-MIT-green)\n\n## What is Corebrain?\n\nCorebrain is an open-source enterprise solution designed to centralize and optimize corporate data management. The project offers a scalable architecture for processing, analyzing, and visualizing critical information for decision-making.\n\n**IMPORTANT NOTE**: In the current version (0.1.0-alpha), only the SQL code is functional. Other modules are under development.\n\n## Current Status\n\n- ✅ SQL queries for data extraction\n- ✅ Database schemas\n- ✅ Authentication service\n- ❌ NoSQL (in development)\n- ❌ Frontend (in development)\n- ❌ REST API (in development)\n\n## SDK Integration\nCorebrain provides SDKs for multiple programming languages, making it easy to integrate with your existing systems. While only SQL in Python functionality is currently available, this SDK will support all features and most common languages as they are developed.\n\n![Python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10-blue)\n\n## Available Versions\n\n- **`main` Branch**: Stable version with verified functionality (currently only SQL is functional)\n- **`pre-release` Branch**: Initial version with all features in development (may contain errors)\n\n## Getting Started\n\n### Installation\n\n```bash\n# Clone the repository\ngit clone https://github.com/your-organization/corebrain.git\n\n# Enter the directory\ncd corebrain\n\n# Install dependencies\nnpm install\n```\n\n### Configuration\n\n1. Use `corebrain --configure` to start the configuration.\n2. Once configuration has been completed, copy the config_id and replace in your example code (see 'examples' folder).\n3. Run the example code in Python and enjoy!\n\n### Basic Usage\n\n```bash\n# Run SQL migrations\nnpm run migrate\n\n# Start the SQL service\nnpm run sql:start\n```\n\n## Accessing the Pre-release Version\n\nIf you want to test all features under development (including unstable components), you can switch to the pre-release branch:\n\n```bash\ngit checkout pre-release\nnpm install\n```\n\n**Warning**: The pre-release version contains experimental features with bugs or unexpected behaviors. Not recommended for production environments.\n\n## Contributing\n\nCorebrain is an open-source project, and we welcome all contributions. To contribute:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/new-feature`)\n3. Make your changes\n4. Run tests (`npm test`)\n5. Commit your changes (`git commit -m 'Add new feature'`)\n6. Push to your fork (`git push origin feature/new-feature`)\n7. Open a Pull Request\n\nPlease read our [contribution guidelines](CONTRIBUTING.md) before you start.\n\n## Roadmap\n\n- **0.1.0**: Basic SQL operation. OpenAI connected. Authentication service Globodain SSO integrated. API Keys configuration integrated. \n- **0.2.0**: NoSQL (MongoDB) fixed. API Key creation by command \"Corebrain --configure\". Functional version.\n- **0.3.0**: API deployment and integration at source. Functional version for third parties.\n...\n- **1.0.0**: First stable version with all features.\n\nYou can see the full report at [Project Roadmap](https://github.com/users/ceoweggo/projects/4/views/2)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contact\n\n- **Email**: [ruben@globodain.com](mailto:ruben@globodain.com)\n- **Issues**: [Report a problem](https://github.com/ceoweggo/corebrain/issues)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceoweggo%2Fcorebrain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fceoweggo%2Fcorebrain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fceoweggo%2Fcorebrain/lists"}