molecule-ai-workspace-templ.../requirements.txt
Hongming Wang 7f9b2b4189 feat: add adapter code + Dockerfile for standalone deployment
Adapters extracted from molecule-monorepo/workspace-template.
Uses molecule-ai-workspace-runtime PyPI package for shared infrastructure.

- adapter.py — runtime-specific adapter class
- requirements.txt — runtime-specific deps + molecule-ai-workspace-runtime
- Dockerfile — FROM python:3.11-slim, pip install, COPY adapter, molecule-runtime entrypoint
- ADAPTER_MODULE=adapter tells the runtime to load this repo's Adapter class

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

9 lines
391 B
Plaintext

# Molecule AI workspace runtime — shared infrastructure
molecule-ai-workspace-runtime>=0.1.0
# Claude Code adapter specific deps
# Claude Agent SDK — programmatic API to Claude Code engine.
# Replaces CLI subprocess approach (no more --print, --resume, json parsing).
# The Claude Code CLI is still pre-installed via npm because the SDK uses it under the hood.
claude-agent-sdk>=0.1.58