docs: document internal SDK package install #31

Merged
hongming merged 1 commits from docs/sdk-gitea-install into main 2026-05-24 04:13:23 +00:00
2 changed files with 18 additions and 0 deletions
+9
View File
@@ -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://<user>:<token>@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:
+9
View File
@@ -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://<user>:<token>@git.moleculesai.app/api/packages/molecule-ai/pypi/simple" \
molecule-ai-sdk==0.2.1
```
## 60-second example
```python