본문으로 건너뛰기

자동화 템플릿

일반적인 자동화 패턴에 대한 레시피를 복사하여 붙여넣으세요. 각 템플릿은 시간 기반 트리거에 Hermes에 내장된 cron 스케줄러를 사용하고 이벤트 기반 트리거에 웹후크 플랫폼을 사용합니다.

모든 템플릿은 단일 제공자에 국한되지 않고 모든 모델에서 작동합니다.

Three Trigger Types
트리거어떻게도구
일정케이던스에 따라 실행(매시간, 밤마다, 매주)cronjob 도구 또는 /cron 슬래시 명령
GitHub 이벤트PR 열기, 푸시, 문제, CI 결과 발생 시 발생웹훅 플랫폼(hermes webhook subscribe)
API 호출외부 서비스가 JSON을 엔드포인트에 게시합니다.웹훅 플랫폼(config.yaml 경로 또는 hermes webhook subscribe)

세 가지 모두 Telegram, Discord, Slack, SMS, 이메일, GitHub 댓글 또는 로컬 파일로의 전달을 지원합니다.


개발 워크플로

야간 백로그 분류

매일 밤 새로운 문제에 라벨을 붙이고 우선순위를 정하고 요약합니다. 팀 채널에 다이제스트를 전달합니다.

트리거: 일정(밤마다)

hermes cron create "0 2 * * *" \
"You are a project manager triaging the NousResearch/hermes-agent GitHub repo.

1. Run: gh issue list --repo NousResearch/hermes-agent --state open --json number,title,labels,author,createdAt --limit 30
2. Identify issues opened in the last 24 hours
3. For each new issue:
- Suggest a priority label (P0-critical, P1-high, P2-medium, P3-low)
- Suggest a category label (bug, feature, docs, security)
- Write a one-line triage note
4. Summarize: total open issues, new today, breakdown by priority

Format as a clean digest. If no new issues, respond with [SILENT]." \
--name "Nightly backlog triage" \
--deliver telegram

자동 PR 코드 검토

모든 끌어오기 요청이 열리면 자동으로 검토합니다. PR에 직접 리뷰 댓글을 게시합니다.

트리거: GitHub 웹훅

옵션 A - 동적 구독(CLI):

hermes webhook subscribe github-pr-review \
--events "pull_request" \
--prompt "Review this pull request:
Repository: {repository.full_name}
PR #{pull_request.number}: {pull_request.title}
Author: {pull_request.user.login}
Action: {action}
Diff URL: {pull_request.diff_url}

Fetch the diff with: curl -sL {pull_request.diff_url}

Review for:
- Security issues (injection, auth bypass, secrets in code)
- Performance concerns (N+1 queries, unbounded loops, memory leaks)
- Code quality (naming, duplication, error handling)
- Missing tests for new behavior

Post a concise review. If the PR is a trivial docs/typo change, say so briefly." \
--skill github-code-review \
--deliver github_comment

옵션 B — 정적 경로(config.yaml):

platforms:
webhook:
enabled: true
extra:
port: 8644
secret: "your-global-secret"
routes:
github-pr-review:
events: ["pull_request"]
secret: "github-webhook-secret"
prompt: |
Review PR #{pull_request.number}: {pull_request.title}
Repository: {repository.full_name}
Author: {pull_request.user.login}
Diff URL: {pull_request.diff_url}
Review for security, performance, and code quality.
skills: ["github-code-review"]
deliver: "github_comment"
deliver_extra:
repo: "{repository.full_name}"
pr_number: "{pull_request.number}"

그런 다음 GitHub에서: 설정 → 웹훅 → 웹훅 추가→ 페이로드 URL: http://your-server:8644/webhooks/github-pr-review, 콘텐츠 유형: application/json, 비밀: github-webhook-secret, 이벤트:풀 요청.

문서 드리프트 감지

문서 업데이트가 필요한 API 변경 사항을 찾기 위해 병합된 PR을 매주 스캔합니다.

트리거: 일정(매주)

hermes cron create "0 9 * * 1" \
"Scan the NousResearch/hermes-agent repo for documentation drift.

