From af06c1e702d695a6432700bce5320d705ccbb971 Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Thu, 16 Apr 2026 02:48:08 +0000 Subject: [PATCH] feat(template): add molecule-skill-llm-judge to Backend + Frontend Engineer (#310) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backend Engineer and Frontend Engineer were missing molecule-skill-llm-judge while Dev Lead, QA Engineer, and Security Auditor already have it. llm-judge lets engineers self-gate their PR against the issue body before requesting review, catching 'shipped the wrong thing' before Dev Lead sees it. No new plugins needed — already installed org-wide. Closes #310 --- org-templates/molecule-dev/org.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/org-templates/molecule-dev/org.yaml b/org-templates/molecule-dev/org.yaml index d8b17beb..5ff432a5 100644 --- a/org-templates/molecule-dev/org.yaml +++ b/org-templates/molecule-dev/org.yaml @@ -483,7 +483,9 @@ workspaces: files_dir: frontend-engineer # #280: self-review rubric before raising a PR. Dev Lead uses # the same rubric, so catching issues here cuts the review loop. - plugins: [molecule-skill-code-review] + # #310: molecule-skill-llm-judge — gate own PR against issue body + # before requesting review ("shipped the wrong thing" early catch). + plugins: [molecule-skill-code-review, molecule-skill-llm-judge] initial_prompt: | You just started as Frontend Engineer. Set up silently — do NOT contact other agents. 1. Clone the repo: git clone https://github.com/${GITHUB_REPO}.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) @@ -515,7 +517,8 @@ workspaces: # #303: molecule-security-scan — CVE gate at dev time, not # just at Security Auditor's 12h cron. Catches supply-chain # deps + secret patterns before they reach PR review. - plugins: [molecule-hitl, molecule-skill-code-review, molecule-security-scan] + # #310: molecule-skill-llm-judge — self-gate before PR review. + plugins: [molecule-hitl, molecule-skill-code-review, molecule-security-scan, molecule-skill-llm-judge] initial_prompt: | You just started as Backend Engineer. Set up silently — do NOT contact other agents. 1. Clone the repo: git clone https://github.com/${GITHUB_REPO}.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull)