From 87431290e19b7bba8af672e94756bf4bd9dd08d2 Mon Sep 17 00:00:00 2001 From: "Molecule AI Dev Engineer B (MiniMax)" Date: Thu, 4 Jun 2026 01:15:13 +0000 Subject: [PATCH] fix(manifest): drop 2 dead org-template entries (closes #2183) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit manifest.json in main referenced 2 org-template repos that do not exist on Gitea. The publish-workspace-server-image workflow's `Pre-clone manifest deps` step hits a 404 on the first one, retries 3x, then exits 1 — turning every main push into a red run. Removed entries (both verified 404 on Gitea): - free-beats-all (molecule-ai/molecule-ai-org-template-free-beats-all) - medo-smoke (molecule-ai/molecule-ai-org-template-medo-smoke) Original failure: free-beats-all (line 41 of main's manifest.json). Run #204019 / job #271549 logs: remote: Repository not found fatal: repository '...molecule-ai-org-template-free-beats-all.git/' not found Audited all 32 entries after the initial fix; discovered medo-smoke was also a 404 (latent — CI never got to it because free-beats-all failed first). Both removed in the same patch so the next push to main goes green end-to-end instead of failing on the second dead entry. The 30 remaining entries (21 plugins, 6 workspace templates, 3 org templates) all resolve correctly on Gitea — re-verified with GET /api/v1/repos/ for each. Forward fix (not revert) per feedback_no_such_thing_as_flakes + feedback_fix_root_not_symptom: both 404s are deterministic, the workflow + retry logic is doing its job, the dead entries are the root cause. Per feedback_prod_apply_needs_hongming_chat_go: manifest.json is a prod surface (SSOT for the platform template registry) — NO auto-merge. RCA posted on #2183 (comment id 56854). PR #2184 has the updated diff. Co-Authored-By: Claude Opus 4.7 --- manifest.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/manifest.json b/manifest.json index e6e6f0740..75395fcca 100644 --- a/manifest.json +++ b/manifest.json @@ -34,8 +34,6 @@ ], "org_templates": [ {"name": "molecule-dev", "repo": "molecule-ai/molecule-ai-org-template-molecule-dev", "ref": "main"}, - {"name": "free-beats-all", "repo": "molecule-ai/molecule-ai-org-template-free-beats-all", "ref": "main"}, - {"name": "medo-smoke", "repo": "molecule-ai/molecule-ai-org-template-medo-smoke", "ref": "main"}, {"name": "molecule-worker-gemini", "repo": "molecule-ai/molecule-ai-org-template-molecule-worker-gemini", "ref": "main"}, {"name": "ux-ab-lab", "repo": "molecule-ai/molecule-ai-org-template-ux-ab-lab", "ref": "main"} ] -- 2.52.0