hermes - 💡(How to fix) Fix [i18n] Thai Translation: Reference Part c - faq, mcp-config-reference, optional-skills-catalog [1 participants]
ON THIS PAGE
Recommended Tools
×6Utilities matched from this issue’s tags and category — try them while you read without losing context.
GitHub issue graph ai analysis
Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.
The report is written in English Markdown for sharing and archival.
Helpful · Quick feedback
Error Message
Error 400 ในการรัน agent ครั้งแรก
- รายงาน bug: รวม OS, Python version (
python3 --version), Hermes version (hermes --version), และข้อความ error ทั้งหมด
Code Example
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
---
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
---
hermes model
# Select: Custom endpoint (enter URL manually)
# API base URL: http://localhost:11434/v1
# API key: ollama
# Model name: qwen3.5:27b
# Context length: 32768 ← set this to match your server's actual context window
---
model:
default: qwen3.5:27b
provider: custom
base_url: http://localhost:11434/v1
---
from run_agent import AIAgent
agent = AIAgent(model="anthropic/claude-opus-4.7")
response = agent.chat("Explain quantum computing briefly")
---
# โหลดโปรไฟล์ shell ของคุณใหม่
source ~/.bashrc # สำหรับ bash
source ~/.zshrc # สำหรับ zsh
# หรือเริ่มเซสชัน terminal ใหม่
---
which hermes
ls ~/.local/bin/hermes
---
python3 --version # ตรวจสอบเวอร์ชันปัจจุบัน
# ติดตั้ง Python เวอร์ชันใหม่กว่า
sudo apt install python3.12 # สำหรับ Ubuntu/Debian
brew install python@3.12 # สำหรับ macOS
---
terminal:
shell_init_files:
- ~/.zshrc # สำหรับผู้ใช้ zsh: ดึง PATH ที่จัดการโดย zsh เข้าไปใน bash snapshot
- ~/.nvm/nvm.sh # nvm init โดยตรง (ใช้ได้ไม่ว่า shell จะเป็นอะไร)
- /etc/profile.d/cargo.sh # ไฟล์ rc ระดับระบบ
# เมื่อตั้งค่ารายการนี้ การ auto-source ~/.bashrc เริ่มต้นจะไม่ถูกเพิ่ม -
# ให้รวมมันอย่างชัดเจนหากคุณต้องการทั้งสอง:
# - ~/.bashrc
# - ~/.zshrc
---
terminal:
auto_source_bashrc: false
---
curl -LsSf https://astral.sh/uv/install.sh | sh
source ~/.bashrc
---
# ห้ามใช้ sudo กับตัวติดตั้ง - เพราะมันติดตั้งที่ ~/.local/bin
# หากคุณเคยติดตั้งด้วย sudo มาก่อน ให้ล้างข้อมูล:
sudo rm /usr/local/bin/hermes
# จากนั้นรันตัวติดตั้งมาตรฐานอีกครั้ง
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
---
# ออกจากเซสชันแชท Hermes ก่อน (Ctrl+C หรือ /quit)
# รันตัวช่วยตั้งค่า provider เต็มรูปแบบ
hermes model
# สิ่งนี้ช่วยให้คุณ: เพิ่ม provider, รัน OAuth, ป้อน API keys, กำหนดค่า endpoints
---
# ตรวจสอบการกำหนดค่าของคุณ
hermes config show
# กำหนดค่า provider ของคุณใหม่
hermes model
# หรือตั้งค่าโดยตรง
hermes config set OPENROUTER_API_KEY sk-or-v1-xxxxxxxxxxxx
---
# แสดงโมเดลที่พร้อมใช้งานสำหรับ provider ของคุณ
hermes model
# ตั้งค่าโมเดลที่ถูกต้อง
hermes config set HERMES_MODEL anthropic/claude-opus-4.7
# หรือระบุต่อเซสชัน
hermes chat --model openrouter/meta-llama/llama-3.1-70b-instruct
---
# บีบอัดเซสชันปัจจุบัน
/compress
# หรือเริ่มเซสชันใหม่
hermes chat
# ใช้โมเดลที่มี context window ใหญ่กว่า
hermes chat --model openrouter/google/gemini-3-flash-preview
---
# ใน ~/.hermes/config.yaml
model:
default: your-model-name
context_length: 131072 # context window จริงของโมเดลของคุณ
---
custom_providers:
- name: "My Server"
base_url: "http://localhost:11434/v1"
models:
qwen3.5:27b:
context_length: 32768
---
# ตรวจสอบว่า Docker กำลังทำงานหรือไม่
docker info
# เพิ่มผู้ใช้ของคุณในกลุ่ม docker
sudo usermod -aG docker $USER
newgrp docker
# ตรวจสอบ
docker run hello-world
---
# ตรวจสอบว่า gateway กำลังทำงานหรือไม่
hermes gateway status
# เริ่ม gateway
hermes gateway start
# ตรวจสอบ log สำหรับข้อผิดพลาด
cat ~/.hermes/logs/gateway.log | tail -50
---
# ติดตั้ง dependencies ของ messaging
pip install "hermes-agent[telegram]" # หรือ [discord], [slack], [whatsapp]
# ตรวจสอบ port conflicts
lsof -i :8080
# ตรวจสอบการกำหนดค่า
hermes config show
---
# ตัวเลือก 1: Direct foreground (ง่ายที่สุด)
hermes gateway run
# ตัวเลือก 2: Persistent via tmux (รอดจากการปิด terminal)
tmux new -s hermes 'hermes gateway run'
# Reattach later: tmux attach -t hermes
# ตัวเลือก 3: Background via nohup
nohup hermes gateway run > ~/.hermes/logs/gateway.log 2>&1 &
---
[boot]
systemd=true
---
hermes gateway install # Re-snapshots your current PATH
hermes gateway start # ตรวจจับ plist ที่อัปเดตและโหลดใหม่
---
/usr/libexec/PlistBuddy -c "Print :EnvironmentVariables:PATH" \
~/Library/LaunchAgents/ai.hermes.gateway.plist
---
# บีบอัดการสนทนาเพื่อลด token
/compress
# ตรวจสอบการใช้ token ของเซสชัน
/usage
---
# บีบอัดเซสชันปัจจุบัน (คง context หลักไว้)
/compress
# เริ่มเซสชันใหม่พร้อมการอ้างอิงถึงเซสชันเก่า
hermes chat
# กลับมาใช้เซสชันเฉพาะในภายหลังหากจำเป็น
hermes chat --continue
---
# ตรวจสอบให้แน่ใจว่าติดตั้ง dependencies ของ MCP แล้ว (รวมอยู่ใน standard install)
cd ~/.hermes/hermes-agent && uv pip install -e ".[mcp]"
# สำหรับเซิร์ฟเวอร์ที่ใช้ npm, ตรวจสอบว่า Node.js พร้อมใช้งาน
node --version
npx --version
# ทดสอบเซิร์ฟเวอร์ด้วยตนเอง
npx -y @modelcontextprotocol/server-filesystem /tmp
---
mcp_servers:
filesystem:
command: "npx"
args: ["-y", "@modelcontextprotocol/server-filesystem", "/home/user/docs"]
---
# ตรวจสอบว่า MCP servers ถูกกำหนดค่าไว้หรือไม่
hermes config show | grep -A 12 mcp_servers
# รีสตาร์ท Hermes หรือ reload MCP หลังจากเปลี่ยน config
hermes chat
---
# บนเครื่องต้นทาง
hermes profile export work ./work-backup.tar.gz
# คัดลอกไฟล์ไปยังเครื่องปลายทาง แล้ว:
hermes profile import ./work-backup.tar.gz work
---
delegation:
model: "google/gemini-3-flash-preview" # subagents ใช้โมเดลนี้
provider: "openrouter" # provider สำหรับ subagents
---
/model google/gemini-3-flash-preview # สลับสำหรับเซสชันนี้
# ... เขียนเนื้อหาของคุณ ...
/model openai/gpt-5.4 # สลับกลับ
---
display:
tool_progress: "off" # ตัวเลือก: off, new, all, verbose
---
display:
tool_progress_command: true # เปิดใช้งาน /verbose ใน gateway
---
skills:
disabled: [] # skills ที่ถูกปิดใช้งานทั่วโลก
platform_disabled:
telegram: [skill-a, skill-b] # ปิดใช้งานเฉพาะบน telegram
---
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
---
# บนเครื่องต้นทาง
rsync -av --exclude='hermes-agent' ~/.hermes/ newmachine:~/.hermes/
---
# บนเครื่องต้นทาง
hermes profile export default ./hermes-backup.tar.gz
# บนเครื่องปลายทาง
hermes profile import ./hermes-backup.tar.gz default
---
# ตรวจสอบสิทธิ์
ls -la ~/.zshrc
# แก้ไขหากจำเป็น (ควรเป็น -rw-r--r-- หรือ 644)
chmod 644 ~/.zshrc
# จากนั้น reload
source ~/.zshrc
# หรือเปิดหน้าต่าง terminal ใหม่ - มันจะรับ PATH changes โดยอัตโนมัติ
---
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
---
# ตรวจสอบว่า model และ provider ใดถูกกำหนดค่าไว้
hermes config show | head -20
# รัน model selection ใหม่
hermes model
# หรือทดสอบด้วย model ที่ทราบว่าใช้งานได้
hermes chat -q "hello" --model anthropic/claude-opus-4.7
---
mcp_servers:
<server_name>:
command: "..." # stdio servers
args: []
env: {}
# OR
url: "..." # HTTP servers
headers: {}
enabled: true
timeout: 120
connect_timeout: 60
tools:
include: []
exclude: []
resources: true
prompts: true
---
tools:
include: [create_issue, list_issues]
---
tools:
exclude: [delete_customer]
---
tools:
include: [create_issue]
exclude: [create_issue, delete_issue]
---
tools:
resources: false
---
tools:
prompts: false
---
mcp_servers:
legacy:
url: "https://mcp.legacy.internal"
enabled: false
---
mcp_servers:
github:
command: "npx"
args: ["-y", "@modelcontextprotocol/server-github"]
env:
GITHUB_PERSONAL_ACCESS_TOKEN: "***"
tools:
include: [list_issues, create_issue, update_issue, search_code]
resources: false
prompts: false
---
mcp_servers:
stripe:
url: "https://mcp.stripe.com"
headers:
Authorization: "Bearer ***"
tools:
exclude: [delete_customer, refund_payment]
---
mcp_servers:
docs:
url: "https://mcp.docs.example.com"
tools:
include: []
resources: true
prompts: false
---
/reload-mcp
---
mcp_<server>_<tool>
---
mcp_my_api_list_items_v2
---
mcp_servers:
protected_api:
url: "https://mcp.example.com/mcp"
auth: oauth
---
hermes skills install official/<category>/<skill>
---
hermes skills install official/blockchain/solana
hermes skills install official/mlops/flash-attention
---
hermes skills uninstall <skill-name>RAW_BUFFERClick to expand / collapse
📄 reference/faq.md
sidebar_position: 3 title: "FAQ & Troubleshooting" description: "Frequently asked questions and solutions to common issues with Hermes Agent"
FAQ & Troubleshooting
คำตอบและวิธีแก้ไขปัญหาสำหรับคำถามและปัญหาที่พบบ่อยที่สุด
Frequently Asked Questions
What LLM providers work with Hermes?
Hermes Agent สามารถทำงานร่วมกับ API ที่เข้ากันได้กับ OpenAI ทุกตัว ผู้ให้บริการที่รองรับ ได้แก่:
- OpenRouter - เข้าถึงโมเดลหลายร้อยตัวผ่าน API key เดียว (แนะนำสำหรับความยืดหยุ่น)
- Nous Portal - endpoint inference ของ Nous Research เอง
- OpenAI - GPT-4o, o1, o3, และอื่น ๆ
- Anthropic - โมเดล Claude (ผ่าน OpenRouter หรือ proxy ที่เข้ากันได้)
- Google - โมเดล Gemini (ผ่าน OpenRouter หรือ proxy ที่เข้ากันได้)
- z.ai / ZhipuAI - โมเดล GLM
- Kimi / Moonshot AI - โมเดล Kimi
- MiniMax - endpoints ทั่วโลกและในจีน
- Local models - ผ่าน Ollama, vLLM, llama.cpp, SGLang, หรือเซิร์ฟเวอร์ที่เข้ากันได้กับ OpenAI ทุกตัว
ตั้งค่า provider ของคุณด้วยคำสั่ง hermes model หรือโดยการแก้ไขไฟล์ ~/.hermes/.env ดูเอกสารอ้างอิง Environment Variables สำหรับคีย์ provider ทั้งหมด
Does it work on Windows?
ไม่รองรับโดยตรง (Not natively). Hermes Agent ต้องการสภาพแวดล้อมแบบ Unix-like บน Windows ให้ติดตั้ง WSL2 และรัน Hermes จากภายใน WSL2 คำสั่งติดตั้งมาตรฐานทำงานได้อย่างสมบูรณ์ใน WSL2:
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bashDoes it work on Android / Termux?
ได้ - Hermes มีวิธีการติดตั้ง Termux ที่ผ่านการทดสอบสำหรับโทรศัพท์ Android แล้ว
ติดตั้งอย่างรวดเร็ว:
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bashสำหรับขั้นตอนการติดตั้งด้วยตนเองที่ละเอียดทั้งหมด, extras ที่รองรับ, และข้อจำกัดปัจจุบัน ดูที่ Termux guide
ข้อควรระวังที่สำคัญ: extra .[all] ทั้งหมดยังไม่พร้อมใช้งานบน Android เนื่องจาก extra voice ขึ้นอยู่กับ faster-whisper -> ctranslate2 และ ctranslate2 ไม่ได้เผยแพร่ Android wheels ให้ใช้ extra .[termux] ที่ผ่านการทดสอบแทน
Is my data sent anywhere?
การเรียก API จะส่งข้อมูลไปยัง LLM provider ที่คุณกำหนดค่าเท่านั้น (เช่น OpenRouter, อินสแตนซ์ Ollama ท้องถิ่นของคุณ) Hermes Agent ไม่มีการเก็บ telemetry, usage data, หรือ analytics การสนทนา, memory, และ skills ของคุณจะถูกจัดเก็บไว้ในเครื่องที่ ~/.hermes/
Can I use it offline / with local models?
ได้ รัน hermes model, เลือก Custom endpoint, และป้อน URL ของเซิร์ฟเวอร์ของคุณ:
hermes model
# Select: Custom endpoint (enter URL manually)
# API base URL: http://localhost:11434/v1
# API key: ollama
# Model name: qwen3.5:27b
# Context length: 32768 ← set this to match your server's actual context windowหรือกำหนดค่าโดยตรงใน config.yaml:
model:
default: qwen3.5:27b
provider: custom
base_url: http://localhost:11434/v1Hermes จะเก็บ endpoint, provider, และ base URL ไว้ใน config.yaml เพื่อให้คงอยู่แม้จะรีสตาร์ท หากเซิร์ฟเวอร์ท้องถิ่นของคุณมีโมเดลโหลดอยู่เพียงตัวเดียว /model custom จะตรวจจับอัตโนมัติ คุณยังสามารถตั้งค่า provider: custom ใน config.yaml ได้ - ซึ่งเป็น provider ระดับแรก ไม่ใช่ชื่อแทนของอย่างอื่น
สิ่งนี้ใช้ได้กับ Ollama, vLLM, llama.cpp server, SGLang, LocalAI, และอื่น ๆ ดู Configuration guide สำหรับรายละเอียด
:::tip Ollama users
หากคุณตั้งค่า num_ctx แบบกำหนดเองใน Ollama (เช่น ollama run --num_ctx 16384), โปรดตรวจสอบให้แน่ใจว่าคุณได้ตั้งค่า context length ที่ตรงกันใน Hermes - /api/show ของ Ollama จะรายงาน ค่าสูงสุด ของ context ของโมเดล ไม่ใช่ num_ctx ที่คุณกำหนดค่าไว้
:::
:::tip Timeouts with local models
Hermes จะตรวจจับ local endpoints อัตโนมัติและผ่อนคลาย timeouts สำหรับ streaming (read timeout ถูกเพิ่มจาก 120s เป็น 1800s, ปิดการตรวจจับ stale stream) หากคุณยังคงพบ timeouts ในบริบทขนาดใหญ่มาก ให้ตั้งค่า HERMES_STREAM_READ_TIMEOUT=1800 ในไฟล์ .env ของคุณ ดู Local LLM guide สำหรับรายละเอียด
:::
How much does it cost?
ตัว Hermes Agent เอง ฟรีและเป็น open-source (MIT license) คุณจ่ายเฉพาะค่า usage ของ LLM API จาก provider ที่คุณเลือก โมเดลท้องถิ่นฟรีสำหรับการรันโดยสมบูรณ์
Can multiple people use one instance?
ได้ messaging gateway อนุญาตให้ผู้ใช้หลายคนโต้ตอบกับอินสแตนซ์ Hermes Agent เดียวกันผ่าน Telegram, Discord, Slack, WhatsApp, หรือ Home Assistant การเข้าถึงถูกควบคุมผ่าน allowlists (user IDs เฉพาะ) และ DM pairing (ผู้ใช้คนแรกที่ส่งข้อความจะอ้างสิทธิ์การเข้าถึง)
What's the difference between memory and skills?
- Memory จัดเก็บ ข้อเท็จจริง (facts) - สิ่งที่ agent รู้เกี่ยวกับคุณ, โปรเจกต์ของคุณ, และความชอบ ความทรงจำจะถูกดึงมาโดยอัตโนมัติตามความเกี่ยวข้อง
- Skills จัดเก็บ ขั้นตอน (procedures) - คำแนะนำแบบทีละขั้นตอนเกี่ยวกับวิธีการทำสิ่งต่าง ๆ Skills จะถูกเรียกใช้เมื่อ agent พบงานที่คล้ายกัน
ทั้งสองอย่างจะคงอยู่ข้าม session ดู Memory และ Skills สำหรับรายละเอียด
Can I use it in my own Python project?
ได้ นำเข้าคลาส AIAgent และใช้ Hermes ในรูปแบบ programmatic:
from run_agent import AIAgent
agent = AIAgent(model="anthropic/claude-opus-4.7")
response = agent.chat("Explain quantum computing briefly")ดู Python Library guide สำหรับการใช้งาน API เต็มรูปแบบ
Troubleshooting
Installation Issues
hermes: command not found after installation
สาเหตุ: shell ของคุณไม่ได้โหลด PATH ที่อัปเดตแล้ว
วิธีแก้ไข:
# โหลดโปรไฟล์ shell ของคุณใหม่
source ~/.bashrc # สำหรับ bash
source ~/.zshrc # สำหรับ zsh
# หรือเริ่มเซสชัน terminal ใหม่หากยังไม่ทำงาน ให้ตรวจสอบตำแหน่งการติดตั้ง:
which hermes
ls ~/.local/bin/hermes:::tip
ตัวติดตั้งจะเพิ่ม ~/.local/bin เข้าไปใน PATH ของคุณ หากคุณใช้การตั้งค่า shell ที่ไม่เป็นมาตรฐาน ให้เพิ่ม export PATH="$HOME/.local/bin:$PATH" ด้วยตนเอง
:::
Python version too old
สาเหตุ: Hermes ต้องการ Python 3.11 หรือใหม่กว่า
วิธีแก้ไข:
python3 --version # ตรวจสอบเวอร์ชันปัจจุบัน
# ติดตั้ง Python เวอร์ชันใหม่กว่า
sudo apt install python3.12 # สำหรับ Ubuntu/Debian
brew install [email protected] # สำหรับ macOSตัวติดตั้งจะจัดการเรื่องนี้โดยอัตโนมัติ - หากคุณเห็นข้อผิดพลาดนี้ระหว่างการติดตั้งด้วยตนเอง ให้ทำการอัปเกรด Python ก่อน
Terminal commands say node: command not found (or nvm, pyenv, asdf, …)
สาเหตุ: Hermes สร้าง snapshot ของสภาพแวดล้อมต่อเซสชันโดยการรัน bash -l เพียงครั้งเดียวเมื่อเริ่มต้นใช้งาน bash login shell จะอ่าน /etc/profile, ~/.bash_profile, และ ~/.profile แต่ จะไม่ source ~/.bashrc - ดังนั้นเครื่องมือที่ติดตั้งตัวเองที่นั่น (nvm, asdf, pyenv, cargo, การ export PATH แบบกำหนดเอง) จะมองไม่เห็นใน snapshot นี้ สิ่งนี้มักเกิดขึ้นเมื่อ Hermes ทำงานภายใต้ systemd หรือใน shell ที่เรียบง่ายที่ไม่มีการโหลดโปรไฟล์ shell แบบ interactive ล่วงหน้า
วิธีแก้ไข: โดยค่าเริ่มต้น Hermes จะ auto-source ~/.bashrc หากยังไม่เพียงพอ - เช่น คุณเป็นผู้ใช้ zsh ที่ PATH อยู่ใน ~/.zshrc หรือคุณ init nvm จากไฟล์เดี่ยว - ให้ระบุไฟล์เพิ่มเติมที่ต้อง source ใน ~/.hermes/config.yaml:
terminal:
shell_init_files:
- ~/.zshrc # สำหรับผู้ใช้ zsh: ดึง PATH ที่จัดการโดย zsh เข้าไปใน bash snapshot
- ~/.nvm/nvm.sh # nvm init โดยตรง (ใช้ได้ไม่ว่า shell จะเป็นอะไร)
- /etc/profile.d/cargo.sh # ไฟล์ rc ระดับระบบ
# เมื่อตั้งค่ารายการนี้ การ auto-source ~/.bashrc เริ่มต้นจะไม่ถูกเพิ่ม -
# ให้รวมมันอย่างชัดเจนหากคุณต้องการทั้งสอง:
# - ~/.bashrc
# - ~/.zshrcไฟล์ที่ขาดหายไปจะถูกข้ามไปอย่างเงียบ ๆ การ source เกิดขึ้นใน bash ดังนั้นไฟล์ที่ต้องพึ่งพาสังเกตการณ์เฉพาะ zsh อาจเกิดข้อผิดพลาด - หากเป็นข้อกังวล ให้ source เฉพาะส่วนที่ตั้งค่า PATH (เช่น nvm.sh ของ nvm โดยตรง) แทนที่จะเป็นไฟล์ rc ทั้งหมด
ในการปิดการทำงานของ auto-source behaviour (strict login-shell semantics เท่านั้น):
terminal:
auto_source_bashrc: falseuv: command not found
สาเหตุ: ตัวจัดการแพ็คเกจ uv ไม่ได้ติดตั้งหรือไม่ได้อยู่ใน PATH
วิธีแก้ไข:
curl -LsSf https://astral.sh/uv/install.sh | sh
source ~/.bashrcPermission denied errors during install
สาเหตุ: สิทธิ์ไม่เพียงพอในการเขียนไปยังไดเรกทอรีติดตั้ง
วิธีแก้ไข:
# ห้ามใช้ sudo กับตัวติดตั้ง - เพราะมันติดตั้งที่ ~/.local/bin
# หากคุณเคยติดตั้งด้วย sudo มาก่อน ให้ล้างข้อมูล:
sudo rm /usr/local/bin/hermes
# จากนั้นรันตัวติดตั้งมาตรฐานอีกครั้ง
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bashProvider & Model Issues
/model only shows one provider / can't switch providers
สาเหตุ: /model (ภายในเซสชันแชท) สามารถสลับระหว่าง provider ที่คุณ กำหนดค่าไว้แล้ว เท่านั้น หากคุณตั้งค่า OpenRouter ไว้เท่านั้น /model ก็จะแสดงแค่นั้น
วิธีแก้ไข: ออกจากเซสชันของคุณและใช้ hermes model จาก terminal เพื่อเพิ่ม provider ใหม่:
# ออกจากเซสชันแชท Hermes ก่อน (Ctrl+C หรือ /quit)
# รันตัวช่วยตั้งค่า provider เต็มรูปแบบ
hermes model
# สิ่งนี้ช่วยให้คุณ: เพิ่ม provider, รัน OAuth, ป้อน API keys, กำหนดค่า endpointsหลังจากเพิ่ม provider ใหม่ผ่าน hermes model ให้เริ่มเซสชันแชทใหม่ - /model จะแสดง provider ที่คุณกำหนดค่าไว้ทั้งหมด
:::tip Quick reference
| ต้องการ... | ใช้ |
|---|---|
| เพิ่ม provider ใหม่ | hermes model (จาก terminal) |
| ป้อน/เปลี่ยน API keys | hermes model (จาก terminal) |
| สลับโมเดลกลางเซสชัน | /model <name> (ภายในเซสชัน) |
| สลับไปใช้ provider ที่กำหนดค่าไว้ต่างกัน | /model provider:model (ภายในเซสชัน) |
| ::: |
API key not working
สาเหตุ: Key ขาดหาย, หมดอายุ, ตั้งค่าไม่ถูกต้อง, หรือสำหรับ provider ผิด
วิธีแก้ไข:
# ตรวจสอบการกำหนดค่าของคุณ
hermes config show
# กำหนดค่า provider ของคุณใหม่
hermes model
# หรือตั้งค่าโดยตรง
hermes config set OPENROUTER_API_KEY sk-or-v1-xxxxxxxxxxxx:::warning
โปรดตรวจสอบให้แน่ใจว่า key ตรงกับ provider Key ของ OpenAI จะใช้ไม่ได้กับ OpenRouter และในทางกลับกัน ตรวจสอบ ~/.hermes/.env สำหรับรายการที่ขัดแย้งกัน
:::
Model not available / model not found
สาเหตุ: ตัวระบุโมเดลไม่ถูกต้อง หรือไม่มีให้ใช้ใน provider ของคุณ
วิธีแก้ไข:
# แสดงโมเดลที่พร้อมใช้งานสำหรับ provider ของคุณ
hermes model
# ตั้งค่าโมเดลที่ถูกต้อง
hermes config set HERMES_MODEL anthropic/claude-opus-4.7
# หรือระบุต่อเซสชัน
hermes chat --model openrouter/meta-llama/llama-3.1-70b-instructRate limiting (429 errors)
สาเหตุ: คุณใช้เกินขีดจำกัด rate limit ของ provider
วิธีแก้ไข: รอสักครู่แล้วลองอีกครั้ง สำหรับการใช้งานอย่างต่อเนื่อง ให้พิจารณา:
- อัปเกรดแผน provider ของคุณ
- สลับไปใช้โมเดลหรือ provider อื่น
- ใช้
hermes chat --provider <alternative>เพื่อส่งไปยัง backend อื่น
Context length exceeded
สาเหตุ: การสนทนายาวเกินไปสำหรับ context window ของโมเดล หรือ Hermes ตรวจพบ context length ที่ไม่ถูกต้องสำหรับโมเดลของคุณ
วิธีแก้ไข:
# บีบอัดเซสชันปัจจุบัน
/compress
# หรือเริ่มเซสชันใหม่
hermes chat
# ใช้โมเดลที่มี context window ใหญ่กว่า
hermes chat --model openrouter/google/gemini-3-flash-previewหากสิ่งนี้เกิดขึ้นในการสนทนาที่ยาวครั้งแรก Hermes อาจมี context length ที่ไม่ถูกต้องสำหรับโมเดลของคุณ ตรวจสอบสิ่งที่มันตรวจพบ:
ดูที่บรรทัดเริ่มต้นของ CLI - มันจะแสดง context length ที่ตรวจพบ (เช่น 📊 Context limit: 128000 tokens) คุณยังสามารถตรวจสอบด้วย /usage ระหว่างเซสชันได้
ในการแก้ไขการตรวจจับ context ให้ตั้งค่าอย่างชัดเจน:
# ใน ~/.hermes/config.yaml
model:
default: your-model-name
context_length: 131072 # context window จริงของโมเดลของคุณหรือสำหรับ custom endpoints ให้เพิ่มในแต่ละโมเดล:
custom_providers:
- name: "My Server"
base_url: "http://localhost:11434/v1"
models:
qwen3.5:27b:
context_length: 32768ดู Context Length Detection สำหรับวิธีการทำงานของการตรวจจับอัตโนมัติและตัวเลือกการเขียนทับทั้งหมด
Terminal Issues
Command blocked as dangerous
สาเหตุ: Hermes ตรวจพบคำสั่งที่อาจก่อให้เกิดการทำลายล้าง (เช่น rm -rf, DROP TABLE) นี่คือคุณสมบัติด้านความปลอดภัย
วิธีแก้ไข: เมื่อถูกแจ้งเตือน ให้ตรวจสอบคำสั่งและพิมพ์ y เพื่ออนุมัติ คุณยังสามารถ:
- ขอให้ agent ใช้ทางเลือกที่ปลอดภัยกว่า
- ดูรายการรูปแบบอันตรายทั้งหมดใน Security docs
:::tip นี่ทำงานตามที่ตั้งใจ - Hermes จะไม่รันคำสั่งที่ทำลายล้างอย่างเงียบ ๆ การแจ้งเตือนการอนุมัติแสดงให้คุณเห็นว่าอะไรจะถูกดำเนินการอย่างแน่นอน :::
sudo not working via messaging gateway
สาเหตุ: messaging gateway ทำงานโดยไม่มี terminal แบบ interactive ดังนั้น sudo จึงไม่สามารถแจ้งให้ใส่รหัสผ่านได้
วิธีแก้ไข:
- หลีกเลี่ยง
sudoใน messaging - ขอให้ agent หาทางเลือกอื่น - หากคุณต้องใช้
sudoให้กำหนดค่า passwordless sudo สำหรับคำสั่งเฉพาะใน/etc/sudoers - หรือสลับไปใช้ terminal interface สำหรับงานบริหาร:
hermes chat
Docker backend not connecting
สาเหตุ: Docker daemon ไม่ได้ทำงาน หรือผู้ใช้ไม่มีสิทธิ์
วิธีแก้ไข:
# ตรวจสอบว่า Docker กำลังทำงานหรือไม่
docker info
# เพิ่มผู้ใช้ของคุณในกลุ่ม docker
sudo usermod -aG docker $USER
newgrp docker
# ตรวจสอบ
docker run hello-worldMessaging Issues
Bot not responding to messages
สาเหตุ: bot ไม่ได้ทำงาน, ไม่ได้รับอนุญาต, หรือผู้ใช้ของคุณไม่ได้อยู่ใน allowlist
วิธีแก้ไข:
# ตรวจสอบว่า gateway กำลังทำงานหรือไม่
hermes gateway status
# เริ่ม gateway
hermes gateway start
# ตรวจสอบ log สำหรับข้อผิดพลาด
cat ~/.hermes/logs/gateway.log | tail -50Messages not delivering
สาเหตุ: ปัญหาเครือข่าย, bot token หมดอายุ, หรือการกำหนดค่า webhook ของแพลตฟอร์มผิดพลาด
วิธีแก้ไข:
- ตรวจสอบว่า bot token ของคุณถูกต้องด้วย
hermes gateway setup - ตรวจสอบ log gateway:
cat ~/.hermes/logs/gateway.log | tail -50 - สำหรับแพลตฟอร์มที่ใช้ webhook (Slack, WhatsApp), ตรวจสอบให้แน่ใจว่าเซิร์ฟเวอร์ของคุณเข้าถึงได้จากสาธารณะ
Allowlist confusion - who can talk to the bot?
สาเหตุ: โหมดการอนุญาตกำหนดว่าใครสามารถเข้าถึงได้
วิธีแก้ไข:
| Mode | How it works |
|---|---|
| Allowlist | เฉพาะ user IDs ที่ระบุใน config เท่านั้นที่สามารถโต้ตอบได้ |
| DM pairing | ผู้ใช้คนแรกที่ส่งข้อความใน DM จะอ้างสิทธิ์การเข้าถึงแต่เพียงผู้เดียว |
| Open | ใครก็ได้สามารถโต้ตอบได้ (ไม่แนะนำสำหรับการใช้งานจริง) |
กำหนดค่าใน ~/.hermes/config.yaml ภายใต้การตั้งค่า gateway ของคุณ ดู Messaging docs
Gateway won't start
สาเหตุ: Dependencies ขาดหาย, port conflicts, หรือ token กำหนดค่าผิดพลาด
วิธีแก้ไข:
# ติดตั้ง dependencies ของ messaging
pip install "hermes-agent[telegram]" # หรือ [discord], [slack], [whatsapp]
# ตรวจสอบ port conflicts
lsof -i :8080
# ตรวจสอบการกำหนดค่า
hermes config showWSL: Gateway keeps disconnecting or hermes gateway start fails
สาเหตุ: การรองรับ systemd ของ WSL ไม่น่าเชื่อถือ การติดตั้ง WSL2 หลายครั้งไม่มีการเปิดใช้งาน systemd และแม้ว่าจะเปิดใช้งานแล้ว บริการก็อาจไม่รอดจากการรีสตาร์ท WSL หรือการปิดเครื่อง Windows
วิธีแก้ไข: ใช้โหมด foreground แทน systemd service:
# ตัวเลือก 1: Direct foreground (ง่ายที่สุด)
hermes gateway run
# ตัวเลือก 2: Persistent via tmux (รอดจากการปิด terminal)
tmux new -s hermes 'hermes gateway run'
# Reattach later: tmux attach -t hermes
# ตัวเลือก 3: Background via nohup
nohup hermes gateway run > ~/.hermes/logs/gateway.log 2>&1 &หากคุณต้องการลองใช้ systemd อย่างไรก็ตาม ให้แน่ใจว่ามันถูกเปิดใช้งาน:
- เปิด
/etc/wsl.conf(สร้างถ้ายังไม่มี) - เพิ่ม:
[boot] systemd=true - จาก PowerShell:
wsl --shutdown - เปิด terminal WSL ของคุณใหม่
- ตรวจสอบ:
systemctl is-system-runningควรแสดง "running" หรือ "degraded"
:::tip Auto-start on Windows boot สำหรับการเริ่มทำงานอัตโนมัติที่เชื่อถือได้ ให้ใช้ Windows Task Scheduler เพื่อเปิด WSL + gateway เมื่อเข้าสู่ระบบ:
- สร้าง task ที่รัน
wsl -d Ubuntu -- bash -lc 'hermes gateway run' - ตั้งค่าให้ทริกเกอร์เมื่อผู้ใช้เข้าสู่ระบบ :::
macOS: Node.js / ffmpeg / other tools not found by gateway
สาเหตุ: บริการ launchd สืบทอด PATH ที่เรียบง่าย ( /usr/bin:/bin:/usr/sbin:/sbin) ซึ่งไม่รวม Homebrew, nvm, cargo, หรือไดเรกทอรีเครื่องมือที่ติดตั้งโดยผู้ใช้ สิ่งนี้มักทำให้ WhatsApp bridge (node not found) หรือ voice transcription (ffmpeg not found) ล้มเหลว
วิธีแก้ไข: gateway จะจับภาพ PATH ของ shell ของคุณเมื่อคุณรัน hermes gateway install หากคุณติดตั้งเครื่องมือหลังจากตั้งค่า gateway ให้รัน install ใหม่เพื่อจับภาพ PATH ที่อัปเดต:
hermes gateway install # Re-snapshots your current PATH
hermes gateway start # ตรวจจับ plist ที่อัปเดตและโหลดใหม่คุณสามารถตรวจสอบได้ว่า plist มี PATH ที่ถูกต้องหรือไม่:
/usr/libexec/PlistBuddy -c "Print :EnvironmentVariables:PATH" \
~/Library/LaunchAgents/ai.hermes.gateway.plistPerformance Issues
Slow responses
สาเหตุ: โมเดลขนาดใหญ่, server API ที่อยู่ไกล, หรือ system prompt ที่มีเครื่องมือจำนวนมาก
วิธีแก้ไข:
- ลองใช้โมเดลที่เร็วกว่า/เล็กกว่า:
hermes chat --model openrouter/meta-llama/llama-3.1-8b-instruct - ลดชุดเครื่องมือที่ใช้งาน:
hermes chat -t "terminal" - ตรวจสอบ latency ของเครือข่ายของคุณไปยัง provider
- สำหรับโมเดลท้องถิ่น ให้แน่ใจว่าคุณมี VRAM ของ GPU เพียงพอ
High token usage
สาเหตุ: การสนทนายาว, system prompt ที่เยิ่นเย้อ, หรือการเรียกใช้เครื่องมือจำนวนมากที่สะสม context
วิธีแก้ไข:
# บีบอัดการสนทนาเพื่อลด token
/compress
# ตรวจสอบการใช้ token ของเซสชัน
/usage:::tip
ใช้ /compress เป็นประจำระหว่างเซสชันที่ยาวนาน มันจะสรุปประวัติการสนทนาและลดการใช้ token อย่างมาก ในขณะที่ยังคงรักษา context ไว้
:::
Session getting too long
สาเหตุ: การสนทนาที่ขยายออกไปสะสมข้อความและผลลัพธ์เครื่องมือ เข้าใกล้ขีดจำกัด context
วิธีแก้ไข:
# บีบอัดเซสชันปัจจุบัน (คง context หลักไว้)
/compress
# เริ่มเซสชันใหม่พร้อมการอ้างอิงถึงเซสชันเก่า
hermes chat
# กลับมาใช้เซสชันเฉพาะในภายหลังหากจำเป็น
hermes chat --continueMCP Issues
MCP server not connecting
สาเหตุ: ไม่พบ binary ของเซิร์ฟเวอร์, path คำสั่งผิด, หรือ runtime ขาดหาย
วิธีแก้ไข:
# ตรวจสอบให้แน่ใจว่าติดตั้ง dependencies ของ MCP แล้ว (รวมอยู่ใน standard install)
cd ~/.hermes/hermes-agent && uv pip install -e ".[mcp]"
# สำหรับเซิร์ฟเวอร์ที่ใช้ npm, ตรวจสอบว่า Node.js พร้อมใช้งาน
node --version
npx --version
# ทดสอบเซิร์ฟเวอร์ด้วยตนเอง
npx -y @modelcontextprotocol/server-filesystem /tmpตรวจสอบการกำหนดค่า MCP ของ ~/.hermes/config.yaml:
mcp_servers:
filesystem:
command: "npx"
args: ["-y", "@modelcontextprotocol/server-filesystem", "/home/user/docs"]Tools not showing up from MCP server
สาเหตุ: เซิร์ฟเวอร์เริ่มทำงานแล้วแต่การค้นพบเครื่องมือล้มเหลว, เครื่องมือถูกกรองโดย config, หรือเซิร์ฟเวอร์ไม่รองรับความสามารถ MCP ที่คุณคาดหวัง
วิธีแก้ไข:
- ตรวจสอบ log gateway/agent สำหรับข้อผิดพลาดการเชื่อมต่อ MCP
- ตรวจสอบให้แน่ใจว่าเซิร์ฟเวอร์ตอบสนองต่อ RPC method
tools/list - ตรวจสอบการตั้งค่า
tools.include,tools.exclude,tools.resources,tools.prompts, หรือenabledใด ๆ ภายใต้เซิร์ฟเวอร์นั้น - จำไว้ว่าเครื่องมือ utility resource/prompt จะลงทะเบียนก็ต่อเมื่อเซสชันนั้นรองรับความสามารถเหล่านั้นจริง ๆ
- ใช้
/reload-mcpหลังจากเปลี่ยน config
# ตรวจสอบว่า MCP servers ถูกกำหนดค่าไว้หรือไม่
hermes config show | grep -A 12 mcp_servers
# รีสตาร์ท Hermes หรือ reload MCP หลังจากเปลี่ยน config
hermes chatดูเพิ่มเติม:
MCP timeout errors
สาเหตุ: MCP server ใช้เวลานานเกินไปในการตอบสนอง หรือล่มระหว่างการดำเนินการ
วิธีแก้ไข:
- เพิ่ม timeout ใน config ของ MCP server หากรองรับ
- ตรวจสอบว่า process ของ MCP server ยังคงทำงานอยู่หรือไม่
- สำหรับเซิร์ฟเวอร์ MCP แบบ HTTP ระยะไกล ให้ตรวจสอบการเชื่อมต่อเครือข่าย
:::warning หาก MCP server ล่มระหว่างคำขอ Hermes จะรายงาน timeout ให้ตรวจสอบ log ของเซิร์ฟเวอร์เอง (ไม่ใช่แค่ log ของ Hermes) เพื่อวินิจฉัยสาเหตุที่แท้จริง :::
Profiles
Profiles แตกต่างจากการตั้งค่า HERMES_HOME อย่างไร?
Profiles เป็นชั้นการจัดการที่ทำงานอยู่เหนือ HERMES_HOME คุณสามารถตั้งค่า HERMES_HOME=/some/path ด้วยตนเองก่อนทุกคำสั่งได้ แต่ Profiles จะจัดการส่วนประกอบเบื้องหลังทั้งหมดให้คุณ: ทั้งการสร้างโครงสร้างไดเรกทอรี การสร้าง shell aliases (hermes-work) การติดตาม active profile ใน ~/.hermes/active_profile และการซิงค์การอัปเดต skill ข้ามทุก Profile โดยอัตโนมัติ นอกจากนี้ยังรวมการทำงานกับ tab completion ทำให้คุณไม่จำเป็นต้องจำ path ต่างๆ
Profiles สองตัวสามารถใช้ bot token เดียวกันได้หรือไม่?
ไม่ได้ แต่ละแพลตฟอร์มการส่งข้อความ (Telegram, Discord, ฯลฯ) ต้องการสิทธิ์เข้าถึง bot token แบบเฉพาะเจาะจง หาก Profiles สองตัวพยายามใช้ token เดียวกันพร้อมกัน gateway ตัวที่สองจะล้มเหลวในการเชื่อมต่อ ให้สร้าง bot แยกกันสำหรับแต่ละ Profile - สำหรับ Telegram ให้คุยกับ @BotFather เพื่อสร้าง bot เพิ่มเติม
Profiles แชร์หน่วยความจำหรือเซสชันกันหรือไม่?
ไม่ แต่ละ Profile มีที่เก็บหน่วยความจำ (memory store) ฐานข้อมูลเซสชัน และไดเรกทอรี skill เป็นของตัวเอง พวกมันแยกออกจากกันโดยสมบูรณ์ หากคุณต้องการเริ่มต้น Profile ใหม่โดยใช้หน่วยความจำและเซสชันที่มีอยู่ ให้ใช้ hermes profile create newname --clone-all เพื่อคัดลอกทุกอย่างจาก Profile ปัจจุบัน
เกิดอะไรขึ้นเมื่อฉันรัน hermes update?
hermes update จะดึงโค้ดล่าสุดและติดตั้ง dependencies ใหม่ เพียงครั้งเดียว (ไม่ใช่ต่อ Profile) จากนั้นมันจะซิงค์ skill ที่อัปเดตไปยังทุก Profile โดยอัตโนมัติ คุณจำเป็นต้องรัน hermes update เพียงครั้งเดียว - เพราะมันครอบคลุมทุก Profile บนเครื่อง
ฉันสามารถย้าย Profile ไปยังเครื่องอื่นได้หรือไม่?
ได้ ให้ export Profile เป็น archive แบบพกพา แล้ว import บนเครื่องอื่น:
# บนเครื่องต้นทาง
hermes profile export work ./work-backup.tar.gz
# คัดลอกไฟล์ไปยังเครื่องปลายทาง แล้ว:
hermes profile import ./work-backup.tar.gz workProfile ที่ import เข้ามาจะมี config, memories, sessions, และ skills ทั้งหมดจาก export คุณอาจจำเป็นต้องอัปเดต paths หรือ re-authenticate กับ providers หากเครื่องใหม่มีการตั้งค่าที่แตกต่างกัน
ฉันสามารถรัน Profiles ได้กี่ตัว?
ไม่มีขีดจำกัดที่ตายตัว แต่ละ Profile เป็นเพียงไดเรกทอรีภายใต้ ~/.hermes/profiles/ ขีดจำกัดในทางปฏิบัติขึ้นอยู่กับพื้นที่ดิสก์ของคุณ และจำนวน gateway พร้อมกันที่ระบบของคุณสามารถรองรับได้ (แต่ละ gateway คือ process Python น้ำหนักเบา) การรันหลายสิบ Profiles นั้นไม่มีปัญหา เพราะ Profile ที่ไม่ได้ใช้งานจะใช้ทรัพยากรเป็นศูนย์
Workflows & Patterns
การใช้โมเดลที่แตกต่างกันสำหรับงานที่แตกต่างกัน (multi-model workflows)
สถานการณ์: คุณใช้ GPT-5.4 เป็นโมเดลหลักในชีวิตประจำวัน แต่ Gemini หรือ Grok เขียนเนื้อหาโซเชียลมีเดียได้ดีกว่า การสลับโมเดลด้วยตนเองทุกครั้งนั้นน่าเบื่อ
วิธีแก้ปัญหา: Delegation config Hermes สามารถกำหนดเส้นทาง subagents ไปยังโมเดลที่แตกต่างกันโดยอัตโนมัติ ตั้งค่าสิ่งนี้ใน ~/.hermes/config.yaml:
delegation:
model: "google/gemini-3-flash-preview" # subagents ใช้โมเดลนี้
provider: "openrouter" # provider สำหรับ subagentsตอนนี้เมื่อคุณบอก Hermes ว่า "เขียน Twitter thread เกี่ยวกับ X ให้หน่อย" และมันสร้าง subagent ชื่อ delegate_task subagent นั้นจะทำงานบน Gemini แทนโมเดลหลักของคุณ การสนทนาหลักของคุณจะยังคงอยู่บน GPT-5.4
คุณยังสามารถระบุอย่างชัดเจนใน prompt ของคุณได้: "มอบหมายงานเพื่อเขียนโพสต์โซเชียลมีเดียเกี่ยวกับการเปิดตัวผลิตภัณฑ์ของเรา ใช้ subagent ของคุณสำหรับการเขียนจริง" agent จะใช้ delegate_task ซึ่งจะเลือก delegation config โดยอัตโนมัติ
สำหรับการสลับโมเดลแบบครั้งเดียวโดยไม่มี delegation ให้ใช้ /model ใน CLI:
/model google/gemini-3-flash-preview # สลับสำหรับเซสชันนี้
# ... เขียนเนื้อหาของคุณ ...
/model openai/gpt-5.4 # สลับกลับดู Subagent Delegation สำหรับรายละเอียดเพิ่มเติมเกี่ยวกับวิธีการทำงานของ delegation
การรันหลาย agent บน WhatsApp number เดียว (per-chat binding)
สถานการณ์: ใน OpenClaw คุณมีหลาย agent อิสระที่ผูกกับแชท WhatsApp เฉพาะ - ตัวหนึ่งสำหรับกลุ่มรายการช้อปปิ้งของครอบครัว อีกตัวสำหรับแชทส่วนตัวของคุณ Hermes ทำสิ่งนี้ได้หรือไม่?
ข้อจำกัดปัจจุบัน: Profiles ของ Hermes แต่ละตัวต้องใช้ WhatsApp number/session ของตัวเอง คุณไม่สามารถผูกหลาย Profiles เข้ากับแชทที่แตกต่างกันบน WhatsApp number เดียวได้ - เพราะ WhatsApp bridge (Baileys) ใช้เซสชันที่ได้รับการยืนยันเพียงหนึ่งเดียวต่อหมายเลข
วิธีแก้ไข:
-
ใช้ Profile เดียวพร้อมการสลับบุคลิกภาพ (personality switching) สร้างไฟล์ context
AGENTS.mdที่แตกต่างกัน หรือใช้คำสั่ง/personalityเพื่อเปลี่ยนพฤติกรรมตามแชท Agent จะเห็นว่ามันอยู่ในแชทใดและสามารถปรับตัวได้ -
ใช้ cron jobs สำหรับงานเฉพาะทาง สำหรับตัวติดตามรายการช้อปปิ้ง ให้ตั้งค่า cron job ที่ตรวจสอบแชทเฉพาะและจัดการรายการ - ไม่จำเป็นต้องมี agent แยก
-
ใช้หมายเลขแยกกัน หากคุณต้องการ agent ที่เป็นอิสระอย่างแท้จริง ให้จับคู่แต่ละ Profile กับ WhatsApp number ของตัวเอง หมายเลขเสมือนจากบริการอย่าง Google Voice ใช้ได้สำหรับสิ่งนี้
-
ใช้ Telegram หรือ Discord แทน แพลตฟอร์มเหล่านี้รองรับ per-chat binding ได้เป็นธรรมชาติกว่า - แต่ละกลุ่ม Telegram หรือช่อง Discord จะได้เซสชันของตัวเอง และคุณสามารถรัน bot token หลายตัว (ตัวละ Profile) บนบัญชีเดียวกันได้
ดู Profiles และ WhatsApp setup สำหรับรายละเอียดเพิ่มเติม
การควบคุมสิ่งที่แสดงใน Telegram (การซ่อน logs และ reasoning)
สถานการณ์: คุณเห็น gateway exec logs, Hermes reasoning, และรายละเอียด tool call ใน Telegram แทนที่จะเห็นแค่ผลลัพธ์สุดท้าย
วิธีแก้ปัญหา: การตั้งค่า display.tool_progress ใน config.yaml ควบคุมว่ากิจกรรมของ tool จะแสดงมากน้อยแค่ไหน:
display:
tool_progress: "off" # ตัวเลือก: off, new, all, verboseoff- แสดงเฉพาะคำตอบสุดท้าย ไม่มี tool calls, ไม่มี reasoning, ไม่มี logsnew- แสดง tool calls ใหม่เมื่อเกิดขึ้น (แบบสั้นๆ)all- แสดงกิจกรรม tool ทั้งหมด รวมถึงผลลัพธ์verbose- รายละเอียดเต็ม รวมถึง tool arguments และ outputs
สำหรับแพลตฟอร์มการส่งข้อความ โดยทั่วไปแล้ว off หรือ new คือสิ่งที่คุณต้องการ หลังจากแก้ไข config.yaml ให้รีสตาร์ท gateway เพื่อให้การเปลี่ยนแปลงมีผล
คุณยังสามารถสลับสิ่งนี้ได้ต่อเซสชันด้วยคำสั่ง /verbose (หากเปิดใช้งาน):
display:
tool_progress_command: true # เปิดใช้งาน /verbose ใน gatewayการจัดการ skills บน Telegram (ข้อจำกัด slash command)
สถานการณ์: Telegram มีข้อจำกัด 100 slash command และ skills ของคุณกำลังเกินขีดจำกัดนั้น คุณต้องการปิดใช้งาน skills ที่คุณไม่ต้องการบน Telegram แต่การตั้งค่า hermes skills config ดูเหมือนจะไม่ทำงาน
วิธีแก้ปัญหา: ใช้ hermes skills config เพื่อปิดใช้งาน skills แยกตามแพลตฟอร์ม สิ่งนี้จะเขียนลงใน config.yaml:
skills:
disabled: [] # skills ที่ถูกปิดใช้งานทั่วโลก
platform_disabled:
telegram: [skill-a, skill-b] # ปิดใช้งานเฉพาะบน telegramหลังจากเปลี่ยนสิ่งนี้ ให้รีสตาร์ท gateway (hermes gateway restart หรือ kill และ relaunch) เมนูคำสั่ง bot ของ Telegram จะสร้างขึ้นใหม่เมื่อเริ่มต้น
:::tip Skills ที่มีคำอธิบายยาวมากจะถูกตัดเหลือ 40 ตัวอักษรในเมนู Telegram เพื่อให้อยู่ในขีดจำกัดขนาด payload หาก skills ไม่ปรากฏ อาจเป็นปัญหาขนาด payload โดยรวมมากกว่าข้อจำกัดจำนวน 100 คำสั่ง - การปิดใช้งาน skills ที่ไม่ได้ใช้จะช่วยได้ทั้งสองอย่าง :::
เซสชัน thread ที่แชร์กัน (ผู้ใช้หลายคน, การสนทนาเดียว)
สถานการณ์: คุณมี thread ใน Telegram หรือ Discord ที่หลายคนกล่าวถึง bot คุณต้องการให้การกล่าวถึงทั้งหมดใน thread นั้นเป็นส่วนหนึ่งของการสนทนาที่แชร์กัน ไม่ใช่เซสชันแยกตามผู้ใช้
พฤติกรรมปัจจุบัน: Hermes สร้างเซสชันโดยใช้ user ID เป็นคีย์ในหลายแพลตฟอร์ม ดังนั้นแต่ละคนจะได้รับบริบทการสนทนาของตัวเอง นี่คือการออกแบบเพื่อความเป็นส่วนตัวและการแยกบริบท
วิธีแก้ไข:
-
ใช้ Slack เซสชันของ Slack จะถูกกำหนดคีย์ตาม thread ไม่ใช่ตามผู้ใช้ ผู้ใช้หลายคนใน thread เดียวกันจะแชร์การสนทนาเดียวกัน - ซึ่งเป็นพฤติกรรมที่คุณกำลังอธิบาย นี่คือรูปแบบที่เหมาะสมที่สุด
-
ใช้ group chat กับผู้ใช้คนเดียว หากมีคนหนึ่งเป็น "operator" ที่รับหน้าที่ส่งต่อคำถาม เซสชันจะยังคงเป็นหนึ่งเดียว คนอื่นสามารถอ่านตามได้
-
ใช้ Discord channel เซสชันของ Discord จะถูกกำหนดคีย์ตาม channel ดังนั้นผู้ใช้ทุกคนในช่องเดียวกันจะแชร์บริบท ใช้ช่องเฉพาะสำหรับการสนทนาที่แชร์
การ Export Hermes ไปยังเครื่องอื่น
สถานการณ์: คุณได้สร้าง skills, cron jobs, และ memories บนเครื่องหนึ่ง และต้องการย้ายทุกอย่างไปยัง Linux box ใหม่ที่ทุ่มเทให้งานนี้
วิธีแก้ปัญหา:
-
ติดตั้ง Hermes Agent บนเครื่องใหม่:
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash -
คัดลอกไดเรกทอรี
~/.hermes/ทั้งหมดของคุณ ยกเว้น subdirectoryhermes-agent(นั่นคือ code repo - การติดตั้งใหม่มีของตัวเอง):# บนเครื่องต้นทาง rsync -av --exclude='hermes-agent' ~/.hermes/ newmachine:~/.hermes/หรือใช้ profile export/import:
# บนเครื่องต้นทาง hermes profile export default ./hermes-backup.tar.gz # บนเครื่องปลายทาง hermes profile import ./hermes-backup.tar.gz default -
บนเครื่องใหม่ ให้รัน
hermes setupเพื่อตรวจสอบว่า API keys และ provider config ทำงานได้หรือไม่ ให้ re-authenticate messaging platforms ใดๆ (โดยเฉพาะ WhatsApp ซึ่งใช้ QR pairing)
ไดเรกทอรี ~/.hermes/ บรรจุทุกอย่าง: config.yaml, .env, SOUL.md, memories/, skills/, state.db (sessions), cron/, และ custom plugins ใดๆ โค้ดเองอยู่ใน ~/.hermes/hermes-agent/ และถูกติดตั้งใหม่
Permission denied เมื่อ reload shell หลังติดตั้ง
สถานการณ์: หลังจากรัน Hermes installer, source ~/.zshrc ให้ข้อผิดพลาด permission denied
สาเหตุ: โดยปกติสิ่งนี้เกิดขึ้นเมื่อ ~/.zshrc (หรือ ~/.bashrc) มีสิทธิ์ไฟล์ที่ไม่ถูกต้อง หรือเมื่อ installer ไม่สามารถเขียนลงไปได้อย่างสะอาด มันไม่ใช่ปัญหาเฉพาะของ Hermes - แต่มันเป็นปัญหา permission ของ shell config
วิธีแก้ปัญหา:
# ตรวจสอบสิทธิ์
ls -la ~/.zshrc
# แก้ไขหากจำเป็น (ควรเป็น -rw-r--r-- หรือ 644)
chmod 644 ~/.zshrc
# จากนั้น reload
source ~/.zshrc
# หรือเปิดหน้าต่าง terminal ใหม่ - มันจะรับ PATH changes โดยอัตโนมัติหาก installer เพิ่มบรรทัด PATH แต่สิทธิ์ผิด คุณสามารถเพิ่มมันด้วยตนเอง:
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrcError 400 ในการรัน agent ครั้งแรก
สถานการณ์: การตั้งค่าเสร็จสมบูรณ์ดี แต่การลองแชทครั้งแรกล้มเหลวด้วย HTTP 400
สาเหตุ: โดยปกติคือ model name mismatch - model ที่กำหนดค่าไว้ไม่มีอยู่บน provider ของคุณ หรือ API key ไม่มีสิทธิ์เข้าถึงมัน
วิธีแก้ปัญหา:
# ตรวจสอบว่า model และ provider ใดถูกกำหนดค่าไว้
hermes config show | head -20
# รัน model selection ใหม่
hermes model
# หรือทดสอบด้วย model ที่ทราบว่าใช้งานได้
hermes chat -q "hello" --model anthropic/claude-opus-4.7หากใช้ OpenRouter ให้แน่ใจว่า API key ของคุณมีเครดิต 400 จาก OpenRouter มักหมายความว่า model นั้นต้องใช้แผนแบบเสียเงิน หรือ model ID มีการพิมพ์ผิด
ยังติดปัญหาอยู่ใช่ไหม?
หากปัญหาของคุณไม่ได้ถูกกล่าวถึงที่นี่:
- ค้นหา issue ที่มีอยู่: GitHub Issues
- สอบถามชุมชน: Nous Research Discord
- รายงาน bug: รวม OS, Python version (
python3 --version), Hermes version (hermes --version), และข้อความ error ทั้งหมด
📄 reference/mcp-config-reference.md
sidebar_position: 8 title: "MCP Config Reference" description: "Reference for Hermes Agent MCP configuration keys, filtering semantics, and utility-tool policy"
MCP Config Reference
หน้านี้เป็นเอกสารอ้างอิงฉบับย่อที่ใช้คู่กับเอกสาร MCP หลัก
หากต้องการคำแนะนำเชิงแนวคิด โปรดดูที่:
Root config shape
mcp_servers:
<server_name>:
command: "..." # stdio servers
args: []
env: {}
# OR
url: "..." # HTTP servers
headers: {}
enabled: true
timeout: 120
connect_timeout: 60
tools:
include: []
exclude: []
resources: true
prompts: trueServer keys
| Key | Type | Applies to | Meaning |
|---|---|---|---|
command | string | stdio | Executable to launch |
args | list | stdio | Arguments for the subprocess |
env | mapping | stdio | Environment passed to the subprocess |
url | string | HTTP | Remote MCP endpoint |
headers | mapping | HTTP | Headers for remote server requests |
enabled | bool | both | Skip the server entirely when false |
timeout | number | both | Tool call timeout |
connect_timeout | number | both | Initial connection timeout |
tools | mapping | both | Filtering and utility-tool policy |
auth | string | HTTP | Authentication method. Set to oauth to enable OAuth 2.1 with PKCE |
sampling | mapping | both | Server-initiated LLM request policy (see MCP guide) |
tools policy keys
| Key | Type | Meaning |
|---|---|---|
include | string or list | Whitelist server-native MCP tools |
exclude | string or list | Blacklist server-native MCP tools |
resources | bool-like | Enable/disable list_resources + read_resource |
prompts | bool-like | Enable/disable list_prompts + get_prompt |
Filtering semantics
include
หากมีการตั้งค่า include จะลงทะเบียนเฉพาะ MCP tools แบบ native ของเซิร์ฟเวอร์เท่านั้น
tools:
include: [create_issue, list_issues]exclude
หากมีการตั้งค่า exclude และไม่มีการตั้งค่า include จะลงทะเบียน MCP tools แบบ native ทั้งหมด ยกเว้นชื่อที่ระบุ
tools:
exclude: [delete_customer]Precedence
หากมีการตั้งค่าทั้งสองอย่าง include จะมีลำดับความสำคัญสูงกว่า
tools:
include: [create_issue]
exclude: [create_issue, delete_issue]ผลลัพธ์:
create_issueยังคงได้รับอนุญาตdelete_issueถูกละเลยเนื่องจากincludeมีลำดับความสำคัญสูงกว่า
Utility-tool policy
Hermes อาจลงทะเบียน utility wrappers เหล่านี้ต่อ MCP server:
Resources:
list_resourcesread_resource
Prompts:
list_promptsget_prompt
Disable resources
tools:
resources: falseDisable prompts
tools:
prompts: falseCapability-aware registration
แม้ว่า resources: true หรือ prompts: true แต่ Hermes จะลงทะเบียน utility tools เหล่านั้นก็ต่อเมื่อ MCP session เปิดเผย capability ที่เกี่ยวข้องจริงเท่านั้น
ดังนั้นกรณีนี้จึงเป็นปกติ:
- คุณเปิดใช้งาน prompts
- แต่ไม่มี utility prompt ใดปรากฏ
- เนื่องจากเซิร์ฟเวอร์ไม่รองรับ prompts
enabled: false
mcp_servers:
legacy:
url: "https://mcp.legacy.internal"
enabled: falseพฤติกรรม:
- ไม่มีการพยายามเชื่อมต่อ
- ไม่มีการค้นพบ (discovery)
- ไม่มีการลงทะเบียน tool
- config ยังคงอยู่เพื่อนำกลับมาใช้ใหม่ในภายหลัง
Empty result behavior
หากการกรองลบ tools แบบ native ของเซิร์ฟเวอร์ออกทั้งหมด และไม่มี utility tools ใดถูกลงทะเบียน Hermes จะไม่สร้าง MCP runtime toolset ว่างเปล่าสำหรับเซิร์ฟเวอร์นั้น
Example configs
Safe GitHub allowlist
mcp_servers:
github:
command: "npx"
args: ["-y", "@modelcontextprotocol/server-github"]
env:
GITHUB_PERSONAL_ACCESS_TOKEN: "***"
tools:
include: [list_issues, create_issue, update_issue, search_code]
resources: false
prompts: falseStripe blacklist
mcp_servers:
stripe:
url: "https://mcp.stripe.com"
headers:
Authorization: "Bearer ***"
tools:
exclude: [delete_customer, refund_payment]Resource-only docs server
mcp_servers:
docs:
url: "https://mcp.docs.example.com"
tools:
include: []
resources: true
prompts: falseReloading config
หลังจากเปลี่ยน MCP config ให้โหลดเซิร์ฟเวอร์ใหม่ด้วยคำสั่ง:
/reload-mcpTool naming
MCP tools แบบ native ของเซิร์ฟเวอร์จะกลายเป็น:
mcp_<server>_<tool>ตัวอย่าง:
mcp_github_create_issuemcp_filesystem_read_filemcp_my_api_query_data
Utility tools จะตามรูปแบบ prefix เดียวกัน:
mcp_<server>_list_resourcesmcp_<server>_read_resourcemcp_<server>_list_promptsmcp_<server>_get_prompt
Name sanitization
เครื่องหมายยัติภังค์ (-) และจุด (.) ในทั้งชื่อเซิร์ฟเวอร์และชื่อ tool จะถูกแทนที่ด้วยขีดล่าง (_) ก่อนการลงทะเบียน สิ่งนี้ช่วยให้มั่นใจว่าชื่อ tool เป็น identifier ที่ถูกต้องสำหรับ LLM function-calling APIs
ตัวอย่างเช่น เซิร์ฟเวอร์ชื่อ my-api ที่เปิดเผย tool ชื่อ list-items.v2 จะกลายเป็น:
mcp_my_api_list_items_v2โปรดจำไว้เมื่อเขียนตัวกรอง include / exclude - ให้ใช้ชื่อ MCP tool ดั้งเดิม (พร้อมเครื่องหมายยัติภังค์/จุด) ไม่ใช่เวอร์ชันที่ถูก sanitize
OAuth 2.1 authentication
สำหรับ HTTP servers ที่ต้องการ OAuth ให้ตั้งค่า auth: oauth ในรายการเซิร์ฟเวอร์:
mcp_servers:
protected_api:
url: "https://mcp.example.com/mcp"
auth: oauthพฤติกรรม:
- Hermes ใช้ flow OAuth 2.1 PKCE ของ MCP SDK (metadata discovery, dynamic client registration, token exchange, และ refresh)
- เมื่อเชื่อมต่อครั้งแรก หน้าต่างเบราว์เซอร์จะเปิดขึ้นเพื่อขอสิทธิ์ (authorization)
- Tokens จะถูกบันทึกไว้ที่
~/.hermes/mcp-tokens/<server>.jsonและนำกลับมาใช้ใหม่ข้าม session - การ refresh token เป็นไปโดยอัตโนมัติ; การขอสิทธิ์ใหม่จะเกิดขึ้นเมื่อการ refresh ล้มเหลวเท่านั้น
- ใช้ได้เฉพาะกับ transport HTTP/StreamableHTTP (เซิร์ฟเวอร์ที่อิงตาม
url)
📄 reference/optional-skills-catalog.md
sidebar_position: 9 title: "Optional Skills Catalog" description: "ชุดทักษะเสริมอย่างเป็นทางการที่มาพร้อมกับ hermes-agent - ติดตั้งผ่าน hermes skills install official/<category>/<skill>"
Optional Skills Catalog
ชุดทักษะเสริมจะมาพร้อมกับ hermes-agent ภายใต้ optional-skills/ แต่ จะไม่ทำงานโดยค่าเริ่มต้น คุณต้องติดตั้งอย่างชัดเจน:
hermes skills install official/<category>/<skill>ตัวอย่างเช่น:
hermes skills install official/blockchain/solana
hermes skills install official/mlops/flash-attentionทักษะแต่ละตัวด้านล่างนี้จะเชื่อมโยงไปยังหน้าเฉพาะที่มีคำจำกัดความ การตั้งค่า และวิธีการใช้งานอย่างครบถ้วน
ในการถอนการติดตั้ง:
hermes skills uninstall <skill-name>autonomous-ai-agents
| Skill | Description |
|---|---|
| blackbox | มอบหมายงานโค้ดดิ้งให้กับ Blackbox AI CLI agent เป็นเอเจนต์แบบ Multi-model ที่มี judge ในตัว ซึ่งรันงานผ่าน LLMs หลายตัวและเลือกผลลัพธ์ที่ดีที่สุด ต้องใช้ blackbox CLI และ Blackbox AI API key |
| honcho | กำหนดค่าและใช้ Honcho memory กับ Hermes - การสร้างแบบจำลองผู้ใช้ข้ามเซสชัน, การแยกตัวแบบ Multi-profile, การกำหนดค่าการสังเกตการณ์, การให้เหตุผลแบบ dialectic, สรุปเซสชัน, และการบังคับใช้งบประมาณบริบท ใช้เมื่อตั้งค่า Honcho, แก้ปัญหา... |
blockchain
| Skill | Description |
|---|---|
| base | สอบถามข้อมูลบล็อกเชน Base (Ethereum L2) พร้อมราคา USD - ยอดคงเหลือในวอลเล็ต, ข้อมูลโทเคน, รายละเอียดธุรกรรม, การวิเคราะห์ gas, การตรวจสอบสัญญา, การตรวจจับวาฬ (whale), และสถิติเครือข่ายสด ใช้ Base RPC + CoinGecko ไม่ต้องใช้ API key |
| solana | สอบถามข้อมูลบล็อกเชน Solana พร้อมราคา USD - ยอดคงเหลือในวอลเล็ต, พอร์ตโฟลิโอโทเคนพร้อมมูลค่า, รายละเอียดธุรกรรม, NFTs, การตรวจจับวาฬ, และสถิติเครือข่ายสด ใช้ Solana RPC + CoinGecko ไม่ต้องใช้ API key |
communication
| Skill | Description |
|---|---|
| one-three-one-rule | กรอบการตัดสินใจแบบมีโครงสร้างสำหรับการนำเสนอทางเทคนิคและการวิเคราะห์ข้อดีข้อเสีย เมื่อผู้ใช้เผชิญทางเลือกระหว่างแนวทางหลายอย่าง (การตัดสินใจสถาปัตยกรรม, การเลือกเครื่องมือ, กลยุทธ์การ refactoring, เส้นทางการย้ายระบบ) ทักษะนี้จะ... |
creative
| Skill | Description |
|---|---|
| blender-mcp | ควบคุม Blender โดยตรงจาก Hermes ผ่านการเชื่อมต่อ socket ไปยัง addon blender-mcp สร้างวัตถุ 3D, วัสดุ, แอนิเมชัน, และรันโค้ด Python (bpy) ของ Blender แบบใดก็ได้ ใช้เมื่อผู้ใช้ต้องการสร้างหรือแก้ไขสิ่งใดๆ ใน Blender |
| concept-diagrams | สร้างแผนภาพ SVG ที่เรียบง่ายและเป็นมิตรกับโหมดสว่าง/มืด ในรูปแบบไฟล์ HTML แบบ standalone โดยใช้ภาษาภาพเพื่อการศึกษาที่เป็นหนึ่งเดียวพร้อม 9 semantic color ramps, typography แบบ sentence-case, และ dark mode อัตโนมัติ เหมาะที่สุดสำหรับการศึกษาและ... |
| meme-generation | สร้างรูปภาพ meme จริงโดยการเลือก template และซ้อนข้อความด้วย Pillow สร้างไฟล์ meme .png จริง |
| touchdesigner-mcp | ควบคุม instance ของ TouchDesigner ที่กำลังทำงานอยู่ผ่าน twozero MCP - สร้าง operators, ตั้งค่า parameters, เชื่อมต่อ connections, execute Python, สร้าง visuals แบบ real-time มีเครื่องมือในตัว 36 อย่าง |
devops
| Skill | Description |
|---|---|
| inference-sh-cli | รันแอป AI มากกว่า 150 ตัวผ่าน inference.sh CLI (infsh) - การสร้างรูปภาพ, การสร้างวิดีโอ, LLMs, การค้นหา, 3D, ระบบอัตโนมัติทางสังคม ใช้เครื่องมือ terminal ทริกเกอร์: inference.sh, infsh, ai apps, flux, veo, image generation, video generation, seedrea... |
| docker-management | จัดการ Docker containers, images, volumes, networks, และ Compose stacks - การดำเนินการวงจรชีวิต, การ debug, การล้างข้อมูล, และการ optimize Dockerfile |
dogfood
| Skill | Description |
|---|---|
| adversarial-ux-test | สวมบทบาทเป็นผู้ใช้ที่ยากที่สุดและต่อต้านเทคโนโลยีสำหรับผลิตภัณฑ์ของคุณ เรียกดูแอปในฐานะ persona นั้น ค้นหาจุดบกพร่องด้าน UX ทุกจุด จากนั้นกรองข้อร้องเรียนผ่านชั้นของ pragmatism เพื่อแยกปัญหาจริงออกจาก noise สร้าง ticket ที่นำไปปฏิบัติได้... |
| Skill | Description |
|---|---|
| agentmail | มอบกล่องจดหมายอีเมลเฉพาะตัวให้เอเจนต์ผ่าน AgentMail ส่ง, รับ, และจัดการอีเมลโดยอัตโนมัติโดยใช้ที่อยู่อีเมลที่เป็นของเอเจนต์ (เช่น [email protected]) |
health
| Skill | Description |
|---|---|
| fitness-nutrition | แพลนเนอร์ออกกำลังกายในยิมและตัวติดตามโภชนาการ ค้นหาการออกกำลังกายกว่า 690 รายการตามกล้ามเนื้อ, อุปกรณ์, หรือหมวดหมู่ผ่าน wger ค้นหาค่า macro และแคลอรี่สำหรับอาหารกว่า 380,000 รายการผ่าน USDA FoodData Central คำนวณ BMI, TDEE, one-rep max, macro splits, และร่างกาย... |
| neuroskill-bci | เชื่อมต่อกับ instance ของ NeuroSkill ที่กำลังทำงานอยู่ และรวมสถานะทางความคิดและอารมณ์แบบ real-time ของผู้ใช้ (สมาธิ, การผ่อนคลาย, อารมณ์, ภาระทางความคิด, อาการง่วง, อัตราการเต้นของหัวใจ, HRV, sleep staging, และคะแนน EXG ที่ได้มา 40+ อย่าง) เข้าไปในการตอบสนอง... |
mcp
| Skill | Description |
|---|---|
| fastmcp | สร้าง, ทดสอบ, ตรวจสอบ, ติดตั้ง, และ deploy MCP servers ด้วย FastMCP ใน Python ใช้เมื่อสร้าง MCP server ใหม่, ห่อหุ้ม API หรือฐานข้อมูลเป็น MCP tools, เปิดเผย resources หรือ prompts, หรือเตรียม FastMCP server สำหรับ Claude Code, Cur... |
| mcporter | ใช้ mcporter CLI เพื่อแสดงรายการ, กำหนดค่า, auth, และเรียกใช้ MCP servers/tools โดยตรง (HTTP หรือ stdio) รวมถึงเซิร์ฟเวอร์แบบ ad-hoc, การแก้ไข config, และการสร้าง CLI/type |
migration
| Skill | Description |
|---|---|
| openclaw-migration | ย้าย footprint การปรับแต่ง OpenClaw ของผู้ใช้ไปยัง Hermes Agent นำเข้า memories ที่เข้ากันได้กับ Hermes, SOUL.md, command allowlists, user skills, และ selected workspace assets จาก ~/.openclaw จากนั้นรายงานว่าอะไรที่ไม่สามารถย้ายได้... |
mlops
| Skill | Description |
|---|---|
| huggingface-accelerate | API การฝึกแบบกระจายที่ง่ายที่สุด 4 บรรทัดเพื่อเพิ่มการรองรับแบบกระจายให้กับ PyTorch script ใดๆ API แบบรวมสำหรับ DeepSpeed/FSDP/Megatron/DDP การวางอุปกรณ์อัตโนมัติ, mixed precision (FP16/BF16/FP8) config แบบโต้ตอบ, single launch comm... |
| chroma | ฐานข้อมูล embedding open-source สำหรับแอปพลิเคชัน AI จัดเก็บ embeddings และ metadata, ดำเนินการค้นหา vector และ full-text, กรองตาม metadata API 4 ฟังก์ชันง่ายๆ ขยายขนาดได้ตั้งแต่ notebook ไปจนถึง production clusters ใช้สำหรับ semantic search, RAG... |
| clip | โมเดลของ OpenAI ที่เชื่อมโยง vision และ language ช่วยให้สามารถทำ zero-shot image classification, image-text matching, และ cross-modal retrieval ฝึกฝนด้วยคู่ image-text 400M ใช้สำหรับ image search, content moderation, หรืองาน vision-language... |
| faiss | ไลบรารีของ Facebook สำหรับการค้นหาความคล้ายคลึงกันและ clustering ของ dense vectors อย่างมีประสิทธิภาพ รองรับ vectors นับพันล้าน, GPU acceleration, และ index types ต่างๆ (Flat, IVF, HNSW) ใช้สำหรับ k-NN search ที่รวดเร็ว, vector retrieval ขนาดใหญ่, หรือ... |
| optimizing-attention-flash | ปรับปรุง transformer attention ด้วย Flash Attention เพื่อเพิ่มความเร็ว 2-4x และลดหน่วยความจำ 10-20x ใช้เมื่อฝึก/รัน transformers ที่มีลำดับยาว (>512 tokens), พบปัญหาหน่วยความจำ GPU กับ attention, หรือต้องการ inference ที่เร็วกว่า... |
| guidance | ควบคุม LLM output ด้วย regex และ grammars รับประกันการสร้าง JSON/XML/code ที่ถูกต้อง, บังคับใช้รูปแบบที่มีโครงสร้าง, และสร้าง multi-step workflows ด้วย Guidance - framework การสร้างแบบมีข้อจำกัดของ Microsoft Research |
| hermes-atropos-environments | สร้าง, ทดสอบ, และ debug Hermes Agent RL environments สำหรับ Atropos training ครอบคลุม interface HermesAgentBaseEnv, reward functions, agent loop integration, evaluation with tools, wandb logging, และโหมด CLI สามโหมด (serve/process/eva... |
| huggingface-tokenizers | Tokenizers ที่รวดเร็วและปรับปรุงให้เหมาะสมสำหรับการวิจัยและการผลิต การใช้งานที่อิง Rust สามารถ tokenize 1GB ได้ในเวลา <20 วินาที รองรับ BPE, WordPiece, และ Unigram algorithms ฝึก vocabularies แบบกำหนดเอง, ติดตาม alignments, จัดการ padding/truncation. Integ... |
| instructor | ดึงข้อมูลที่มีโครงสร้างจาก LLM responses ด้วย Pydantic validation, retry การดึงข้อมูลที่ล้มเหลวโดยอัตโนมัติ, parse JSON ที่ซับซ้อนด้วย type safety, และ stream partial results ด้วย Instructor - ไลบรารี structured output ที่ผ่านการทดสอบมาแล้ว |
| lambda-labs-gpu-cloud | GPU cloud instances แบบ reserved และ on-demand สำหรับการฝึกและการอนุมาน ML ใช้เมื่อคุณต้องการ dedicated GPU instances พร้อม SSH access แบบง่าย, persistent filesystems, หรือ multi-node clusters ประสิทธิภาพสูงสำหรับการฝึกขนาดใหญ่ |
| llava | Large Language and Vision Assistant ช่วยให้สามารถปรับจูนคำสั่งด้วยภาพและบทสนทนาที่อิงจากรูปภาพ รวม CLIP vision encoder เข้ากับโมเดลภาษา Vicuna/LLaMA รองรับ multi-turn image chat, visual question answering, และ instruct... |
| modal-serverless-gpu | แพลตฟอร์ม GPU cloud แบบ serverless สำหรับการรัน ML workloads ใช้เมื่อคุณต้องการการเข้าถึง GPU แบบ on-demand โดยไม่ต้องจัดการ infrastructure, การ deploy ML models เป็น API, หรือการรัน batch jobs พร้อมการปรับขนาดอัตโนมัติ |
| nemo-curator | การดูแลข้อมูลที่เร่งความเร็วด้วย GPU สำหรับการฝึก LLM รองรับ text/image/video/audio มีคุณสมบัติ fuzzy deduplication (เร็วกว่า 16×), quality filtering (กว่า 30 heuristics), semantic deduplication, PII redaction, NSFW detection ขยายขนาดได้ข้าม GPUs wit... |
| peft-fine-tuning | การปรับแต่งแบบ Parameter-efficient สำหรับ LLMs โดยใช้ LoRA, QLoRA, และกว่า 25 methods ใช้เมื่อ fine-tuning โมเดลขนาดใหญ่ (7B-70B) ด้วยหน่วยความจำ GPU ที่จำกัด, เมื่อคุณต้องฝึก <1% ของ parameters ด้วยการสูญเสียความแม่นยำน้อยที่สุด, หรือสำหรับ multi-adapter se... |
| pinecone | Managed vector database สำหรับแอปพลิเคชัน AI ในการผลิต จัดการเต็มรูปแบบ, auto-scaling, พร้อม hybrid search (dense + sparse), metadata filtering, และ namespaces มี latency ต่ำ (<100ms p95) ใช้สำหรับ RAG ในการผลิต, recommendation systems, หรือ... |
| pytorch-fsdp | คำแนะนำผู้เชี่ยวชาญสำหรับการฝึก Fully Sharded Data Parallel ด้วย PyTorch FSDP - parameter sharding, mixed precision, CPU offloading, FSDP2 |
| pytorch-lightning | PyTorch framework ระดับสูงพร้อม Trainer class, automatic distributed training (DDP/FSDP/DeepSpeed), callbacks system, และ minimal boilerplate ขยายขนาดได้ตั้งแต่ laptop ไปจนถึง supercomputer ด้วยโค้ดเดียวกัน ใช้เมื่อคุณต้องการ clean training loops w... |
| qdrant-vector-search | เครื่องมือค้นหาความคล้ายคลึงกันของ vector ประสิทธิภาพสูงสำหรับ RAG และ semantic search ใช้เมื่อสร้างระบบ RAG ในการผลิตที่ต้องการ fast nearest neighbor search, hybrid search with filtering, หรือ scalable vector storage ด้วย per... ที่ขับเคลื่อนด้วย Rust |
| sparse-autoencoder-training | ให้คำแนะนำสำหรับการฝึกและวิเคราะห์ Sparse Autoencoders (SAEs) โดยใช้ SAELens เพื่อแยก activation ของ neural network ให้เป็น features ที่ตีความได้ ใช้เมื่อค้นพบ features ที่ตีความได้, วิเคราะห์ superposition, หรือศึกษา... |
| simpo-training | Simple Preference Optimization สำหรับการจัดแนว (alignment) ของ LLM ทางเลือกที่ไม่มี reference-free แทน DPO ด้วยประสิทธิภาพที่ดีกว่า (+6.4 points on AlpacaEval 2.0) ไม่ต้องใช้ reference model, มีประสิทธิภาพกว่า DPO ใช้สำหรับการจัดแนวตามความชอบเมื่อต้องการให้ง่าย... |
| slime-rl-training | ให้คำแนะนำสำหรับการ post-training LLM ด้วย RL โดยใช้ slime ซึ่งเป็น framework แบบ Megatron+SGLang ใช้เมื่อฝึกโมเดล GLM, การใช้งาน workflow การสร้างข้อมูลแบบกำหนดเอง, หรือต้องการการรวม Megatron-LM ที่แน่นหนาสำหรับการขยายขนาด RL |
| stable-diffusion-image-generation | การสร้างภาพจากข้อความ (text-to-image) ระดับ State-of-the-art ด้วยโมเดล Stable Diffusion ผ่าน HuggingFace Diffusers ใช้เมื่อสร้างรูปภาพจาก text prompts, การทำ image-to-image translation, inpainting, หรือการสร้าง custom diffusion pipelines |
| tensorrt-llm | ปรับปรุง LLM inference ด้วย NVIDIA TensorRT เพื่อ throughput สูงสุดและ latency ต่ำสุด ใช้สำหรับการ deploy ในการผลิตบน NVIDIA GPUs (A100/H100), เมื่อคุณต้องการ inference ที่เร็วกว่า PyTorch 10-100x, หรือสำหรับการ serve models ด้วย quantizatio... |
| distributed-llm-pretraining-torchtitan | ให้ PyTorch-native distributed LLM pretraining โดยใช้ torchtitan ด้วย 4D parallelism (FSDP2, TP, PP, CP) ใช้เมื่อ pretraining Llama 3.1, DeepSeek V3, หรือโมเดลที่กำหนดเองในระดับสเกลจาก 8 ถึง 512+ GPUs ด้วย Float8, torch.compile, และ dist... |
| whisper | โมเดลรู้จำคำพูด (speech recognition) ทั่วไปของ OpenAI รองรับ 99 ภาษา, transcription, translation เป็นภาษาอังกฤษ, และ language identification มีขนาดโมเดล 6 ขนาดตั้งแต่ tiny (39M params) ถึง large (1550M params) ใช้สำหรับ speech-to-text, podcast... |
productivity
| Skill | Description |
|---|---|
| canvas | การรวม Canvas LMS - ดึง courses และ assignments ที่ลงทะเบียนแล้วโดยใช้ API token authentication |
| memento-flashcards | ระบบ flashcard แบบ Spaced-repetition สร้าง cards จาก facts หรือ text, chat กับ flashcards โดยใช้ free-text answers ที่ถูกให้คะแนนโดย agent, สร้าง quizzes จาก YouTube transcripts, ทบทวน cards ที่ถึงกำหนดด้วย adaptive scheduling, และ export/import... |
| siyuan | SiYuan Note API สำหรับการค้นหา, อ่าน, สร้าง, และจัดการ blocks และ documents ใน knowledge base ที่โฮสต์เองผ่าน curl |
| telephony | มอบความสามารถทางโทรศัพท์ให้ Hermes โดยไม่ต้องเปลี่ยน core tool จัดเตรียมและคงสถานะหมายเลข Twilio, ส่งและรับ SMS/MMS, โทรออกโดยตรง, และวางสายออกที่ขับเคลื่อนด้วย AI ผ่าน Bland.ai หรือ Vapi |
research
| Skill | Description |
|---|---|
| bioinformatics | ประตูสู่ทักษะ bioinformatics กว่า 400 อย่างจาก bioSkills และ ClawBio ครอบคลุม genomics, transcriptomics, single-cell, variant calling, pharmacogenomics, metagenomics, structural biology, และอื่นๆ ดึง reference material เฉพาะโดเมนเกี่ยวกับ... |
| domain-intel | การลาดตระเวนโดเมนแบบ Passive โดยใช้ Python stdlib การค้นพบ subdomain, การตรวจสอบ SSL certificate, WHOIS lookups, DNS records, การตรวจสอบความพร้อมของโดเมน, และการวิเคราะห์ multi-domain แบบกลุ่ม ไม่ต้องใช้ API keys |
| drug-discovery | ผู้ช่วยวิจัยเภสัชสำหรับ workflow การค้นพบยา ค้นหา bioactive compounds บน ChEMBL, คำนวณ drug-likeness (Lipinski Ro5, QED, TPSA, synthetic accessibility), ดู drug-drug interactions ผ่าน OpenFDA, ตีความ ADMET... |
| duckduckgo-search | การค้นหาเว็บฟรีผ่าน DuckDuckGo - text, news, images, videos ไม่ต้องใช้ API key แนะนำให้ใช้ CLI ddgs เมื่อติดตั้ง; ใช้ไลบรารี Python DDGS ก็ต่อเมื่อยืนยันว่า ddgs มีอยู่ใน runtime ปัจจุบัน |
| gitnexus-explorer | Index codebase ด้วย GitNexus และให้บริการ knowledge graph แบบ interactive ผ่าน web UI + Cloudflare tunnel |
| parallel-cli | Optional vendor skill สำหรับ Parallel CLI - web search, extraction, deep research, enrichment, FindAll, และ monitoring แบบ native-agent Prefer JSON output และ non-interactive flows |
| qmd | ค้นหา personal knowledge bases, notes, docs, และ meeting transcripts ในเครื่องโดยใช้ qmd - hybrid retrieval engine ที่มี BM25, vector search, และ LLM reranking รองรับ CLI และ MCP integration |
| scrapling | Web scraping ด้วย Scrapling - HTTP fetching, stealth browser automation, Cloudflare bypass, และ spider crawling ผ่าน CLI และ Python |
security
| Skill | Description |
|---|---|
| 1password | ตั้งค่าและใช้ 1Password CLI (op) ใช้เมื่อติดตั้ง CLI, เปิดใช้งาน desktop app integration, sign in, และอ่าน/inject secrets สำหรับคำสั่ง |
| oss-forensics | การสอบสวน supply chain, การกู้คืนหลักฐาน, และการวิเคราะห์ทางนิติวิทยาศาสตร์สำหรับ GitHub repositories ครอบคลุมการกู้คืน commit ที่ถูกลบ, การตรวจจับ force-push, IOC extraction, การรวบรวมหลักฐานหลายแหล่ง, การสร้าง/ตรวจสอบสมมติฐาน, และ... |
| sherlock | การค้นหาชื่อผู้ใช้ OSINT ในเครือข่ายสังคมออนไลน์กว่า 400 แห่ง ค้นหาบัญชีโซเชียลมีเดียตามชื่อผู้ใช้ |
web-development
| Skill | Description |
|---|---|
| page-agent | ฝัง alibaba/page-agent เข้าไปใน web application ของคุณเอง - agent GUI แบบ pure-JavaScript ในหน้าเดียวที่มาพร้อมเป็น <script> tag เดียวหรือ npm package และให้ผู้ใช้ปลายทางของเว็บไซต์ขับเคลื่อน UI ด้วยภาษาธรรมชาติ ("click login, fill userna... |
Contributing Optional Skills
ในการเพิ่ม optional skill ใหม่ไปยัง repository:
- สร้าง directory ภายใต้
optional-skills/<category>/<skill-name>/ - เพิ่ม
SKILL.mdพร้อม frontmatter มาตรฐาน (ชื่อ, คำอธิบาย, เวอร์ชัน, ผู้เขียน) - รวมไฟล์สนับสนุนใดๆ ใน subdirectory
references/,templates/, หรือscripts/ - ส่ง pull request - skill จะปรากฏใน catalog นี้และจะมีหน้าเอกสารของตัวเองเมื่อรวมโค้ดแล้ว
extent analysis
TL;DR
To resolve the issue, identify the specific problem or error message in the provided GitHub issue body and follow the corresponding troubleshooting guide or FAQ section in the Hermes Agent documentation.
Guidance
- Review the issue body: Carefully read the issue description to understand the problem or error encountered.
- Check the FAQs: Refer to the FAQ section in the documentation for common issues and solutions, such as installation problems, provider setup, or model configuration.
- Consult the troubleshooting guide: Look for specific troubleshooting sections related to the issue, such as "Installation Issues," "Provider & Model Issues," or "Terminal Issues."
- Search for similar issues: Use the search function in the GitHub issues or documentation to find similar problems and their solutions.
Example
For example, if the issue is related to a "command not found" error after installation, refer to the "Installation Issues" section in the troubleshooting guide.
Notes
- Make sure to follow the instructions carefully and provide detailed information about the issue, including any error messages or relevant configuration settings.
- If the issue is not resolved after following the troubleshooting guide, consider seeking help from the community or opening a new issue on GitHub.
Recommendation
Apply the workaround or solution provided in the corresponding FAQ or troubleshooting section. If the issue persists, consider upgrading to a fixed version of the Hermes Agent or seeking further assistance from the community.
Vote matrix · Quick signals
Still need to ship something?
×6Another batch ranked right after the header list — different links, same matching logic.
TRENDING
- Feature Request: Configurable per-minute rate limiting (RPM) for models to prevent 429 errors
- Android: Hermes App + Termux install share ~/.hermes and cause silent permission loops
- hermes update emits unicode-animations ANSI demo in non-interactive logs
- hermes update downgrades aiohttp from 3.13.4 to 3.13.3
- npm install warns about deprecated @babel/plugin-proposal-private-methods
- DingTalk inbound media URLs are skipped as unreadable native image paths
- fix(dashboard): ChatPage clears header action buttons on ALL pages, not just Sessions
- [Bug]: check_web_api_key() hardcodes built-in backends — third-party web search plugins silently disabled
- Hermes Web UI 修复经验:GatewayManager 补丁、进程 D 状态、数据库升级问题
- Telegram gateway can silently drop turn after /stop with response=0 chars while internal work continues
- Bug Report: v0.14.0 上下文污染 — 历史回复碎片回注到新请求
- Bug: hermes skills search table truncates Identifier column — install fails with copied value
- [skills-index-watchdog] Skills index is stale or degraded (degraded)
- Discord approval embed not rendering on web/mobile — embed data present in API but invisible
- Idea: Discord voice-channel participation / opt-in auto-join mode
- [Feature]: Claude Code--ultrawork
- build-arm64 job deterministically fails on cold cache (Azure SAS token expires mid-build)
- [Enhancement] computer_use: action=type should fall back to key events for terminal emulators (Ghostty/Terminal.app/iTerm2)
- Feature Request: Session Recovery on Temporary Provider Outage
- [Bug]: Hermes dashboard not working on NixOS (container)
- [Feature]: Add option to ignore @all/@everyone mentions in Feishu group chats
- QQ Bot WebSocket 频繁断开:长时间工具执行阻塞 asyncio 事件循环导致心跳超时
- patch tool: new_string escape sequences (\t) get written literally
- Feature Request: i18n / 多语言支持(国际化)
- Bug: web_crawl schema lets models auto-guess "instructions" instead of asking the user via clarify
- feat: `!command` prefix for direct shell execution (like Claude Code)
- Expose currently-running cron jobs via /api/jobs (or new endpoint)
- [Bug]: Kanban parent-child handoff: scratch workspace GC destroys artifacts before child can read them
- [Bug, Windows] hermes gateway restart loses session context — planned_stop_marker not written before SIGTERM
- [Bug]: Codex→DeepSeek fallback sends assistant turns without reasoning_content → HTTP 400 (require-side cross-provider failover)
- [Bug]: Update got stuck half way, reboot it, then ModuleNotFoundError: No module named 'hermes_cli'
- Kanban dispatcher corrupt-board handling and multi-profile gateway ownership ambiguity
- Gateway can resend a short fallback message when the real final Telegram response was already delivered
- [BUG] Bedrock: Fix 'Invalid API Key format' for presigned URL tokens
- Secret redaction corrupts code syntax in tool output (write_file, execute_code, terminal)
- Unable to connect Ollama Cloud with Pro Subscription to Hermes
- feat: fuzzy substring matching for /skill autocomplete
- PRD: Autonomous market-impact prediction briefing system
- Kanban dashboard should support task/card deep links
- [Feature] Native Feishu CardKit Streaming: consolidate best-in-class implementations
- [Feature]: Inject mental model into context when using Hindsight
- Interactive CLI hides tool output despite display.tool_progress=all, and hermes chat -v does not restore it
- fix(api_server): _handle_responses drops text.format JSON schema — structured output constraints silently ignored
- state.db FTS corruption goes undetected — no integrity check, no repair path
- bug: fallback routing can select text-only models for image requests and hide the primary failure
- feat(kanban): persist worker session_id per run and pass --resume on respawn after unblock
- feat(kanban): support GitHub/OMO lifecycle bridge for Xiyou-style automation
- Expose update-safe TUI/composer hooks for voice transcript and composer events
- Hide or configure voice transcript status rows in editable dictation mode
- [Feature]: Per-Tool / Per-Toolset Approval Policies
- Context compression creates orphan sessions missing from state.db
- messaging platform
- feat: Add read-only / silent monitoring mode for WhatsApp adapter
- double-.hermes path mismatch, the HOME env var leak, and the fallback-notification UX problem
- Bug: Plattform-Bundle name `hermes-yuanbao` in `agent.disabled_toolsets` silently kills ALL tools in gateway path (Telegram + cron), CLI unaffected
- CLI /yolo (in-chat) does not bypass dangerous command approvals — env var freeze + missing enable_session_yolo call
- OpenAI Codex provider crashes with "'NoneType' object is not iterable" (HTTP None)
- DEEPSEEK_API_KEY blocked by env blocklist in gateway process — cron jobs fail with deepseek provider
- fix(feishu): Card action callback routing issues - invalid message_id and unrecognized /card command
- Discord plugin: profiles without explicit `discord:` block silently get `require_mention=true` + `auto_thread=true` (regression in cc8e5ec2a)
- [Bug]: DISCORD_ALLOWED_ROLES ignored by gateway _is_user_authorized — role-authorized users get 'Unauthorized user' rejection
- [Bug]: /new, /clear, and /reset commands freeze the terminal session
- openai-codex subscription backend returns HTTP 200 with response.output=None, causing Slack/cron failures
- RFC: Centralized Model/Provider Registry
- bug: openai-codex provider — TypeError: 'NoneType' object is not iterable on every request (gpt-5.5)
- [Feature]: Source-aware instruction gate — architectural mitigation for indirect prompt injection
- Named custom provider stale_timeout_seconds ignored because runtime provider is normalized to `custom`
- guard test (ignore)
- [Feature]: per-platform LLM request_overrides (extra_body / reasoning_effort / service_tier)
- One-shot smoke: add Flue-backed orchestration fixture
- Gateway should not treat stale Codex app-server progress as final response after post-tool silence
- `docker_run_as_host_user: true` breaks bundled skills: Hermes home is mounted into `/root/.hermes` but the container runs as a non-root user (`HOME=/home/pn`)
- [Bug]: gateway api_server streaming bypasses server-side tool-call loop when chat_template_kwargs.enable_thinking=false (model emits tool name as plain text)
- [Feature]: Pre-install python-telegram-bot in Umbrel Hermes Docker image
- YouTube Shorts filter not working in youtube-content skill
- v0.15.0 PyPI release breaks ALL platforms — plugin.yaml manifests missing from package
- RFC: On-demand tool/skill/MCP discovery — decouple schema registration from process lifecycle
- Pixshelf: local-first stock photo workflow command center
- [Bug]: baoyu infographic skill should not silently bypass image_generate
- Pixshelf v1.5: manual submission tracking for stock agencies
- `hermes config set` silently accepts unknown keys, writing them where the runtime never reads
- Honcho memory prefetch hang on fresh CLI subprocess in v0.15.0 (regression from #27190)
- [Bug] v0.15.0 Docker image: stage2-hook.sh, main-wrapper.sh missing; container_boot module removed
- Feature: Reduce cache-read token overhead for DeepSeek providers — configurable cache_ttl, skills snapshot trimming, memory compaction
- Windows: three bugs from daily use (plugin discovery, gateway exit code, Unicode decode
- holographic memory: HRR silently degrades to FTS5 when numpy is missing
- Make max_tokens configurable for aux vision calls
- Conversation compression desynchronizes session ID between agent context and gateway routing, causing silent message loss
- [Bug]: v0.15.0 Docker image:The TUI cannot be used in the dashboard.
- cron: skip_memory=True blocks fact_store/memory tools from all cron jobs
- TUI: Node.js OOM crash when agent uses browser tools repeatedly
- feat: model_profiles — per-model toolset and memory config
- Automatic background skill patching disrupts active sessions (severe impact on local models)
- ensure_hermes_home() creates root-owned dirs in profile subdirectories when kanban workers are dispatched
- Feature: opt-in webhook bypass for DISCORD_ALLOW_BOTS — allow operator-initiated probes without weakening bot-loop guard
- v0.15.0: Codex requests fail HTTP 400 when participant display_name contains non-ASCII (emoji breaks input[].name pattern)
- Architecture: State Persistence Precedence (Memory vs Skills vs Hooks)
- [Bug]: cronjob tool: create action always fails with "schedule is required for create" even when parameters are provided
- codex-oauth: 'NoneType' object is not iterable in _run_codex_stream (gpt-5.5) — every turn fails non-retryably
- Docs/Config: Plugin local scope enablement ambiguity
- [Bug]: CLI freezes after using /new command (WSL)
- Profile Codex auth can ignore global credential pool when local state is stale
- [workflow-engine] CRITICAL: variable substitution crashes on regex metachars in user input
- [workflow-engine] HIGH: loop and bash nodes leak subprocesses on timeout
- [workflow-engine] HIGH: README documents config env vars the engine never reads
- [workflow-engine] MEDIUM: workflow_run rate limit bypassable via concurrent calls (TOCTOU)
- [workflow-engine] chore: manifest gaps, side-effectful register(), dead code, unauth kanban dispatch
- [mcp_lazy] HIGH: synthetic mcp_server_<name> stub collides with a real MCP server named 'server'
- [mcp_lazy] HIGH: promote_server eager flag documented but never persisted
- [mcp_lazy] MEDIUM: _prev_mode dict leaks and goes stale; not cleared on session evict
- [mcp_lazy] MEDIUM: get_pool has unlocked check-then-set race on pool creation
- [mcp_lazy] MEDIUM: pre_tool_call gives no guidance for unpromoted server-stub calls
- [mcp_lazy] chore: undeclared pre_tool_call hook, nonexistent 'mcp_load_tools' name in docs, missing tests
- [a2a_fleet] CRITICAL: server never auto-starts — register() runs outside an event loop
- [a2a_fleet] CRITICAL: auth_required defaults to false on a cross-machine surface
- [a2a_fleet] HIGH: remove invented disable() hook — loader never calls it, port leaks on reload
- [a2a_fleet] HIGH: plugin.yaml missing kind / provides_tools / requires_env (token env undeclared)
- [a2a_fleet] MEDIUM: tighten wide-open CORS, anonymous /health peer leak, and peer-URL SSRF
- [a2a_fleet] MEDIUM: relocate tests to tests/plugins/ and cover sync-register + auth-default paths
- xai-oauth auxiliary client incorrectly uses Responses API (CodexAuxiliaryClient), causing 403 on compression/vision/web_extract
- [Bug]: Direct Copilot gpt-5.5 large resumes are killed by 12s Codex TTFB watchdog
- [Bug]: `hermes uninstall` does not work on Windows
- TUI: Thinking block leaks raw JSON and Σ character
- Hostinger VPS: migration Hermes Agent → Hermes WebUI impossible (tini + UID mismatch + sessions)
- /goal judge over-continues exploratory goals unless the assistant explicitly says the goal is complete
- /goal auto-continuation can be amplified by preflight compression/session split and resurrect stale task state
- Dashboard infinite reload loop in loopback mode — GET /api/auth/me returns 401 on every page load
- [Bug]: Provider/LLM switch leaves stale encrypted_content causing 400 errors on Telegram sessions
- [Bug]: Infinite reload loop / React state loop on Sessions tab (Firefox + Chrome) — repeated 401 on /api/auth/me (v0.15.0)
- show_reasoning should work independently of streaming in CLI mode
- Feature Request: Strip reasoning/<think> blocks from TTS preprocessing
- mcp add / mcp test raise NameError when mcp package not installed
- v0.14.0 dashboard breaks behind reverse proxies — two regressions
- Skills hub creates empty category directories when no skills installed
- [Bug]: Custom endpoint: ChatCompletions returns content, but Hermes treats response as empty (v0.14.0)
- fix: atomic_replace() fails with EXDEV when HERMES_HOME is a cross-filesystem symlink
- fix(gateway): Feishu session cancellation orphans session guard, permanently blocking messages
- Custom endpoint pricing can overestimate Crof qwen3.5-9b cost by 1,000,000x
- MCP OAuth callback: module-level port global causes port collisions and structural weaknesses vs upstream
- Bug: send_message tool bypasses validate_media_delivery_path security check
- Proposal: Add Mnemosyne to official memory provider documentation
- feat(swarm): support custom verifier/synthesizer body + skills
- Template conversion failed
- Error occurred in the operation of the agent node in the workflow.
- PubSub client overrides Sentinel client when REDIS_USE_SENTINEL is enabled
- Frontend description of the Retrieval node output does not match the actual output
- JSON type input var raise Intenal server error
- cannot extract elements from a scalar
- 负载均衡 为模型配置多组凭据,并自动调用,此功能无法选择
- add models is error
- panic: could not create filter
- Persist partially generated messages when /chat-messages/:task_id/stop is called
- MCP server connection fails with 403 — request never leaves Dify (SSRF proxy suspected)
- Support durable async execution backends for long-running workflow steps
- [Xiaomi MiMo] Credentials validation fails with 400 "Not supported model mimo-v2-flash" when using Token Plan endpoint (v0.0.7)
- After clicking preview on a parent-child segmented knowledge base, it shows 0 chunks
- Retrieval score differs between UI upload (.docx) and API upload (.txt) despite identical chunk content and embedding model
- gemini cli crash again
- Xbox gift card code damage
- Damage caused by the gemini cli crash
- ioctl(2) failed, EBADF (Bad File Descriptor)
- Feat: Support Bun as an alternative runtime/package manager for updates and extensions
- fatal error again!!!!
- ioctl error
- Critical Crash: ioctl(2) failed, EBADF in ShellExecutionService.resizePty
- ioctl(2) failed, EBADF
- v0.44.0 Regression: Critical crash with ioctl(2) failed, EBADF during PTY resize
- Crash on startup: ioctl(2) failed, EBADF in UnixTerminal.resize
- Crash: `ioctl(2) failed, EBADF` in `node-pty` during PTY resize on macOS
- Gemini CLI crashes with `ioctl(2) failed, EBADF` in `node-pty` during `resizePty`
- Remote Role
- ERROR ioctl(2) failed, EBADF /home/mich
- RangeError: Maximum call stack size exceeded
- EBADF Error during folder creationg broke session and terminal glitches
- MAIP / Gargoub Project - Mediterania - North Coast
- Gemini cli crash again in this morning
- ERROR ioctl(2) failed, EBADF
- Verified node install fails — Checksum verification failed (Cloud)
- The extended debugging key did not arrive during registration.
- CollaborationPane unmounts collaboration store on single-user instances, causing permanent "No network connection" state
- Workflow cannot be saved when the name contains "->" (Potentially malicious string)
- automation does not work and does not show an error
- Raj Ai Automation
- Default Data Loader: DOMMatrix is not defined error
- Feature: Per-node execution timestamp overlay on canvas during workflow run
- AI Agent + Vertex `gemini-3.5-flash`: 400 "missing thought_signature" on sequential multi-turn tool calls (post-#24982)
- PDF Loader in Pinecone Vector Store fails due to pdf-parse version conflict (v2 not supported)
- emailReadImap: add UID deduplication, batch size cap, and numeric uid enforcement
- Manual node execution fails with "Could not find a node" when autosave is disabled (N8N_WORKFLOWS_AUTOSAVE_DISABLED)
- Schedule Trigger stopped firing — workflow Published & active, manual executions succeed, no automated fires for 2+ hours
- [MCP SDK] create_workflow_from_code intermittently returns HTTP 500, often as a false negative (workflow persists anyway, causing duplicates on retry)
- Credential-load wedge: workflows using googleApi/jwtAuth credentials silently fail to execute after key rotation
- Google Sheets Trigger every minute is not working manual Execute is working sent email
- [BUG] Plugin marketplace MCP connector remains stuck "still connecting" when mcp-remote requires OAuth
- [redacted at user request]
- Opus 4.7 behavioral regression: loaded instruction-following discipline degraded in recent Claude Code/Cowork updates
- [BUG] Tailscale via Homebrew CLI + Mac App Store GUI, both Macs on macOS, Cowork blocked by VPN detector despite Tailscale being a mesh VPN with no traffic interception
- stopShellPty on tab switch kills active sessions (exit 143) — regression in May 27 build
- [BUG] Long URLs are broken into multiple lines and become unclickable in terminal output
- [BUG] claude rm/stop/reap SIGKILLs background session tree without SIGTERM grace, orphaning git index.lock and similar
- [BUG] Default git workflow in the system prompt was pushed without context or consent
- [MODEL] Inconsistent output quality / Ignoring instructions (overfitting and inappropriate repetition of Korean vocabulary)
- You've hit your weekly limit · resets May 31 at 5pm (Asia/Shanghai)
- Paid yearly subscription silently downgraded to Free with no user action
- [Regression v2.1.153] Plugin bash hooks fail with "echo: write error: Permission denied" on Windows (claude-mem, shell: "bash")
- [BUG] Connector toggles in conversation are not clickable — must click text label instead
- [remote-control] Input from mobile app/browser not reaching host session — output works fine
- Model fails to read/reference CLAUDE.md contents despite being loaded in context
- [BUG] Claude Desktop reinstall destroys Code chat history (transcripts + Recents) while regular Chat history, project files, and memory all survive
- Bypass mode clamps to Accept Edits even with the toggle ON (Claude Code Desktop 1.9255.2 / CC 2.1.149)
- [BUG] TUI input freezes randomly mid-typing — entire prompt becomes unresponsive for minutes
- [BUG] Cowork downloads Linux ELF binary instead of macOS binary on macOS Sonoma 14.8.7 — exit code 132 (SIGILL) on every session
- [Feature Request] Persistent project memory — sessions forget everything on close, forcing users to keep many sessions open
- [Bug] Thread context stale after sleep/resume, returns outdated date and calendar data
- [FEATURE] Add context window usage indicator and warning before auto-compaction
- [BUG] Dictation error: Invalid character in header content ["x-config-keyterms"] on Windows
- [Bug] Anthropic API Error: Server rate limiting despite normal usage
- Does delegating work to `claude -p` subprocesses reduce context accumulation in the parent session?
- [BUG] Claude Code hangs on M1 Mac when terminal says "opening browser to sign in" and browser opens
- [BUG] Claude_Preview MCP preview_start spawns dev server with main-repo cwd instead of session's worktree cwd
- [Bug] Anthropic API Error: Server rate limiting during request execution
- [Bug] Anthropic API Error: Server rate limiting on concurrent requests
- [Bug] Ultraplan ready notification fires before cloud agent completes execution
- [BUG] API 500 ERROR ALL THROUGHOUT THE DAY
- [BUG] Cowork: Live Artifacts folder path changed in 1.9255.2, no automatic migration from Documents\Claude\Artifacts
- [Bug] Auto-compact never triggers despite statusline reporting "100% context used" (v2.1.153, Max sub, 200K mode)
- [BUG] [Desktop / macOS] 'Open in → New Window' detached session: font renders smaller than main, no per-window controls, Cmd+/Cmd- keystrokes routed to main window instead
- Feature request: option to switch between classic and new minimal UI
- [Feature Request] Show timestamps for each message
- [BUG] Terminal corruption when permission prompt appears while navigating Agent Teams agent selection menu
- [FEATURE] Allow users to customize the background color of the Claude desktop app beyond the current light/dark theme presets.
- [BUG] Statusline not displaying on Windows [fixed]
- Background agent UI Stop button is a no-op for stuck agents — process keeps consuming tokens
- Background agents silently die on session pause/resume — no completion notification, no work recovery
- Add option to hide email address from welcome banner
- [BUG] SSH Remote: `projects` field in remote ~/.claude.json becomes null after desktop restart — jsonl files intact, UI shows 'No messages yet' for every session
- [Bug] Claude Code not applying fixes despite claiming to complete tasks
- billing is unfair and poorly documented
- [BUG] Claude Code on the web: declared plugins inactive on first session, require restart to fully load
- [BUG] Restore from archive deleted sessions instead of restoring them
- [BUG] M365 connector fails with AADSTS50011 in Cowork — localhost vs 127.0.0.1 redirect URI mismatch
- claude agents: workflow slash-commands missing from dispatch-input completion (regression-adjacent to #61424)
- Claude Desktop's Info.plist missing TCC usage strings, blocks all EventKit-based MCP servers
- False-positive safety blocks on self-administered governance amendments — request for owner-authority mode for verified professional users
- [BUG] Stop pushing "AUTO"-mode
- [DOCS] Plugin marketplace guide omits `skipLfs` option for git-based sources
- [DOCS] MCP docs omit combined startup notification for MCP server and connector authentication
- [DOCS] Agent view docs omit macOS Privacy & Security identity for background agents
- [DOCS] Npm update docs do not explain release-channel behavior for `claude update`
- [DOCS] Agent SDK docs omit `subagent_type: "claude"` worktree and output persistence behavior
- [DOCS] Background session docs omit `$CLAUDE_JOB_DIR` temp-file behavior
- [FR] mask env-var values in 'claude mcp get <server>' output
- [FR] subagent worktrees should not inherit stale local 'user.email' from prior dispatches
- [BUG] Windows: Grep tool leaks rg.exe + conhost.exe processes (~2000 zombies / 14 GB RAM in long sessions)
- [BUG] Stats dashboard "Peak hour" appears off by one hour
- [BUG] Diff highlight (teal SGR background) bleeds past changed text in 2.1.150–2.1.153
- [FEATURE] confirm before deleting session
- Plugin PostToolUse hooks still silently skip in Claude Desktop / Cowork (re-filing closed #51904)
- /code-review skill: silent fallback to main...HEAD reviews other people's commits, and JSON-only output is hard to read
- Monitor tool doesn't source the shell snapshot like Bash does; PATH-dependent tools (jq, sleep, etc.) fail in Monitor commands on macOS/Nix
- [Bug] Long input lines truncated with ellipsis while typing instead of wrapping in terminal UI
- [FEATURE] VS Code extension: Render submitted user messages as Markdown in chat
- OSC 52 copy from Claude TUI doesn't reach clipboard inside tmux (regression in 2.1.146–2.1.153)
- [BUG] RemoteTrigger create/update returns HTTP 400 with circular error: "event_type is required" / "unknown field event_type"
- [BUG] Option to hide or minimize the built-in "status footer" (multi-line debug/cost panel) [re-raise of #31475]
- [Bug] Feedback submissions being closed without review or action
- [FEATURE] Word-jump cursor navigation in Chat input (option+arrow / bindable actions)
- [FEATURE] ! shell mode: filesystem tab completion
- [BUG] API Error: Usage credits required for 1M context
- claude agents: OSC 52 clipboard emission broken in tmux (regression in 2.1.146–2.1.153)
- CLI crashes on macOS 15 M3 - exit code 1
- [FEATURE] Support Cmd+V image paste from clipboard
- [FEATURE] Enhance claude.ai M365 connector to support MS Planner
- [BUG] Slash command autocomplete hijacks pasted absolute file paths starting with /
- PreToolUse hook `if` filter false-positives on complex Bash commands
- [BUG] Diff panel hangs/whites out
- Feature Request: Support drag-and-drop for binary documents (.wps, .doc, .docx, .xlsx, .pdf) in VS Code extension
- [BUG] activation of 1M context in VSCode
- [FEATURE] Support i18n / language localization for built-in slash command outputs
- Ctrl+V para colar imagens deixou de funcionar no CLI (Windows, PowerShell)
- [FEATURE] Please add Norwegian (Bokmål/Nynorsk) language support to the Claude Code interface
- [BUG] OTel log events (claude_code.user_prompt, api_request_body, tool_decision, hook_execution_complete) emitted with empty trace_id/span_id while sibling spans correlate correctly
- [BUG] Cowork crashes on every message, no VM logs generated, missing AppData\Roaming\Claude
- [FEATURE] first-class session handoff + per-session token budgets for unattended runs
- [FEATURE] Smart paste: convert clipboard code to file reference chips (like Cursor)
- [Feature Request] Restore chat pin functionality to title chat submenu
- [BUG] SIGILL issues with version 2.1.153
- [BUG] Cowork plugin upload fails with generic "Plugin validation failed" when a `description` field in any SKILL.md frontmatter contains angle brackets (`<…>`)
- [BUG] Desktop App 2.1.144+: startup scanner deletes cliSessionId from claude-code-sessions local files on every launch — session not found on disk
- [Feature Request] Add keyboard shortcut to copy last message with proper formatting
- [MODEL] Opus 4.7 not 1M
- Allow naming/renaming background agents in `claude agents` view
- Stale worktrees in .claude/worktrees/ are never cleaned up, consuming massive disk space
- Agent worktrees are never cleaned up, silently consuming disk space
- Subagent worktrees not auto-cleaned when reviewer writes scratch files
- [Bug] Skill initialization hangs for extended duration in Plan Mode
- Claude Desktop writes malformed registry Run entry (nested escaped quotes) - crashes Windows Task Manager and other Run-key parsers
- IME candidate window shows at bottom-right corner instead of caret position (Windows CMD)
- [BUG] Pressing 'Escape' doesn't close the /BTW conversation when the main conversation is asking for approval
- [BUG] Opus 4.7 (1M) intermittently emits empty-string values for tool_use.input fields, killing the session
- FleetView agent UI shows "running" with incrementing elapsed time after agent has returned
- /doctor flags context-scoped cmd+c binding as macOS conflict (false positive)
- [BUG] Text Rendering in Elvish
- Desktop app: Bypass Permissions mode flips to Accept Edits on first prompt (M5 / macOS 26.5)
- [Workaround] Date-Weekday Verification Hook — Prevents Claude from writing wrong weekdays
- [BUG] Claude Code create c:/memfs directory without asking me.
- [BUG] Claude Code's Bash execution waits forever with no processes running
- [BUG] usage stays stuck waiting for 5 hr limit after upgrading to premium seat in team plan
- [Workflow tool] resume cache is unreachable for nontrivial workflows because LLM dispatchers can't transcribe args byte-exactly
- Code review (Preview): "Add a repository" shows no results for private GitHub org repos
- [BUG] /context commands blows up context
- [Feature Request] Add precache expiry hook to enable proactive compaction before token eviction
- [BUG] Context indicator shows 0% at session start despite ~20K+ tokens already loaded
- [Feature Request] Add semantic search for --resume session history
- [Feature Request] Add session search, tagging, and filtering capabilities
- [BUG] Cowork Dispatch reports "desktop not available" on Windows 11 while standard Cowork works normally
- [Bug] Claude Code provides incorrect suggestions with high confidence despite errors
- defaultMode: acceptEdits silently overrides per-path permissions.ask rules for Write/Edit
- [FEATUR configurable tip interval (e.g. tipIntervalSeconds: 30 in settings)E]
- Plugin marketplace fails to load: schema rejects 'displayName' key (v2.1.153)
- claude agents: in-session copy uses broken OSC 52 path while overview correctly uses tmux buffer
- [BUG] Plugin agent descriptions (and custom agents) load unconditionally into context — no parity with disable-model-invocation for skills
- Crashed ultrareview consumed a free credit despite producing zero findings
- [Bug] Character rendering issue - invisible or missing text display
- [BUG] Cowork: processo Claude Code encerra com código 3 — .claude.json não contém token de autenticação (Windows 11 25H2)
- [BUG] 2.1.153 silently discards tools/list response from rmcp 0.12.0 HTTP MCP server (works in 2.1.152, wire-identical handshake)
- VS Code extension: option to auto-resume last session when reopening a workspace folder
- [Bug] Conversation continuation failure
- [BUG] Cowork crashes every time I start a new chat or attempt to continue an existing one in any project. The error displayed is: "Claude Code è andato in crash
- [Bug] Unannounced quota changes
- Native update/install fails with 'socket connection was closed unexpectedly' behind proxy — undici TLS incompatibility
- [BUG] Session name reverting after manual change
- [BUG] 非正常思考,上下文过长时,一直显示思考,点击interrupt按钮失效
- Honor `tools:` frontmatter when an agent is invoked via `@mention` — strip `Task` only when the agent did not declare it
- macOS TCC popup still recurring on v2.1.153 — "2.1.153" would like to access data from other apps
- Claude Code leaks pty handles — exhausts pseudo-terminals on macOS after long session
- [Bug] Agent fails to execute or respond to user input
- [BUG] Persistent "Expecting value: line 1 column 1 (char 0)" JSON parse error after tool execution
- [Feature Request] Implement proactive unit test coverage recommendations for recurring bugs
- VS Code panel lacks status line + terminal lacks image paste in Codespaces, forcing a tradeoff
- `/powerup` only shows ~10 lessons — allow viewing the full catalog
- [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin
- [Bug] VSCode terminal output displays corrupted text with garbled symbols
- [Feature Request] Add LaTeX/KaTeX math rendering to TUI
- [Bug] Sub-agent PR review results not validated by orchestrating agent
- Subagents on Pro 1M tier: trivial probes pass, real workloads fail at first tool call (probe-vs-workload divergence)
- Path-scoped rules and subdirectory CLAUDE.md not loaded when creating new files matching the pattern
- AskUserQuestion: cancelling during extended thinking poisons the whole session with 400 'thinking blocks cannot be modified' (2.1.153); concurrent prompts overwrite each other
- Ideas Missing from Claude Cowork Menu (Windows)
- [BUG_BOUNTY_SAFE_POC_2026] Prompt Injection RCE Test - Command Execution Proof
- [BUG] Cowork scheduled task: execution history row not showing after successful run
- Resuming an extended-thinking session fails permanently with 400 "thinking blocks cannot be modified" (transcript stores thinking text as empty but keeps signature)
- [Bug] Plugin-registered CwdChanged and FileChanged hooks don't fire (settings.json works) — v2.1.153
- Auto-archive on PR merge / branch delete — clarify autoArchiveSessions semantics or add dedicated opt-out
- `claude mcp add` echoes Authorization header value verbatim to stdout, leaks bearer tokens to terminal and session transcripts
- [BUG] Bug report — /insights skill, Claude Code The /insights skill outputs a malformed file path.
- Plugin slash commands render with '*'-inline format instead of two-column, despite matching official plugin shape
- [Bug] Unexpected long text generation without user input or goal
- [Bug] Thinking blocks causing task progression blocked without user modification
- [BUG] (Critical!) contamination by an unknown session simirlar to the report => [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin #63137
- [Critical] Opus 4.7 Korean output degeneration — Korean grammar itself collapses in long contexts
- [BUG] Title: Autocompact buffer persists across /clear — wastes tokens for irrelevant old context
- [Bug] Auto-Compact loses user input before processing in conversation history
- Feature: per-invocation effort parameter + runtime session-config introspection for skills
- Auto-mode classifier mislabels Azure DevOps vote -5 as "Reject" when denying PR vote actions
- [BUG] Claude Desktop and Claude Code CLI never re-register MCP tools after OAuth 2.1 handshake on a remote HTTP server
- [BUG] Workspace file tags leak across sessions
- [BUG] Ink renderer crashes on Windows 11 build 26200 (Canary) duplicate banners, terminal mode leaks, mid-operation aborts
- [BUG] Claude Code Desktop issue
- PTY master fd leak in Claude desktop app exhausts macOS kern.tty.ptmx_max after ~2-3 days
- [BUG] Claude Code — Session Management after Unexpected Interruption
- [Windows] Cowork OpenTelemetry exporter does not initialize - zero events emitted to any destination, including loopback
- [Bug] Opus 4.7: 400 `thinking blocks ... cannot be modified` on long extended-thinking sessions, triggered by history-altering events (scheduled prompts / parallel tool-call cancellation)
- [BUG] API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited
- Multi-plugin custom marketplace: only first plugin registered in installed_plugins.json, skills don't load
- [BUG] Git push through the SDK's git proxy fan-outs into ~500 GitHub REST API calls, exhausting the 5,000/hour budget after a handful of pushes
- [BUG] Claude took liberties it really shouldn't with my global config
- [BUG] Agent window focus lost after navigating with arrow keys, causing scroll deadlock
- [BUG] `--model` flag silently ignored in interactive sessions (works in `--print` only)
- [BUG] Dispatch permanently shows "desktop appears offline" on Windows 11 - never worked on first use
- feat: support per-command enableWeakerNetworkIsolation as safer alternative to dangerouslyDisableSandbox
- /code-review outputs a raw JSON array instead of readable findings
- [BUG] Cowork — Additional allowed domains ignored on Team plan; same domain works on Pro plan
- Haiku
- [Bug] False positive blocking beneficial outcomes in tool execution
- 3P Bedrock SSO: credentials silently expire without triggering re-auth on day 2+
- CLAUDE_AUTOCOMPACT_PCT_OVERRIDE in settings.json env block silently ignored by autocompact logic
- Auto-compaction deletes main session JSONL before verifying summary completion, causing data loss
- [Bug] Claude Code not executing stated actions or producing expected results
- [FEATURE] Deferred Messages — Queue Input for End of Turn
- [BUG] Up/Down arrows in input box navigate history instead of moving cursor — regression in 2.1.149+
- Cancelling a parallel tool-call batch corrupts thinking blocks -> 400 "thinking blocks cannot be modified" permanently wedges the session
- Claude Code caused data loss, then contradicted itself about recovery (two incidents, one session)
- [Bug] Unclear error messages from Claude Code CLI
- [Bug] Agent tool rejecting due to context size limit exceeded
- claude agents: daemon and bg-spare processes spin at ~100% CPU when idle
- [BUG] Compaction fails with "context window limit" error even when context usage is low (e.g., 20%) — regression in v2.1.153
- Remote Control entitlement lost after May 27-28 incident — `Error: Remote Control is not yet enabled for your account` on active Max subscription
- PreToolUse hook exit code 2 does not block Write tool
- [Bug] Thinking blocks in latest assistant message are immutable
- GUI: dispatch file:// and custom-scheme clicks to OS shell handler
- Show current model in statusLine by default
- [Bug] Agent console becomes unresponsive to keyboard input after multiple agents initialized
- [FEATURE] PreToolUse hooks should have a way of updating the environment
- [Bug] Unable to start or use Claude Code CLI
- [BUG] Repository not visible in Claude Code web repo picker
- Session permanently wedged on 400 "thinking blocks cannot be modified" after parallel tool_results
- [Bug] @ autocomplete loses sibling repos after a file edit in multi-repo workspace
- Unclear error message when creating sub-agent without authentication
- [Bug] Anthropic API errors causing frequent failures and high token usage
- [BUG] @ mention file picker only shows packages, not individual files (desktop app - Code tab)
- [Bug] TUI panel footer remains sticky and consumes excessive terminal space
- PR-status polling exhausts GitHub GraphQL rate limit on repos with many open PRs
- [BUG] Windows: welcome panel not shown in some project folders (2.1.153)
- [Bug] Anthropic API Error: thinking blocks corrupted during context compaction with extended thinking enabled
- API 400 "thinking blocks cannot be modified" permanently bricks session during agent activation (interleaved thinking + tool use)
- Right-click Copy copies the whole message instead of the selection; pasted text retains dark background
- Mid-session model switch corrupts conversation when extended thinking is enabled (API 400: 'thinking blocks cannot be modified')
- [BUG] Markdown file links in chat output do not open files when clicked (VS Code extension)
- Stuck retry loop: `400 thinking blocks cannot be modified` on large interleaved-thinking turns using AskUserQuestion
- [FEATURE] Prompt user for approval before auto-compaction proceeds
- Custom MCP connectors not attachable to scheduled routines — no UUID discovery path
- [BUG] Claude in Chrome — Navigation blocked for teams.cloud.microsoft and outlook.cloud.microsoft after Microsoft domain migration**
- [BUG] Claude Desktop — Personal plugins panel renders list but is entirely non-interactive (macOS, v1.9255.2)
- [Bug] error when using Workflows
- [BUG] Persistent "update available" notification despite being on latest version
- [BUG] Sweep Agent from /code-review never completes
- [Bug] Tool calls not executing or returning results
- [FEATURE] Cloud-synced memory and settings across machines
- [Bug] Terminal UI freezes when Ctrl+O view exits during interactive prompt in plan mode
- Continuous api errors when using claude code with Opus 4.7 with thinking on low
- [Feature Request] Add support for installing and using previous Claude Code versions
- [Bug] Extended Thinking: Summarized thinking blocks fail signature validation when resent to API
- [Bug] Anthropic API Error: 'thinking' blocks cannot be modified
- [Bug] Anthropic API Error: Thinking blocks cannot be modified with extended thinking mode
- Feature request: Lazy/on-demand MCP server connections
- [Bug] Tool Arguments Parsed as String Instead of Object
- [Bug] Anthropic API Error: Insufficient context provided
- [Bug] Claude Opus occasionally uses moskovian(russian) orthography instead of Ukrainian in system-prompted responses
- Opus 4.8: backgrounded task completions (subagents AND Bash) crash with 400 "thinking blocks cannot be modified"
- [Bug] Opus 4.7 fabricates stable preferences ("my default") to rationalize arbitrary choices when challenged
- [Bug] Unable to update Claude Code CLI
- [BUG] Desktop app: /remote-control mints link + connects bridge (main.log) but in-chat link/QR panel never renders
- Feature: sessionColor and sessionName in .claude/settings.json
- [BUG] Anthropic API error: thinking blocks
- [FEATURE] Support Remote MCPs in Cowork as in Claude Code
- [Bug] Anthropic API Error: 400 Bad Request with Redacted Thinking - 0 4.7 & 4.8
- [Bug] Anthropic API Error: Cannot modify thinking blocks from different model versions
- Interleaved thinking + multi-tool turn corrupts thinking block (text blanked, signature kept) → permanent 400 'blocks must remain as they were'
- [BUG] Mode/permission changes mid-tool-loop (effortLevel: xhigh) poisons entire session
- Session failure log: Opus 4.6 ignores its own rules for an entire session
- [BUG] "400 Guardrail was enabled" error when using Claude Opus 4.8 with AWS Bedrock
- [Feature Request] Add subagent approach selection option to avoid accidental feedback
- Persistent 400 'thinking blocks in the latest assistant message cannot be modified' — interleaved thinking persisted with empty text + signature bricks sessions
- [BUG] DesktopvsApp
- [BUG] Opus 4.7 cache hit rate collapse after May 27 incident — Messages 1.1k→88.9k in 9 minutes, $630/session
- [Bug] Anthropic API Error: Invalid thinking block format
- [BUG] FUCK CLAUDE
- Opus 4.8 extended thinking: Stop hook block re-entry corrupts thinking blocks → 400
- [Bug] 4.8 Fails when accessing previous model history
- [Bug] Unintended File Modifications During Execution
- [DOCS] Model configuration docs omit lean system prompt default scope and model exceptions
- Add "Always allow globally" option to permission prompts
- Server-side model upgrade (Opus 4.7→4.8) wedges in-flight sessions with `thinking blocks cannot be modified` 400
- [DOCS] AskUserQuestion docs missing multiple-choice prompt decision threshold
- [DOCS] Agent view docs omit shell-command background session launch syntax
- [DOCS] Agent view dispatch input docs incorrectly imply `/logout` dispatches as a prompt
- [DOCS] Claude in Chrome docs omit connected-browser selection behavior
- [DOCS] Plugin docs omit `defaultEnabled: false` for opt-in plugins
- Feature Request: Customizable chat text colors for user and assistant messages
- [DOCS] `/plugin` Discover tab docs omit directory-based suggested plugin pins
- VSCode Chrome integration silently fails: 3 distinct bugs
- [DOCS] MCP stdio docs omit session environment variables
- [Bug] Anthropic API error on second request within session with Claude Opus 4.8
- Cowork emits a blank session "index" handoff on focus when a CLI session is paused awaiting input
- [DOCS] MCP docs omit `claude mcp list/get` pending-approval output for unapproved project servers
- [BUG] /compact fails with 400 error when last assistant turn contains thinking blocks
- [DOCS] `/claude-api` docs omit Opus 4.8 migration guidance
- [DOCS] Fast mode docs still recommend deprecated Opus 4.6 override variable
- [DOCS] Bash tool docs omit `$TMPDIR` consistency across sandboxed and unsandboxed commands
- [Bug] Anthropic API Error: 400 Bad Request on Extended Thinking
- [DOCS] Background session docs omit worktree-isolation behavior for spawned subagents
- Built-in mechanistic self-verification of verifiable claims (symmetric to the auto permission gate)
- [DOCS] Worktree docs do not clarify `worktree.baseRef: "head"` inside linked worktrees
- [BUG] Excessive RAM usage with multiple parallel chats (~10 sessions → 30 GB memory pressure, macOS OOM)
- [DOCS] Managed MCP policy docs omit invalid `allowedMcpServers`/`deniedMcpServers` entry behavior
- [DOCS] Effort docs omit `CLAUDE_CODE_ALWAYS_ENABLE_EFFORT` unsupported-model behavior
- Regression (2.1.147–2.1.150?): resuming an extended-thinking session after a CC update/model-switch → unrecoverable 400, session bricked
- [DOCS] Windows updater docs omit `claude.exe` in-use recovery guidance
- [DOCS] VS Code auto mode docs still tie mode-picker visibility to bypass-permissions setting
- [DOCS] MCP docs omit `/mcp` tool list and detail rendering behavior
- [DOCS] Fine-grained tool streaming docs still describe provider opt-in behavior
- bypassPermissions: session startup reads flat pref, GUI toggle writes per-account pref — they never sync
- [BUG] Claude Desktop Code tab causes disk write limit violation — 8.5GB in 11 min, macOS kills app (M5, v1.9659.1)
- Ultrareview v2.1.96: docs describe /tasks command + claude ultrareview --json subcommand that don't exist; findings hard to read after completion
- I'd be happy to help create a GitHub issue title, but I don't see the error message in your message. Could you please share the specific error you're encountering? That way I can generate an accurate and descriptive issue title for you.
- [BUG] Claude in Chrome `file_upload` rejects all scheduled-task sessions with misleading error (real cause: INVALID_SESSION)
- Extended thinking: signed thinking block 'cannot be modified' (400) permanently wedges session
- RTL text support for Hebrew (and Arabic) in Claude Code
- [Bug] Random errors occurring across multiple operations