molecule-ai-workspace-runtime/molecule_runtime/__init__.py
Hongming Wang 851a6d7bfd feat: initial release of molecule-ai-workspace-runtime 0.1.0
Extracts shared workspace runtime from molecule-monorepo/workspace-template
into a publishable PyPI package.

- molecule_runtime/ package with all shared infrastructure modules
- Adapter discovery via ADAPTER_MODULE env var (standalone repos) + built-in scan
- molecule-runtime console script entry point (main_sync)
- CI workflow to publish on version tags
- Published to PyPI as molecule-ai-workspace-runtime==0.1.0

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 04:26:06 -07:00

7 lines
251 B
Python

"""Molecule AI workspace runtime — shared infrastructure for all agent adapters."""
from molecule_runtime.adapters.base import BaseAdapter, AdapterConfig, SetupResult
__version__ = "0.1.0"
__all__ = ["BaseAdapter", "AdapterConfig", "SetupResult"]