From c71bd04cf1463c37e9f840439a8a58d73ba85c46 Mon Sep 17 00:00:00 2001 From: Hongming Wang Date: Wed, 15 Apr 2026 19:57:34 -0700 Subject: [PATCH] fix(template): Telegram channel for Security Auditor + DevOps Engineer (#246 #247) Closes #246 Closes #247 Critical security findings and CI build-break alerts are now pushed via Telegram instead of waiting for someone to manually check memory/logs. --- org-templates/molecule-dev/org.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/org-templates/molecule-dev/org.yaml b/org-templates/molecule-dev/org.yaml index 5ff432a5..ba1f701f 100644 --- a/org-templates/molecule-dev/org.yaml +++ b/org-templates/molecule-dev/org.yaml @@ -551,6 +551,14 @@ workspaces: # #280: molecule-skill-code-review — self-review rubric for # Dockerfiles, CI workflows, infra scripts before PR. plugins: [molecule-hitl, molecule-skill-code-review] + # #247: notify on build-break — DevOps routes CI failures + infra + # alerts via Telegram so they're not invisible until morning review. + channels: + - type: telegram + config: + bot_token: ${TELEGRAM_BOT_TOKEN} + chat_id: ${TELEGRAM_CHAT_ID} + enabled: true initial_prompt: | You just started as DevOps 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) @@ -625,6 +633,15 @@ workspaces: - molecule-skill-llm-judge - molecule-security-scan - molecule-hitl + # #246: notify on critical findings — Security Auditor pushes HIGH+ + # severity alerts via Telegram so they're not invisible until next + # manual memory check. + channels: + - type: telegram + config: + bot_token: ${TELEGRAM_BOT_TOKEN} + chat_id: ${TELEGRAM_CHAT_ID} + enabled: true initial_prompt: | You just started as Security Auditor. 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)