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>
7 lines
251 B
Python
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"]
|