소스 정보
- 저장소
- NousResearch/hermes-agent
- 최근 소스 활동
- 2026년 8월 12일 09:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 231,462
- 포크
- 46,036
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/NousResearch/hermes-agent --skill telephony명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | telephony |
| description | Provision Twilio numbers, SMS/MMS, and AI outbound calls. |
| version | 1.0.0 |
| author | Nous Research |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["telephony","phone","sms","mms","voice","twilio","bland.ai","vapi","calling","texting"],"related_skills":["maps","google-workspace","agentmail"],"category":"productivity"}} |
This optional skill gives Hermes practical phone capabilities while keeping telephony out of the core tool list.
It ships with a helper script, scripts/telephony.py, that can:
${HERMES_HOME:-~/.hermes}/.env<Say> or <Play>This skill is meant to cover the practical phone tasks users actually want:
It does not turn Hermes into a real-time inbound phone gateway. Inbound SMS is handled by polling the Twilio REST API. That is enough for many workflows, including notifications and some one-time-code retrieval, without adding core webhook infrastructure.
Use this logic instead of hardcoded provider routing:
Use Twilio.
Why:
Use cases:
Use Bland.ai.
Why:
Tradeoff:
Use Twilio + Vapi.
Why:
Recommended flow:
VAPI_PHONE_NUMBER_IDai-call --provider vapiUse Twilio direct call with a public audio URL.
Why:
text_to_speech plus a public file host or tunnelThe skill persists telephony state in two places:
${HERMES_HOME:-~/.hermes}/.envUsed for long-lived provider credentials and owned-number IDs, for example:
TWILIO_ACCOUNT_SIDTWILIO_AUTH_TOKENTWILIO_PHONE_NUMBERTWILIO_PHONE_NUMBER_SIDBLAND_API_KEYVAPI_API_KEYVAPI_PHONE_NUMBER_IDPHONE_PROVIDER (AI call provider: bland or vapi)~/.hermes/telephony_state.jsonUsed for skill-only state that should survive across sessions, for example:
This means:
diagnose can tell you what number is already configuredtwilio-inbox --since-last --mark-seen can continue from the previous checkpointAfter installing this skill, locate the script like this:
SCRIPT="$(find ~/.hermes/skills -path '*/telephony/scripts/telephony.py' -print -quit)"
If SCRIPT is empty, the skill is not installed yet.
This is an official optional skill, so install it from the Skills Hub:
hermes skills search telephony
hermes skills install official/productivity/telephony
Sign up at:
Then save credentials into Hermes:
python "$SCRIPT" save-twilio ACXXXXXXXXXXXXXXXXXXXXXXXXXXXX your_auth_token_here
Search for available numbers:
python "$SCRIPT" twilio-search --country US --area-code 702 --limit 5
Buy and remember a number:
python "$SCRIPT" twilio-buy "+17025551234" --save-env
List owned numbers:
python "$SCRIPT" twilio-owned
Set one of them as the default later:
python "$SCRIPT" twilio-set-default "+17025551234" --save-env
# or
python "$SCRIPT" twilio-set-default PNXXXXXXXXXXXXXXXXXXXXXXXXXXXX --save-env
Sign up at:
Save config:
python "$SCRIPT" save-bland your_bland_api_key --voice mason
Sign up at:
Save the API key first:
python "$SCRIPT" save-vapi your_vapi_api_key
Import your owned Twilio number into Vapi and persist the returned phone number ID:
python "$SCRIPT" vapi-import-twilio --save-env
If you already know the Vapi phone number ID, save it directly:
python "$SCRIPT" save-vapi your_vapi_api_key --phone-number-id vapi_phone_number_id_here
At any time, inspect what the skill already knows:
python "$SCRIPT" diagnose
Use this first when resuming work in a later session.
python "$SCRIPT" save-twilio AC... auth_token_here
python "$SCRIPT" twilio-search --country US --area-code 702 --limit 10
${HERMES_HOME:-~/.hermes}/.env + state:python "$SCRIPT" twilio-buy "+17025551234" --save-env
python "$SCRIPT" diagnose
This shows the remembered default number and inbox checkpoint state.
python "$SCRIPT" twilio-send-sms "+15551230000" "Your deployment completed successfully."
With media:
python "$SCRIPT" twilio-send-sms "+15551230000" "Here is the chart." --media-url "https://example.com/chart.png"
Poll the inbox for the default Twilio number:
python "$SCRIPT" twilio-inbox --limit 20
Only show messages that arrived after the last checkpoint, and advance the checkpoint when you're done reading:
python "$SCRIPT" twilio-inbox --since-last --mark-seen
This is the main answer to “how do I access messages the number receives next time the skill is loaded?”
python "$SCRIPT" twilio-call "+15551230000" --message "Hello! This is Hermes calling with your status update." --voice Polly.Joanna
This is the main path for reusing Hermes's existing text_to_speech support.
Use this when:
<Say>Generate or host audio separately, then:
python "$SCRIPT" twilio-call "+155****0000" --audio-url "https://example.com/briefing.mp3"
Recommended Hermes TTS -> Twilio Play workflow:
text_to_speech.--audio-url.Example agent flow:
text_to_speechtwilio-call --audio-url ... to deliver it by phoneGood hosting options for the MP3:
Important note:
If you need to press digits after the call connects, use --send-digits.
Twilio interprets w as a short wait.
python "$SCRIPT" twilio-call "+18005551234" --message "Connecting to billing now." --send-digits "ww1w2w3"
This is useful for reaching a specific menu branch before handing off to a human or delivering a short status message.
python "$SCRIPT" ai-call "+15551230000" "Call the dental office, ask for a cleaning appointment on Tuesday afternoon, and if they do not have Tuesday availability, ask for Wednesday or Thursday instead." --provider bland --voice mason --max-duration 3
Check status:
python "$SCRIPT" ai-status <call_id> --provider bland
Ask Bland analysis questions after completion:
python "$SCRIPT" ai-status <call_id> --provider bland --analyze "Was the appointment confirmed?,What date and time?,Any special instructions?"
python "$SCRIPT" vapi-import-twilio --save-env
python "$SCRIPT" ai-call "+15551230000" "You are calling to make a dinner reservation for two at 7:30 PM. If that is unavailable, ask for the nearest time between 6:30 and 8:30 PM." --provider vapi --max-duration 4
python "$SCRIPT" ai-status <call_id> --provider vapi
When the user asks for a call or text:
diagnose if configuration state is unclear.Those would require more infrastructure than a pure optional skill.
twilio-inbox polls the REST API; it is not instant push delivery.After setup, you should be able to do all of the following with just this skill:
diagnose shows provider readiness and remembered state${HERMES_HOME:-~/.hermes}/.env