From 2b18905805a7fd67044487e802aa2dc83827a4a2 Mon Sep 17 00:00:00 2001 From: core-devops Date: Sat, 23 May 2026 21:13:04 -0700 Subject: [PATCH] docs: document internal sdk package install --- README.md | 9 +++++++++ molecule_agent/README.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/README.md b/README.md index 1cde5e7..9088b14 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,15 @@ errors = validate_manifest("my-plugin/plugin.yaml") assert not errors, errors ``` +Install the current internal SDK release from Molecule's Gitea PyPI registry, +leaving PyPI as the dependency fallback: + +```bash +pip install \ + --extra-index-url "https://:@git.moleculesai.app/api/packages/molecule-ai/pypi/simple" \ + molecule-ai-sdk==0.2.1 +``` + ## CLI The SDK ships a CLI for validating Molecule AI artifacts before publishing: diff --git a/molecule_agent/README.md b/molecule_agent/README.md index 32b0b59..42545a2 100644 --- a/molecule_agent/README.md +++ b/molecule_agent/README.md @@ -32,6 +32,15 @@ in-workspace-runtime authoring guide. pip install molecule-ai-sdk # ships molecule_plugin + molecule_agent ``` +For the current internal release, install from Molecule's Gitea PyPI registry +with PyPI left as the dependency fallback: + +```bash +pip install \ + --extra-index-url "https://:@git.moleculesai.app/api/packages/molecule-ai/pypi/simple" \ + molecule-ai-sdk==0.2.1 +``` + ## 60-second example ```python -- 2.52.0