{"id":41735426,"url":"https://github.com/mloda-ai/mloda-plugin-template","last_synced_at":"2026-02-03T22:14:36.716Z","repository":{"id":334396713,"uuid":"1140633519","full_name":"mloda-ai/mloda-plugin-template","owner":"mloda-ai","description":"Template repository for plugin creation for mloda.ai ","archived":false,"fork":false,"pushed_at":"2026-02-01T11:12:22.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-01T20:58:30.587Z","etag":null,"topics":["add-in","community-driven","data-engineering","extension","feature-engineering","llm","llmops","mloda","mloda-registry","mlops","plugin-framework","python","template"],"latest_commit_sha":null,"homepage":"https://github.com/mloda-ai/mloda","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mloda-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":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-23T14:53:32.000Z","updated_at":"2026-02-01T11:12:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mloda-ai/mloda-plugin-template","commit_stats":null,"previous_names":["mloda-ai/mloda-plugin-template"],"tags_count":4,"template":true,"template_full_name":null,"purl":"pkg:github/mloda-ai/mloda-plugin-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mloda-ai%2Fmloda-plugin-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mloda-ai%2Fmloda-plugin-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mloda-ai%2Fmloda-plugin-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mloda-ai%2Fmloda-plugin-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mloda-ai","download_url":"https://codeload.github.com/mloda-ai/mloda-plugin-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mloda-ai%2Fmloda-plugin-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29059443,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T20:13:53.544Z","status":"ssl_error","status_checked_at":"2026-02-03T20:13:40.507Z","response_time":96,"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":["add-in","community-driven","data-engineering","extension","feature-engineering","llm","llmops","mloda","mloda-registry","mlops","plugin-framework","python","template"],"created_at":"2026-01-25T00:01:02.923Z","updated_at":"2026-02-03T22:14:36.710Z","avatar_url":"https://github.com/mloda-ai.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/mloda-ai/mloda-plugin-template/blob/main/LICENSE)\n[![mloda](https://img.shields.io/badge/built%20with-mloda-blue.svg)](https://github.com/mloda-ai/mloda)\n[![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/)\n\n# mloda-plugin-template\n\n\u003e **A GitHub template for creating standalone mloda plugins.** Part of the [mloda](https://github.com/mloda-ai/mloda) ecosystem for open data access. Visit [mloda.ai](https://mloda.ai) for an overview and business context, the [GitHub repository](https://github.com/mloda-ai/mloda) for technical context, or the [documentation](https://mloda-ai.github.io/mloda/) for detailed guides.\n\nCreate your own FeatureGroups, ComputeFrameworks, and Extenders as standalone packages. See the [Getting Started guide](docs/getting-started.md) to create your repository, then follow the setup steps below.\n\n## Related Repositories\n\n- **[mloda](https://github.com/mloda-ai/mloda)**: The core library for open data access. Declaratively define what data you need, not how to get it. mloda handles feature resolution, dependency management, and compute framework abstraction automatically.\n\n- **[mloda-registry](https://github.com/mloda-ai/mloda-registry)**: The central hub for discovering and sharing mloda plugins. Browse community-contributed FeatureGroups, find integration guides, and publish your own plugins for others to use.\n\n## Structure\n\n```\nplaceholder/\n├── feature_groups/\n│   └── my_plugin/\n│       ├── __init__.py           # Package exports\n│       ├── my_feature_group.py   # Example FeatureGroup implementation\n│       └── tests/\n│           └── test_my_feature_group.py\n├── compute_frameworks/\n│   └── my_framework/\n│       ├── __init__.py\n│       └── my_compute_framework.py\n└── extenders/\n    └── my_extender/\n        ├── __init__.py\n        └── my_extender.py\n```\n\n## Key Files\n\n- `placeholder/` - Root namespace (users rename to company name)\n- `pyproject.toml` - Package config (users edit directly, not auto-generated)\n- `.github/workflows/test.yml` - CI workflow running pytest\n\n## Common Tasks\n\n### Setup Your Plugin\n\nFollow these steps to customize the template for your organization:\n\n#### 1. Rename the directory\n\n```bash\nmv placeholder acme\n```\n\n#### 2. Update pyproject.toml\n\nEdit the following fields in `pyproject.toml`:\n\n- `name`: Change `\"placeholder-my-plugin\"` to `\"acme-my-plugin\"`\n- `authors`: Update name and email\n- `description`: Update to describe your plugin\n- `tool.setuptools.packages.find.include`: Change `[\"placeholder*\"]` to `[\"acme*\"]`\n- `tool.pytest.ini_options.testpaths`: Change `[\"placeholder\", \"tests\"]` to `[\"acme\", \"tests\"]`\n\n#### 3. Update Python imports\n\nUpdate imports in these files (change `from placeholder.` to `from acme.`):\n\n- `acme/feature_groups/my_plugin/__init__.py`\n- `acme/feature_groups/my_plugin/tests/test_my_feature_group.py`\n- `acme/compute_frameworks/my_plugin/__init__.py`\n- `acme/compute_frameworks/my_plugin/tests/test_my_compute_framework.py`\n- `acme/extenders/my_plugin/__init__.py`\n- `acme/extenders/my_plugin/tests/test_my_extender.py`\n\n#### 4. Verify setup\n\n```bash\nuv venv \u0026\u0026 source .venv/bin/activate \u0026\u0026 uv pip install -e \".[dev]\" \u0026\u0026 tox\n```\n\n### Development Setup with uv\n\n**Install uv** (if not already installed):\n```bash\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n```\n\n**Create virtual environment and install dependencies:**\n```bash\nuv venv\nsource .venv/bin/activate\nuv pip install -e \".[dev]\"\n```\n\n**Run all checks with tox:**\n```bash\n# Install tox with uv backend\nuv tool install tox --with tox-uv\n\n# Run all checks (pytest, ruff, mypy, bandit)\ntox\n```\n\n### Run individual checks\n\n```bash\n# Tests only\npytest\n\n# Format check\nruff format --check --line-length 120 .\n\n# Lint check\nruff check .\n\n# Type check\nmypy --strict --ignore-missing-imports .\n\n# Security check\nbandit -c pyproject.toml -r -q .\n```\n\n## Related Documentation\n\nGuides for plugin development can be found in mloda-registry:\n\n- https://github.com/mloda-ai/mloda-registry/tree/main/docs/guides/\n\nThis template includes pre-configured GitHub Actions workflows for testing, security scanning, and automated releases. See the [GitHub Workflows documentation](docs/github-workflows.md) for setup instructions and required secrets.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmloda-ai%2Fmloda-plugin-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmloda-ai%2Fmloda-plugin-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmloda-ai%2Fmloda-plugin-template/lists"}