1. Run: gh pr list --repo NousResearch/hermes-agent --state merged --json number,title,files,mergedAt --limit 30
2. Filter to PRs merged in the last 7 days
3. For each merged PR, check if it modified:
- Tool schemas (tools/*.py) — may need docs/reference/tools-reference.md update
- CLI commands (hermes_cli/commands.py, hermes_cli/main.py) — may need docs/reference/cli-commands.md update
- Config options (hermes_cli/config.py) — may need docs/user-guide/configuration.md update
- Environment variables — may need docs/reference/environment-variables.md update
4. Cross-reference: for each code change, check if the corresponding docs page was also updated in the same PR

Report any gaps where code changed but docs didn't. If everything is in sync, respond with [SILENT]." \
--name "Docs drift detection" \
--deliver telegram

종속성 보안 감사

프로젝트 종속성의 알려진 취약점을 매일 검사합니다.

트리거: 일정(매일)

hermes cron create "0 6 * * *" \
"Run a dependency security audit on the hermes-agent project.

1. cd ~/.hermes/hermes-agent && source.venv/bin/activate
2. Run: pip audit --format json 2>/dev/null || pip audit 2>&1
3. Run: npm audit --json 2>/dev/null (in website/ directory if it exists)
4. Check for any CVEs with CVSS score >= 7.0

If vulnerabilities found:
- List each one with package name, version, CVE ID, severity
- Check if an upgrade is available
- Note if it's a direct dependency or transitive

If no vulnerabilities, respond with [SILENT]." \
--name "Dependency audit" \
--deliver telegram

DevOps 및 모니터링

검증 배포

배포할 때마다 연기 테스트를 시작합니다. 배포가 완료되면 CI/CD 파이프라인이 웹후크에 게시됩니다.

트리거: API 호출(웹훅)

hermes webhook subscribe deploy-verify \
--events "deployment" \
--prompt "A deployment just completed:
Service: {service}
Environment: {environment}
Version: {version}
Deployed by: {deployer}

Run these verification steps:
1. Check if the service is responding: curl -s -o /dev/null -w '%{http_code}' {health_url}
2. Search recent logs for errors: check the deployment payload for any error indicators
3. Verify the version matches: curl -s {health_url}/version

Report: deployment status (healthy/degraded/failed), response time, any errors found.
If healthy, keep it brief. If degraded or failed, provide detailed diagnostics." \
--deliver telegram

CI/CD 파이프라인이 이를 트리거합니다.

curl -X POST http://your-server:8644/webhooks/deploy-verify \
-H "Content-Type: application/json" \
-H "X-Hub-Signature-256: sha256=$(echo -n '{"service":"api","environment":"prod","version":"2.1.0","deployer":"ci","health_url":"https://api.example.com/health"}' | openssl dgst -sha256 -hmac 'your-secret' | cut -d' ' -f2)" \
-d '{"service":"api","environment":"prod","version":"2.1.0","deployer":"ci","health_url":"https://api.example.com/health"}'

경고 분류

모니터링 경고를 최근 변경 사항과 연관시켜 대응 초안을 작성하세요. Datadog, PagerDuty, Grafana 또는 JSON을 게시할 수 있는 모든 경고 시스템과 함께 작동합니다.

트리거: API 호출(웹훅)

hermes webhook subscribe alert-triage \
--prompt "Monitoring alert received:
Alert: {alert.name}
Severity: {alert.severity}
Service: {alert.service}
Message: {alert.message}
Timestamp: {alert.timestamp}

Investigate:
1. Search the web for known issues with this error pattern
2. Check if this correlates with any recent deployments or config changes
3. Draft a triage summary with:
- Likely root cause
- Suggested first response steps
- Escalation recommendation (P1-P4)

Be concise. This goes to the on-call channel." \
--deliver slack

가동시간 모니터

30분마다 엔드포인트를 확인하세요. 문제가 발생한 경우에만 알림을 받습니다.

트리거: 일정(30분마다)

import urllib.request, json, time

ENDPOINTS = [
{"name": "API", "url": "https://api.example.com/health"},
{"name": "Web", "url": "https://www.example.com"},
{"name": "Docs", "url": "https://docs.example.com"},
]

results =
for ep in ENDPOINTS:
try:
start = time.time()
req = urllib.request.Request(ep["url"], headers={"User-Agent": "Hermes-Monitor/1.0"})
resp = urllib.request.urlopen(req, timeout=10)
elapsed = round((time.time() - start) * 1000)
results.append({"name": ep["name"], "status": resp.getcode(), "ms": elapsed})
except Exception as e:
results.append({"name": ep["name"], "status": "DOWN", "error": str(e)})

down = [r for r in results if r.get("status") == "DOWN" or (isinstance(r.get("status"), int) and r["status"] >= 500)]
if down:
print("OUTAGE DETECTED")
for r in down:
print(f" {r['name']}: {r.get('error', f'HTTP {r[\"status\"]}')} ")
print(f"\nAll results: {json.dumps(results, indent=2)}")
else:
print("NO_ISSUES")
````bash
hermes cron create "every 30m" \
"If the script reports OUTAGE DETECTED, summarize which services are down and suggest likely causes. If NO_ISSUES, respond with [SILENT]." \
--script ~/.hermes/scripts/check-uptime.py \
--name "Uptime monitor" \
--deliver telegram

연구 및 정보

경쟁적인 저장소 스카우트

흥미로운 PR, 기능 및 아키텍처 결정을 위해 경쟁사 저장소를 모니터링하세요.

트리거: 일정(매일)

hermes cron create "0 8 * * *" \
"Scout these AI agent repositories for notable activity in the last 24 hours:

Repos to check:
- anthropics/claude-code
- openai/codex
- All-Hands-AI/OpenHands
- Aider-AI/aider

For each repo:
1. gh pr list --repo <repo> --state all --json number,title,author,createdAt,mergedAt --limit 15
2. gh issue list --repo <repo> --state open --json number,title,labels,createdAt --limit 10

Focus on:
- New features being developed
- Architectural changes
- Integration patterns we could learn from
- Security fixes that might affect us too

Skip routine dependency bumps and CI fixes. If nothing notable, respond with [SILENT].
If there are findings, organize by repo with brief analysis of each item." \
--skill competitive-pr-scout \
--name "Competitor scout" \
--deliver telegram

AI 뉴스 다이제스트

AI/ML 개발의 주간 요약입니다.

트리거: 일정(매주)

hermes cron create "0 9 * * 1" \
"Generate a weekly AI news digest covering the past 7 days:

1. Search the web for major AI announcements, model releases, and research breakthroughs
2. Search for trending ML repositories on GitHub
3. Check arXiv for highly-cited papers on language models and agents

Structure:
## Headlines (3-5 major stories) \{#research--intelligence}
## Notable Papers (2-3 papers with one-sentence summaries) \{#competitive-repository-scout}
## Open Source (interesting new repos or major releases) \{#ai-news-digest}
## Industry Moves (funding, acquisitions, launches) \{#paper-digest-with-notes}

Keep each item to 1-2 sentences. Include links. Total under 600 words." \
--name "Weekly AI digest" \
--deliver telegram

메모가 포함된 종이 다이제스트

메모 작성 시스템에 요약을 저장하는 일일 arXiv 스캔입니다.

트리거: 일정(매일)

hermes cron create "0 8 * * *" \
"Search arXiv for the 3 most interesting papers on 'language model reasoning' OR 'tool-use agents' from the past day. For each paper, create an Obsidian note with the title, authors, abstract summary, key contribution, and potential relevance to Hermes Agent development." \
--skill arxiv --skill obsidian \
--name "Paper digest" \
--deliver local

GitHub 이벤트 자동화

자동 라벨링 발행

새로운 문제에 자동으로 라벨을 지정하고 대응합니다.

트리거: GitHub 웹훅

hermes webhook subscribe github-issues \
--events "issues" \
--prompt "New GitHub issue received:
Repository: {repository.full_name}
Issue #{issue.number}: {issue.title}
Author: {issue.user.login}
Action: {action}
Body: {issue.body}
Labels: {issue.labels}

If this is a new issue (action=opened):
1. Read the issue title and body carefully
2. Suggest appropriate labels (bug, feature, docs, security, question)
3. If it's a bug report, check if you can identify the affected component from the description
4. Post a helpful initial response acknowledging the issue

If this is a label or assignment change, respond with [SILENT]." \
--deliver github_comment

CI 실패 분석

CI 실패를 분석하고 PR에 대한 사후 진단을 수행합니다.

트리거: GitHub 웹훅

# config.yaml route
platforms:
webhook:
enabled: true
extra:
routes:
ci-failure:
events: ["check_run"]
secret: "ci-secret"
prompt: |
CI check failed:
Repository: {repository.full_name}
Check: {check_run.name}
Status: {check_run.conclusion}
PR: #{check_run.pull_requests.0.number}
Details URL: {check_run.details_url}

If conclusion is "failure":
1. Fetch the log from the details URL if accessible
2. Identify the likely cause of failure
3. Suggest a fix
If conclusion is "success", respond with [SILENT].
deliver: "github_comment"
deliver_extra:
repo: "{repository.full_name}"
pr_number: "{check_run.pull_requests.0.number}"

저장소 전체의 자동 포트 변경

PR이 하나의 저장소에 병합되면 동등한 변경 사항을 다른 저장소에 자동으로 이식합니다.

트리거: GitHub 웹훅

hermes webhook subscribe auto-port \
--events "pull_request" \
--prompt "PR merged in the source repository:
Repository: {repository.full_name}
PR #{pull_request.number}: {pull_request.title}
Author: {pull_request.user.login}
Action: {action}
Merge commit: {pull_request.merge_commit_sha}

If action is 'closed' and pull_request.merged is true:
1. Fetch the diff: curl -sL {pull_request.diff_url}
2. Analyze what changed
3. Determine if this change needs to be ported to the Go SDK equivalent
4. If yes, create a branch, apply the equivalent changes, and open a PR on the target repo
5. Reference the original PR in the new PR description

If action is not 'closed' or not merged, respond with [SILENT]." \
--skill github-pr-workflow \
--deliver log

사업 운영

스트라이프 결제 모니터링

결제 이벤트를 추적하고 실패 요약을 받아보세요.

트리거: API 호출(웹훅)

hermes webhook subscribe stripe-payments \
--events "payment_intent.succeeded,payment_intent.payment_failed,charge.dispute.created" \
--prompt "Stripe event received:
Event type: {type}
Amount: {data.object.amount} cents ({data.object.currency})
Customer: {data.object.customer}
Status: {data.object.status}

For payment_intent.payment_failed:
- Identify the failure reason from {data.object.last_payment_error}
- Suggest whether this is a transient issue (retry) or permanent (contact customer)

For charge.dispute.created:
- Flag as urgent
- Summarize the dispute details

For payment_intent.succeeded:
- Brief confirmation only

Keep responses concise for the ops channel." \
--deliver slack

일일 수익 요약

매일 아침 주요 비즈니스 지표를 컴파일하세요.

트리거: 일정(매일)

hermes cron create "0 8 * * *" \
"Generate a morning business metrics summary.

Search the web for:
1. Current Bitcoin and Ethereum prices
2. S&P 500 status (pre-market or previous close)
3. Any major tech/AI industry news from the last 12 hours

Format as a brief morning briefing, 3-4 bullet points max.
Deliver as a clean, scannable message." \
--name "Morning briefing" \
--deliver telegram

다중 기술 워크플로

보안 감사 파이프라인

포괄적인 주간 보안 검토를 위해 여러 기술을 결합합니다.

트리거: 일정(매주)

hermes cron create "0 3 * * 0" \
"Run a comprehensive security audit of the hermes-agent codebase.

1. Check for dependency vulnerabilities (pip audit, npm audit)
2. Search the codebase for common security anti-patterns:
- Hardcoded secrets or API keys
- SQL injection vectors (string formatting in queries)
- Path traversal risks (user input in file paths without validation)
- Unsafe deserialization (pickle.loads, yaml.load without SafeLoader)
3. Review recent commits (last 7 days) for security-relevant changes
4. Check if any new environment variables were added without being documented

Write a security report with findings categorized by severity (Critical, High, Medium, Low).
If nothing found, report a clean bill of health." \
--skill codebase-security-audit \
--name "Weekly security audit" \
--deliver telegram

콘텐츠 파이프라인

일정에 따라 콘텐츠를 조사하고, 초안을 작성하고, 준비합니다.

트리거: 일정(매주)

hermes cron create "0 10 * * 3" \
"Research and draft a technical blog post outline about a trending topic in AI agents.

1. Search the web for the most discussed AI agent topics this week
2. Pick the most interesting one that's relevant to open-source AI agents
3. Create an outline with:
- Hook/intro angle
- 3-4 key sections
- Technical depth appropriate for developers
- Conclusion with actionable takeaway
4. Save the outline to ~/drafts/blog-$(date +%Y%m%d).md

Keep the outline to ~300 words. This is a starting point, not a finished post." \
--name "Blog outline" \
--deliver local

빠른 참조

크론 일정 구문

표현의미
every 30m30분마다
every 2h2시간마다
0 2 * * *매일 오전 2시
0 9 * * 1매주 월요일 오전 9시
0 9 * * 1-5평일 오전 9시
0 3 * * 0매주 일요일 오전 3시
0 */6 * * *6시간마다

납품대상

대상깃발메모
같은 채팅--deliver origin기본값 - 작업이 생성된 위치로 전달됩니다.
로컬 파일--deliver local출력을 저장하고 알림 없음
텔레그램--deliver telegram홈 채널 또는 특정 채널의 경우 telegram:CHAT_ID
불화--deliver discord홈 채널 또는 discord:CHANNEL_ID
슬랙--deliver slack홈 채널
SMS--deliver sms:+15551234567전화번호로 바로가기
특정 스레드--deliver telegram:-100123:456텔레그램 포럼 주제

웹훅 템플릿 변수

변수설명
{pull_request.title}홍보제목
{issue.number}이슈 번호
{repository.full_name}owner/repo
{action}이벤트 액션(열림, 닫힘 등)
{__raw__}전체 JSON 페이로드(4000자에서 잘림)
{sender.login}이벤트를 트리거한 GitHub 사용자

[SILENT] 패턴

크론 작업의 응답에 [SILENT]이 포함되어 있으면 전달이 억제됩니다. 자동 실행 시 알림 스팸을 방지하려면 다음을 사용하세요.

If nothing noteworthy happened, respond with [SILENT].

즉, 상담원이 보고할 내용이 있는 경우에만 알림을 받습니다.