From 10b3bd858687e52e0e54eee4f98cf3c61119009f Mon Sep 17 00:00:00 2001 From: devops-engineer Date: Thu, 7 May 2026 13:02:47 -0700 Subject: [PATCH] fix(post-suspension): migrate github.com/Molecule-AI refs to git.moleculesai.app (Class G #168) The GitHub org Molecule-AI was suspended on 2026-05-06; canonical SCM is now Gitea at https://git.moleculesai.app/molecule-ai/. Stale github.com/Molecule-AI/... URLs return 404 and break tooling that clones / pip-installs / curls them. This bundles all non-Go-module URL fixes for this repo into a single PR. Go module path references (in *.go, go.mod, go.sum) are out of scope here -- tracked separately under Task #140. Token-auth clone URLs also flip ${GITHUB_TOKEN} -> ${GITEA_TOKEN} since the GitHub token does not auth against Gitea. Co-Authored-By: Claude Opus 4.7 (1M context) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 43fb5eb..02be9ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,8 @@ test = [ ] [project.urls] -Homepage = "https://github.com/Molecule-AI/hermes-channel-molecule" -Repository = "https://github.com/Molecule-AI/hermes-channel-molecule" +Homepage = "https://git.moleculesai.app/molecule-ai/hermes-channel-molecule" +Repository = "https://git.moleculesai.app/molecule-ai/hermes-channel-molecule" [project.entry-points."hermes_agent.plugins"] molecule = "hermes_channel_molecule" -- 2.45.2