hermes - 💡(How to fix) Fix [i18n] Thai Translation: Features Part 2c - Plugins, Routing, RL, Skills, Skins [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
~/.hermes/skins/mytheme.yaml
Complete skin template - all keys shown. Delete any you don't need;
missing values automatically inherit from the 'default' skin.
name: mytheme description: My custom theme
colors: banner_border: "#CD7F32" banner_title: "#FFD700" banner_accent: "#FFBF00" banner_dim: "#B8860B" banner_text: "#FFF8DC" ui_accent: "#FFBF00" ui_label: "#4dd0e1" ui_ok: "#4caf50" ui_error: "#ef5350" ui_warn: "#ffa726" prompt: "#FFF8DC" input_rule: "#CD7F32" response_border: "#FFD700" session_label: "#DAA520" session_border: "#8B8682" status_bar_bg: "#1a1a2e" voice_status_bg: "#1a1a2e" completion_menu_bg: "#1a1a2e" completion_menu_current_bg: "#333355" completion_menu_meta_bg: "#1a1a2e" completion_menu_meta_current_bg: "#333355"
spinner: waiting_faces: - "(⚔)" - "(⛨)" - "(▲)" thinking_faces: - "(⚔)" - "(⌁)" - "(<>)" thinking_verbs: - "processing" - "analyzing" - "computing" - "evaluating" wings: - ["⟪⚡", "⚡⟫"] - ["⟪●", "●⟫"]
branding: agent_name: "My Agent" welcome: "Welcome to My Agent! Type your message or /help for commands." goodbye: "See you later! ⚡" response_label: " ⚡ My Agent " prompt_symbol: "⚡ ❯ " help_header: "(⚡) Available Commands"
tool_prefix: "┊"
Per-tool emoji overrides (optional)
tool_emojis: terminal: "⚔" web_search: "🔮" read_file: "📄"
Custom ASCII art banners (optional, Rich markup supported)
banner_logo: |
[bold #FFD700] MY AGENT [/]
banner_hero: |
[#FFD700] Custom art here [/]
Fix Action
Fix / Workaround
| Action | Use for | Key params |
|---|---|---|
create | สร้าง Skill ใหม่ตั้งแต่ต้น | name, content (full SKILL.md), optional category |
patch | แก้ไขแบบเจาะจง (แนะนำ) | name, old_string, new_string |
edit | เขียนใหม่โครงสร้างหลัก (Major structural rewrites) | name, content (full SKILL.md replacement) |
delete | ลบ Skill ทั้งหมด | name |
write_file | เพิ่ม/อัปเดตไฟล์สนับสนุน | name, file_path, file_content |
remove_file | ลบไฟล์สนับสนุน | name, file_path |
:::tip
การกระทำ patch เป็นที่แนะนำสำหรับการอัปเดต - มันใช้โทเคนอย่างมีประสิทธิภาพกว่า edit เพราะมีเพียงข้อความที่เปลี่ยนแปลงเท่านั้นที่ปรากฏใน tool call
:::
Code Example
~/.hermes/plugins/my-plugin/
├── plugin.yaml # manifest
├── __init__.py # register() - wires schemas to handlers
├── schemas.py # tool schemas (what the LLM sees)
└── tools.py # tool handlers (what runs when called)
---
name: hello-world
version: "1.0"
description: A minimal example plugin
---
"""Minimal Hermes plugin - registers a tool and a hook."""
def register(ctx):
# --- Tool: hello_world ---
schema = {
"name": "hello_world",
"description": "Returns a friendly greeting for the given name.",
"parameters": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name to greet",
}
},
"required": ["name"],
},
}
def handle_hello(params):
name = params.get("name", "World")
return f"Hello, {name}! 👋 (from the hello-world plugin)"
ctx.register_tool("hello_world", schema, handle_hello)
# --- Hook: log every tool call ---
def on_tool_call(tool_name, params, result):
print(f"[hello-world] tool called: {tool_name}")
ctx.register_hook("post_tool_call", on_tool_call)
---
plugins:
enabled:
- my-tool-plugin
- disk-cleanup
disabled: # optional deny-list - always wins if a name appears in both
- noisy-plugin
---
hermes plugins # interactive toggle (space to check/uncheck)
hermes plugins enable <name> # add to allow-list
hermes plugins disable <name> # remove from allow-list + add to disabled
---
hermes plugins # unified interactive UI
hermes plugins list # table: enabled / disabled / not enabled
hermes plugins install user/repo # install from Git, then prompt Enable? [y/N]
hermes plugins install user/repo --enable # install AND enable (no prompt)
hermes plugins install user/repo --no-enable # install but leave disabled (no prompt)
hermes plugins update my-plugin # pull latest
hermes plugins remove my-plugin # uninstall
hermes plugins enable my-plugin # add to allow-list
hermes plugins disable my-plugin # remove from allow-list + add to disabled
---
Plugins
↑↓ navigate SPACE toggle ENTER configure/confirm ESC done
General Plugins
→ [✓] my-tool-plugin - Custom search tool
[ ] webhook-notifier - Event hooks
[ ] disk-cleanup - Auto-cleanup of ephemeral files [bundled]
Provider Plugins
Memory Provider ▸ honcho
Context Engine ▸ compressor
---
memory:
provider: "honcho" # empty string = built-in only
context:
engine: "compressor" # default built-in compressor
---
ctx.inject_message("New data arrived from the webhook", role="user")
---
provider_routing:
sort: "price" # วิธีการจัดอันดับผู้ให้บริการ
only: [] # Whitelist: ใช้เฉพาะผู้ให้บริการเหล่านี้เท่านั้น
ignore: [] # Blacklist: ห้ามใช้ผู้ให้บริการเหล่านี้เด็ดขาด
order: [] # ลำดับความสำคัญที่กำหนดอย่างชัดเจน
require_parameters: false # ใช้เฉพาะผู้ให้บริการที่รองรับพารามิเตอร์ทั้งหมด
data_collection: null # ควบคุมการเก็บข้อมูล ("allow" หรือ "deny")
---
provider_routing:
sort: "price"
---
provider_routing:
only:
- "Anthropic"
- "Google"
---
provider_routing:
ignore:
- "Together"
- "DeepInfra"
---
provider_routing:
order:
- "Anthropic"
- "Google"
- "AWS Bedrock"
---
provider_routing:
require_parameters: true
---
provider_routing:
data_collection: "deny"
---
provider_routing:
sort: "price"
---
provider_routing:
sort: "latency"
---
provider_routing:
sort: "throughput"
---
provider_routing:
only:
- "Anthropic"
---
provider_routing:
ignore:
- "Together"
- "Lepton"
data_collection: "deny"
---
provider_routing:
order:
- "Anthropic"
- "Google"
require_parameters: true
---
providers_allowed ← from provider_routing.only
providers_ignored ← from provider_routing.ignore
providers_order ← from provider_routing.order
provider_sort ← from provider_routing.sort
provider_require_parameters ← from provider_routing.require_parameters
provider_data_collection ← from provider_routing.data_collection
---
provider_routing:
sort: "price"
ignore: ["Together"]
require_parameters: true
data_collection: "deny"
---
# Set up API keys
hermes config set TINKER_API_KEY your-tinker-key
hermes config set WANDB_API_KEY your-wandb-key
---
List the available RL environments
---
Select the GSM8K environment and show me the configuration
---
Start the training run
---
Check the status of training run abc12345
---
Stop the training run
# or
Get the final results for run abc12345
---
Test the selected environment with inference
---
flowchart LR
api["Atropos API<br/>run-api<br/>port 8000"]
env["Environment<br/>BaseEnv implementation"]
infer["OpenAI / sglang<br/>inference API<br/>port 8001"]
trainer["Tinker Trainer<br/>LoRA training + FastAPI"]
env <--> api
env --> infer
api -->|"batches: tokens, scores, logprobs"| trainer
trainer -->|"serves inference"| infer
---
logs/
├── api_{run_id}.log # Atropos API server logs
├── trainer_{run_id}.log # Tinker trainer logs
├── env_{run_id}.log # Environment process logs
└── inference_tests/ # Inference test results
├── test_{env}_{model}.jsonl
└── test_{env}_{model}.log
---
# In the CLI or any messaging platform:
/gif-search funny cats
/axolotl help me fine-tune Llama 3 on my dataset
/github-pr-workflow create a PR for the auth refactor
/plan design a rollout for migrating our auth provider
# แค่ชื่อ skill ก็เพียงพอแล้ว ระบบจะโหลดและให้ agent ถามว่าคุณต้องการอะไร:
/excalidraw
---
hermes chat --toolsets skills -q "What skills do you have?"
hermes chat --toolsets skills -q "Show me the axolotl skill"
---
Level 0: skills_list() → [{name, description, category}, ...] (~3k tokens)
Level 1: skill_view(name) → Full content + metadata (varies)
Level 2: skill_view(name, path) → Specific reference file (varies)
---
---
name: my-skill
description: Brief description of what this skill does
version: 1.0.0
platforms: [macos, linux] # Optional - restrict to specific OS platforms
metadata:
hermes:
tags: [python, automation]
category: devops
fallback_for_toolsets: [web] # Optional - conditional activation (see below)
requires_toolsets: [terminal] # Optional - conditional activation (see below)
config: # Optional - config.yaml settings
- key: my.setting
description: "What this controls"
default: "value"
prompt: "Prompt for setup"
---
# Skill Title
## When to Use
Trigger conditions for this skill.
## Procedure
1. Step one
2. Step two
## Pitfalls
- Known failure modes and fixes
## Verification
How to confirm it worked.
---
platforms: [macos] # สำหรับ macOS เท่านั้น (เช่น iMessage, Apple Reminders, FindMy)
platforms: [macos, linux] # สำหรับ macOS และ Linux
---
metadata:
hermes:
fallback_for_toolsets: [web] # แสดงเฉพาะเมื่อ toolsets เหล่านี้ไม่พร้อมใช้งาน
requires_toolsets: [terminal] # แสดงเฉพาะเมื่อ toolsets เหล่านี้พร้อมใช้งาน
fallback_for_tools: [web_search] # แสดงเฉพาะเมื่อเครื่องมือเหล่านี้ไม่พร้อมใช้งาน
requires_tools: [terminal] # แสดงเฉพาะเมื่อเครื่องมือเหล่านี้พร้อมใช้งาน
---
required_environment_variables:
- name: TENOR_API_KEY
prompt: Tenor API key
help: Get a key from https://developers.google.com/tenor
required_for: full functionality
---
metadata:
hermes:
config:
- key: myplugin.path
description: Path to the plugin data directory
default: "~/myplugin-data"
prompt: Plugin data directory path
---
~/.hermes/skills/ # Single source of truth
├── mlops/ # Category directory
│ ├── axolotl/
│ │ ├── SKILL.md # Main instructions (required)
│ │ ├── references/ # Additional docs
│ │ ├── templates/ # Output formats
│ │ ├── scripts/ # Helper scripts callable from the skill
│ │ └── assets/ # Supplementary files
│ └── vllm/
│ └── SKILL.md
├── devops/
│ └── deploy-k8s/ # Agent-created skill
│ ├── SKILL.md
│ └── references/
├── .hub/ # Skills Hub state
│ ├── lock.json
│ ├── quarantine/
│ └── audit.log
└── .bundled_manifest # Tracks seeded bundled skills
---
skills:
external_dirs:
- ~/.agents/skills
- /home/shared/team-skills
- ${SKILLS_REPO}/skills
---
~/.hermes/skills/ # Local (primary, read-write)
├── devops/deploy-k8s/
│ └── SKILL.md
└── mlops/axolotl/
└── SKILL.md
~/.agents/skills/ # External (read-only, shared)
├── my-custom-workflow/
│ └── SKILL.md
└── team-conventions/
└── SKILL.md
---
hermes skills browse # Browse all hub skills (official first)
hermes skills browse --source official # Browse only official optional skills
hermes skills search kubernetes # Search all sources
hermes skills search react --source skills-sh # Search the skills.sh directory
hermes skills search https://mintlify.com/docs --source well-known
hermes skills inspect openai/skills/k8s # Preview before installing
hermes skills install openai/skills/k8s # Install with security scan
hermes skills install official/security/1password
hermes skills install skills-sh/vercel-labs/json-render/json-render-react --force
hermes skills install well-known:https://mintlify.com/docs/.well-known/skills/mintlify
hermes skills list --source hub # List hub-installed skills
hermes skills check # Check installed hub skills for upstream updates
hermes skills update # Reinstall hub skills with upstream changes when needed
hermes skills audit # Re-scan all hub skills for security
hermes skills uninstall k8s # Remove a hub skill
hermes skills reset google-workspace # Un-stick a bundled skill from "user-modified" (see below)
hermes skills reset google-workspace --restore # Also restore the bundled version, deleting your local edits
hermes skills publish skills/my-skill --to github --repo owner/repo
hermes skills snapshot export setup.json # Export skill config
hermes skills tap add myorg/skills-repo # Add a custom GitHub source
---
hermes skills browse --source official
hermes skills install official/security/1password
---
hermes skills search react --source skills-sh
hermes skills inspect skills-sh/vercel-labs/json-render/json-render-react
hermes skills install skills-sh/vercel-labs/json-render/json-render-react --force
---
hermes skills search https://mintlify.com/docs --source well-known
hermes skills inspect well-known:https://mintlify.com/docs/.well-known/skills/mintlify
hermes skills install well-known:https://mintlify.com/docs/.well-known/skills/mintlify
---
hermes skills install openai/skills/k8s
hermes skills tap add myorg/skills-repo
---
hermes skills install skills-sh/anthropics/skills/pdf --force
---
hermes skills check # รายงานว่า Skills hub ที่ติดตั้งตัวใดมีการเปลี่ยนแปลง upstream
hermes skills update # ติดตั้งใหม่เฉพาะ Skills ที่มีการอัปเดต
hermes skills update react # อัปเดต Skills hub ที่ติดตั้งเฉพาะตัว
---
# ปลอดภัย: ล้างรายการ manifest สำหรับ Skill นี้ สำเนาปัจจุบันของคุณยังคงอยู่
# แต่การ sync ครั้งต่อไปจะตั้งค่า baseline ใหม่โดยอิงจากมัน เพื่อให้การอัปเดตในอนาคตทำงานได้ตามปกติ
hermes skills reset google-workspace
# กู้คืนเต็มรูปแบบ: ลบสำเนา local ของคุณด้วย และคัดลอกเวอร์ชัน bundled ปัจจุบัน
# ใช้สิ่งนี้เมื่อคุณต้องการให้ได้ Skill upstream ที่สมบูรณ์แบบกลับมา
hermes skills reset google-workspace --restore
# ไม่โต้ตอบ (เช่น ใน scripts หรือ TUI mode) - ข้ามการยืนยัน --restore
hermes skills reset google-workspace --restore --yes
---
/skills reset google-workspace
/skills reset google-workspace --restore
---
/skills browse
/skills search react --source skills-sh
/skills search https://mintlify.com/docs --source well-known
/skills inspect skills-sh/vercel-labs/json-render/json-render-react
/skills install openai/skills/skill-creator --force
/skills check
/skills update
/skills reset google-workspace
/skills list
---
/skin # show the current skin and list available skins
/skin ares # switch to a built-in skin
/skin mytheme # switch to a custom skin from ~/.hermes/skins/mytheme.yaml
---
display:
skin: default
---
# ~/.hermes/skins/mytheme.yaml
# Complete skin template - all keys shown. Delete any you don't need;
# missing values automatically inherit from the 'default' skin.
name: mytheme
description: My custom theme
colors:
banner_border: "#CD7F32"
banner_title: "#FFD700"
banner_accent: "#FFBF00"
banner_dim: "#B8860B"
banner_text: "#FFF8DC"
ui_accent: "#FFBF00"
ui_label: "#4dd0e1"
ui_ok: "#4caf50"
ui_error: "#ef5350"
ui_warn: "#ffa726"
prompt: "#FFF8DC"
input_rule: "#CD7F32"
response_border: "#FFD700"
session_label: "#DAA520"
session_border: "#8B8682"
status_bar_bg: "#1a1a2e"
voice_status_bg: "#1a1a2e"
completion_menu_bg: "#1a1a2e"
completion_menu_current_bg: "#333355"
completion_menu_meta_bg: "#1a1a2e"
completion_menu_meta_current_bg: "#333355"
spinner:
waiting_faces:
- "(⚔)"
- "(⛨)"
- "(▲)"
thinking_faces:
- "(⚔)"
- "(⌁)"
- "(<>)"
thinking_verbs:
- "processing"
- "analyzing"
- "computing"
- "evaluating"
wings:
- ["⟪⚡", "⚡⟫"]
- ["⟪●", "●⟫"]
branding:
agent_name: "My Agent"
welcome: "Welcome to My Agent! Type your message or /help for commands."
goodbye: "See you later! ⚡"
response_label: " ⚡ My Agent "
prompt_symbol: "⚡ ❯ "
help_header: "(⚡) Available Commands"
tool_prefix: "┊"
# Per-tool emoji overrides (optional)
tool_emojis:
terminal: "⚔"
web_search: "🔮"
read_file: "📄"
# Custom ASCII art banners (optional, Rich markup supported)
# banner_logo: |
# [bold #FFD700] MY AGENT [/]
# banner_hero: |
# [#FFD700] Custom art here [/]
---
name: cyberpunk
description: Neon terminal theme
colors:
banner_border: "#FF00FF"
banner_title: "#00FFFF"
banner_accent: "#FF1493"
spinner:
thinking_verbs: ["jacking in", "decrypting", "uploading"]
wings:
- ["⟨⚡", "⚡⟩"]
branding:
agent_name: "Cyber Agent"
response_label: " ⚡ Cyber "
tool_prefix: "▏"
---
npx -y hermes-mod
---
git clone https://github.com/cocktailpeanut/hermes-mod.git
cd hermes-mod/app
npm install
npm startRAW_BUFFERClick to expand / collapse
📄 user-guide/features/plugins.md
sidebar_position: 11 sidebar_label: "Plugins" title: "Plugins" description: "Extend Hermes with custom tools, hooks, and integrations via the plugin system"
Plugins
Hermes มีระบบ plugin สำหรับการเพิ่ม custom tools, hooks, และ integrations โดยที่ไม่ต้องแก้ไข core code
→ Build a Hermes Plugin - step-by-step guide พร้อมตัวอย่างที่ใช้งานได้จริง
Quick overview
ให้ drop directory เข้าไปใน ~/.hermes/plugins/ โดยมีไฟล์ plugin.yaml และ Python code:
~/.hermes/plugins/my-plugin/
├── plugin.yaml # manifest
├── __init__.py # register() - wires schemas to handlers
├── schemas.py # tool schemas (what the LLM sees)
└── tools.py # tool handlers (what runs when called)เมื่อเริ่ม Hermes, tools ของคุณจะปรากฏอยู่เคียงข้าง built-in tools และ model สามารถเรียกใช้ได้ทันที
Minimal working example
นี่คือ plugin ที่สมบูรณ์แบบที่เพิ่ม tool ชื่อ hello_world และ log ทุกครั้งที่มีการเรียกใช้ tool ผ่าน hook
~/.hermes/plugins/hello-world/plugin.yaml
name: hello-world
version: "1.0"
description: A minimal example plugin~/.hermes/plugins/hello-world/__init__.py
"""Minimal Hermes plugin - registers a tool and a hook."""
def register(ctx):
# --- Tool: hello_world ---
schema = {
"name": "hello_world",
"description": "Returns a friendly greeting for the given name.",
"parameters": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name to greet",
}
},
"required": ["name"],
},
}
def handle_hello(params):
name = params.get("name", "World")
return f"Hello, {name}! 👋 (from the hello-world plugin)"
ctx.register_tool("hello_world", schema, handle_hello)
# --- Hook: log every tool call ---
def on_tool_call(tool_name, params, result):
print(f"[hello-world] tool called: {tool_name}")
ctx.register_hook("post_tool_call", on_tool_call)ให้ drop ทั้งสองไฟล์เข้าไปใน ~/.hermes/plugins/hello-world/, restart Hermes, และ model จะสามารถเรียกใช้ hello_world ได้ทันที hook จะพิมพ์ log line หลังจากการเรียกใช้ tool ทุกครั้ง
Project-local plugins ที่อยู่ใน ./.hermes/plugins/ จะถูกปิดใช้งานโดยค่าเริ่มต้น คุณต้องเปิดใช้งานเฉพาะสำหรับ repository ที่เชื่อถือได้ โดยการตั้งค่า HERMES_ENABLE_PROJECT_PLUGINS=true ก่อนเริ่ม Hermes
What plugins can do
| Capability | How |
|---|---|
| Add tools | ctx.register_tool(name, schema, handler) |
| Add hooks | ctx.register_hook("post_tool_call", callback) |
| Add slash commands | ctx.register_command(name, handler, description) - adds /name in CLI and gateway sessions |
| Add CLI commands | ctx.register_cli_command(name, help, setup_fn, handler_fn) - adds hermes <plugin> <subcommand> |
| Inject messages | ctx.inject_message(content, role="user") - see Injecting Messages |
| Ship data files | Path(__file__).parent / "data" / "file.yaml" |
| Bundle skills | ctx.register_skill(name, path) - namespaced as plugin:skill, loaded via skill_view("plugin:skill") |
| Gate on env vars | requires_env: [API_KEY] in plugin.yaml - prompted during hermes plugins install |
| Distribute via pip | [project.entry-points."hermes_agent.plugins"] |
Plugin discovery
| Source | Path | Use case |
|---|---|---|
| Bundled | <repo>/plugins/ | มาพร้อมกับ Hermes - see Built-in Plugins |
| User | ~/.hermes/plugins/ | Plugins ส่วนตัว |
| Project | .hermes/plugins/ | Plugins เฉพาะโปรเจกต์ (ต้องตั้งค่า HERMES_ENABLE_PROJECT_PLUGINS=true) |
| pip | hermes_agent.plugins entry_points | Packages ที่แจกจ่าย |
แหล่งที่มาที่ใหม่กว่าจะเขียนทับแหล่งที่มาที่เก่ากว่าในกรณีที่ชื่อชนกัน ดังนั้น user plugin ที่มีชื่อเดียวกับ bundled plugin จะเข้ามาแทนที่
Plugins are opt-in
ทุก plugin - ไม่ว่าจะติดตั้งโดยผู้ใช้, bundled, หรือ pip - จะถูกปิดใช้งานโดยค่าเริ่มต้น การค้นพบ (Discovery) จะหา plugin เหล่านั้นเจอ (ดังนั้นจึงแสดงใน hermes plugins และ /plugins) แต่จะไม่มีอะไรทำงานจนกว่าคุณจะเพิ่มชื่อ plugin นั้นใน plugins.enabled ใน ~/.hermes/config.yaml สิ่งนี้ป้องกันไม่ให้ส่วนใดๆ ที่มี hooks หรือ tools ทำงานได้โดยที่คุณไม่ได้ยินยอมอย่างชัดเจน
plugins:
enabled:
- my-tool-plugin
- disk-cleanup
disabled: # optional deny-list - always wins if a name appears in both
- noisy-pluginสามวิธีในการเปลี่ยนสถานะ:
hermes plugins # interactive toggle (space to check/uncheck)
hermes plugins enable <name> # add to allow-list
hermes plugins disable <name> # remove from allow-list + add to disabledหลังจากรัน hermes plugins install owner/repo, คุณจะได้รับคำถามว่า Enable 'name' now? [y/N] - ค่าเริ่มต้นคือไม่ (no) คุณสามารถข้ามคำถามนี้สำหรับการติดตั้งแบบ script ด้วย --enable หรือ --no-enable
Migration for existing users
เมื่อคุณอัปเกรดเป็นเวอร์ชันของ Hermes ที่มี opt-in plugins (config schema v21+) user plugins ใดๆ ที่ติดตั้งอยู่ภายใต้ ~/.hermes/plugins/ ซึ่งไม่ได้อยู่ใน plugins.disabled จะถูก grandfathered ไปยัง plugins.enabled โดยอัตโนมัติ การตั้งค่าเดิมของคุณยังคงใช้งานได้ Plugins ที่ bundled จะไม่ถูก grandfathered - แม้แต่ผู้ใช้เดิมก็ต้อง opt in อย่างชัดเจน
Available hooks
Plugins สามารถลงทะเบียน callbacks สำหรับ event lifecycle เหล่านี้ ดูรายละเอียดทั้งหมด, callback signatures, และตัวอย่างได้ที่ Event Hooks page
| Hook | Fires when |
|---|---|
pre_tool_call | ก่อนที่ tool ใดๆ จะทำงาน |
post_tool_call | หลังที่ tool ใดๆ ส่งผลลัพธ์กลับมา |
pre_llm_call | ครั้งเดียวต่อ turn, ก่อน loop ของ LLM - สามารถ return {"context": "..."} เพื่อ inject context into the user message |
post_llm_call | ครั้งเดียวต่อ turn, หลัง loop ของ LLM (เฉพาะ turn ที่สำเร็จเท่านั้น) |
on_session_start | เมื่อสร้าง session ใหม่ (เฉพาะ turn แรก) |
on_session_end | เมื่อสิ้นสุดการเรียกใช้ run_conversation ทุกครั้ง + CLI exit handler |
Plugin types
Hermes มี plugin สามประเภท:
| Type | What it does | Selection | Location |
|---|---|---|---|
| General plugins | เพิ่ม tools, hooks, slash commands, CLI commands | Multi-select (enable/disable) | ~/.hermes/plugins/ |
| Memory providers | แทนที่หรือเสริม built-in memory | Single-select (one active) | plugins/memory/ |
| Context engines | แทนที่ built-in context compressor | Single-select (one active) | plugins/context_engine/ |
Memory providers และ context engines คือ provider plugins - สามารถเปิดใช้งานได้เพียงประเภทละหนึ่งเท่านั้น General plugins สามารถเปิดใช้งานได้ทุกรูปแบบ
Managing plugins
hermes plugins # unified interactive UI
hermes plugins list # table: enabled / disabled / not enabled
hermes plugins install user/repo # install from Git, then prompt Enable? [y/N]
hermes plugins install user/repo --enable # install AND enable (no prompt)
hermes plugins install user/repo --no-enable # install but leave disabled (no prompt)
hermes plugins update my-plugin # pull latest
hermes plugins remove my-plugin # uninstall
hermes plugins enable my-plugin # add to allow-list
hermes plugins disable my-plugin # remove from allow-list + add to disabledInteractive UI
การรัน hermes plugins โดยไม่มี argument จะเปิดหน้าจอ interactive แบบ composite:
Plugins
↑↓ navigate SPACE toggle ENTER configure/confirm ESC done
General Plugins
→ [✓] my-tool-plugin - Custom search tool
[ ] webhook-notifier - Event hooks
[ ] disk-cleanup - Auto-cleanup of ephemeral files [bundled]
Provider Plugins
Memory Provider ▸ honcho
Context Engine ▸ compressor- General Plugins section - ใช้ checkboxes, toggle ด้วย SPACE. ถูกเลือก = อยู่ใน
plugins.enabled, ไม่ถูกเลือก = อยู่ในplugins.disabled(ปิดอย่างชัดเจน). - Provider Plugins section - แสดงการเลือกปัจจุบัน กด ENTER เพื่อเข้าสู่ radio picker ที่คุณเลือก provider ที่ใช้งานอยู่.
- Plugins ที่ bundled จะปรากฏในรายการเดียวกันพร้อม tag
[bundled].
การเลือก provider plugin จะถูกบันทึกไว้ใน config.yaml:
memory:
provider: "honcho" # empty string = built-in only
context:
engine: "compressor" # default built-in compressorEnabled vs. disabled vs. neither
Plugins จะอยู่ในหนึ่งในสามสถานะ:
| State | Meaning | In plugins.enabled? | In plugins.disabled? |
|---|---|---|---|
enabled | โหลดใน session ถัดไป | Yes | No |
disabled | ปิดอย่างชัดเจน - จะไม่โหลดแม้ว่าจะอยู่ใน enabled ด้วย | (irrelevant) | Yes |
not enabled | ค้นพบแต่ไม่เคย opt in | No | No |
ค่าเริ่มต้นสำหรับ plugin ที่ติดตั้งหรือ bundled ใหม่คือ not enabled คำสั่ง hermes plugins list แสดงทั้งสามสถานะที่แตกต่างกัน เพื่อให้คุณทราบว่าอะไรถูกปิดอย่างชัดเจนเทียบกับอะไรที่แค่รอการเปิดใช้งาน
ใน session ที่กำลังทำงานอยู่, /plugins จะแสดงว่า plugin ใดกำลังถูกโหลดอยู่
Injecting Messages
Plugins สามารถ inject messages เข้าไปใน conversation ที่กำลังทำงานอยู่โดยใช้ ctx.inject_message():
ctx.inject_message("New data arrived from the webhook", role="user")Signature: ctx.inject_message(content: str, role: str = "user") -> bool
วิธีการทำงาน:
- หาก agent idle (รอ input จากผู้ใช้), ข้อความจะถูกจัดคิวเป็น input ถัดไปและเริ่ม turn ใหม่
- หาก agent mid-turn (กำลังทำงานอยู่), ข้อความจะขัดจังหวะการทำงานปัจจุบัน - เหมือนกับผู้ใช้พิมพ์ข้อความใหม่และกด Enter
- สำหรับ role ที่ไม่ใช่
"user", content จะถูก prefix ด้วย[role](เช่น[system] ...). - คืนค่า
Trueหากข้อความถูกจัดคิวสำเร็จ,Falseหากไม่มี CLI reference (เช่น ใน gateway mode).
สิ่งนี้ช่วยให้ plugins เช่น remote control viewers, messaging bridges, หรือ webhook receivers สามารถป้อนข้อความเข้าสู่ conversation จากแหล่งภายนอกได้
:::note
inject_message ใช้ได้เฉพาะใน CLI mode เท่านั้น ใน gateway mode จะไม่มี CLI reference และ method จะคืนค่า False.
:::
ดู full guide สำหรับ handler contracts, schema format, hook behavior, error handling, และ common mistakes.
📄 user-guide/features/provider-routing.md
title: Provider Routing description: Configure OpenRouter provider preferences to optimize for cost, speed, or quality. sidebar_label: Provider Routing sidebar_position: 7
Provider Routing
เมื่อใช้ OpenRouter เป็น LLM provider, Hermes Agent รองรับ provider routing ซึ่งเป็นการควบคุมระดับละเอียดว่า AI provider พื้นฐานใดที่จะจัดการ request ของคุณ และจะจัดลำดับความสำคัญอย่างไร
OpenRouter จะกำหนดเส้นทาง request ไปยังผู้ให้บริการหลายราย (เช่น Anthropic, Google, AWS Bedrock, Together AI) Provider routing ช่วยให้คุณสามารถปรับให้เหมาะสมเพื่อลดต้นทุน, เพิ่มความเร็ว, คุณภาพ, หรือบังคับใช้ข้อกำหนดของผู้ให้บริการเฉพาะรายได้
Configuration
เพิ่มส่วน provider_routing ในไฟล์ ~/.hermes/config.yaml ของคุณ:
provider_routing:
sort: "price" # วิธีการจัดอันดับผู้ให้บริการ
only: [] # Whitelist: ใช้เฉพาะผู้ให้บริการเหล่านี้เท่านั้น
ignore: [] # Blacklist: ห้ามใช้ผู้ให้บริการเหล่านี้เด็ดขาด
order: [] # ลำดับความสำคัญที่กำหนดอย่างชัดเจน
require_parameters: false # ใช้เฉพาะผู้ให้บริการที่รองรับพารามิเตอร์ทั้งหมด
data_collection: null # ควบคุมการเก็บข้อมูล ("allow" หรือ "deny"):::info Provider routing จะใช้ได้เมื่อใช้ OpenRouter เท่านั้น จะไม่มีผลกับการเชื่อมต่อผู้ให้บริการโดยตรง (เช่น การเชื่อมต่อโดยตรงกับ Anthropic API) :::
Options
sort
ควบคุมวิธีการจัดอันดับผู้ให้บริการที่มีอยู่ของ OpenRouter สำหรับ request ของคุณ
| Value | Description |
|---|---|
"price" | ผู้ให้บริการที่ราคาถูกที่สุดก่อน |
"throughput" | ผู้ให้บริการที่ให้โทเคนต่อวินาทีเร็วที่สุดก่อน |
"latency" | ผู้ให้บริการที่มีเวลาถึงโทเคนแรก (time-to-first-token) ต่ำที่สุดก่อน |
provider_routing:
sort: "price"only
Whitelist ของชื่อผู้ให้บริการ เมื่อตั้งค่าแล้ว จะใช้ เฉพาะ ผู้ให้บริการเหล่านี้เท่านั้น ผู้ให้บริการอื่นทั้งหมดจะถูกยกเว้น
provider_routing:
only:
- "Anthropic"
- "Google"ignore
Blacklist ของชื่อผู้ให้บริการ ผู้ให้บริการเหล่านี้จะ ไม่มีวัน ถูกใช้ แม้ว่าพวกเขาจะเสนอทางเลือกที่ถูกที่สุดหรือเร็วที่สุดก็ตาม
provider_routing:
ignore:
- "Together"
- "DeepInfra"order
ลำดับความสำคัญที่กำหนดอย่างชัดเจน ผู้ให้บริการที่ระบุไว้ก่อนจะถูกให้ความสำคัญก่อน ผู้ให้บริการที่ไม่ได้ระบุจะถูกใช้เป็นตัวสำรอง (fallbacks)
provider_routing:
order:
- "Anthropic"
- "Google"
- "AWS Bedrock"require_parameters
เมื่อตั้งค่าเป็น true, OpenRouter จะกำหนดเส้นทางไปยังผู้ให้บริการที่รองรับพารามิเตอร์ ทั้งหมด ใน request ของคุณ (เช่น temperature, top_p, tools, ฯลฯ) สิ่งนี้ช่วยป้องกันการที่พารามิเตอร์หายไปโดยไม่มีการแจ้งเตือน
provider_routing:
require_parameters: truedata_collection
ควบคุมว่าผู้ให้บริการสามารถใช้ prompt ของคุณเพื่อการฝึกฝนได้หรือไม่ ตัวเลือกคือ "allow" หรือ "deny"
provider_routing:
data_collection: "deny"Practical Examples
Optimize for Cost
กำหนดเส้นทางไปยังผู้ให้บริการที่ราคาถูกที่สุดที่มีอยู่ เหมาะสำหรับการใช้งานปริมาณสูงและการพัฒนา:
provider_routing:
sort: "price"Optimize for Speed
จัดลำดับความสำคัญของผู้ให้บริการที่มี latency ต่ำสำหรับการใช้งานแบบโต้ตอบ:
provider_routing:
sort: "latency"Optimize for Throughput
ดีที่สุดสำหรับการสร้างเนื้อหาแบบยาวที่โทเคนต่อวินาทีมีความสำคัญ:
provider_routing:
sort: "throughput"Lock to Specific Providers
รับรองว่า request ทั้งหมดจะผ่านผู้ให้บริการเฉพาะรายเพื่อความสม่ำเสมอ:
provider_routing:
only:
- "Anthropic"Avoid Specific Providers
ยกเว้นผู้ให้บริการที่คุณไม่ต้องการใช้ (เช่น เพื่อความเป็นส่วนตัวของข้อมูล):
provider_routing:
ignore:
- "Together"
- "Lepton"
data_collection: "deny"Preferred Order with Fallbacks
ลองใช้ผู้ให้บริการที่คุณต้องการก่อน จากนั้นสำรองไปยังผู้ให้บริการอื่นหากไม่พร้อมใช้งาน:
provider_routing:
order:
- "Anthropic"
- "Google"
require_parameters: trueHow It Works
Provider routing preferences จะถูกส่งไปยัง OpenRouter API ผ่าน field extra_body.provider ในทุก API call สิ่งนี้ใช้ได้กับทั้ง:
- CLI mode - กำหนดค่าใน
~/.hermes/config.yamlและโหลดเมื่อเริ่มต้น - Gateway mode - ไฟล์ config เดียวกัน โหลดเมื่อ gateway เริ่มทำงาน
การตั้งค่า routing จะถูกอ่านจาก config.yaml และส่งเป็น parameters เมื่อสร้าง AIAgent:
providers_allowed ← from provider_routing.only
providers_ignored ← from provider_routing.ignore
providers_order ← from provider_routing.order
provider_sort ← from provider_routing.sort
provider_require_parameters ← from provider_routing.require_parameters
provider_data_collection ← from provider_routing.data_collection:::tip คุณสามารถรวมตัวเลือกหลายอย่างเข้าด้วยกันได้ ตัวอย่างเช่น จัดเรียงตามราคา แต่ยกเว้นผู้ให้บริการบางรายและกำหนดให้ต้องรองรับพารามิเตอร์:
provider_routing:
sort: "price"
ignore: ["Together"]
require_parameters: true
data_collection: "deny":::
Default Behavior
เมื่อไม่ได้กำหนดส่วน provider_routing (ค่าเริ่มต้น) OpenRouter จะใช้ logic การกำหนดเส้นทางเริ่มต้นของตัวเอง ซึ่งโดยทั่วไปจะสร้างสมดุลระหว่างต้นทุนและความพร้อมใช้งานโดยอัตโนมัติ
:::tip Provider Routing vs. Fallback Models Provider routing ควบคุมว่า sub-providers ภายใน OpenRouter ใดที่จะจัดการ request ของคุณ สำหรับการ failover อัตโนมัติไปยังผู้ให้บริการที่แตกต่างกันโดยสิ้นเชิงเมื่อโมเดลหลักของคุณล้มเหลว โปรดดูที่ Fallback Providers :::
📄 user-guide/features/rl-training.md
sidebar_position: 13 title: "RL Training" description: "Reinforcement learning on agent behaviors with Tinker-Atropos - environment discovery, training, and evaluation"
การฝึกอบรม RL
Hermes Agent มี pipeline การฝึกอบรม RL (Reinforcement Learning) แบบรวมอยู่ในตัว ซึ่งสร้างบน Tinker-Atropos สิ่งนี้ช่วยให้สามารถฝึกโมเดลภาษา (language models) สำหรับงานเฉพาะสภาพแวดล้อม (environment-specific tasks) โดยใช้ GRPO (Group Relative Policy Optimization) ด้วย LoRA adapters ซึ่งถูกจัดการทั้งหมดผ่าน tool interface ของ agent
ภาพรวม (Overview)
ระบบการฝึกอบรม RL ประกอบด้วยสามส่วนประกอบ:
- Atropos - API server สำหรับ trajectory ที่ทำหน้าที่ประสานงานปฏิสัมพันธ์ของสภาพแวดล้อม จัดการ rollout groups และคำนวณ advantages
- Tinker - บริการฝึกอบรม (training service) ที่จัดการ model weights, LoRA training, sampling/inference, และ optimizer steps
- Environments - Python classes ที่กำหนด tasks, scoring, และ reward functions (เช่น ปัญหาคณิตศาสตร์ GSM8K)
agent สามารถค้นพบ environments, กำหนดค่า training parameters, เริ่มการรัน training, และตรวจสอบ metrics ทั้งหมดผ่านชุดเครื่องมือ rl_*
ข้อกำหนด (Requirements)
การฝึกอบรม RL ต้องใช้:
- Python >= 3.11 (ข้อกำหนดของแพ็กเกจ Tinker)
- TINKER_API_KEY - API key สำหรับบริการฝึกอบรม Tinker
- WANDB_API_KEY - API key สำหรับการติดตาม metrics ของ Weights & Biases
- โมดูลย่อย
tinker-atropos(ที่tinker-atropos/เทียบกับ root ของ Hermes)
# Set up API keys
hermes config set TINKER_API_KEY your-tinker-key
hermes config set WANDB_API_KEY your-wandb-keyเมื่อมีทั้งสอง keys และมี Python >= 3.11 จะเปิดใช้งานชุดเครื่องมือ rl โดยอัตโนมัติ
เครื่องมือที่มี (Available Tools)
| Tool | Description |
|---|---|
rl_list_environments | ค้นพบ RL environments ที่มีอยู่ |
rl_select_environment | เลือก environment และโหลด config ของมัน |
rl_get_current_config | ดู fields ที่สามารถกำหนดค่าและ fields ที่ถูกล็อกไว้ |
rl_edit_config | แก้ไข training parameters ที่สามารถกำหนดค่าได้ |
rl_start_training | เริ่มการรัน training (จะสร้าง 3 processes) |
rl_check_status | ตรวจสอบความคืบหน้าของการฝึกอบรมและ metrics ของ WandB |
rl_stop_training | หยุดงานฝึกอบรมที่กำลังทำงานอยู่ |
rl_get_results | รับ metrics สุดท้ายและ path ของ model weights |
rl_list_runs | แสดงรายการ runs ทั้งหมดที่กำลังทำงานและเสร็จสมบูรณ์แล้ว |
rl_test_inference | ทดสอบ inference อย่างรวดเร็วโดยใช้ OpenRouter |
Workflow
1. ค้นพบ Environments
List the available RL environmentsagent จะเรียกใช้ rl_list_environments() ซึ่งจะสแกน tinker-atropos/tinker_atropos/environments/ โดยใช้ AST parsing เพื่อค้นหา Python classes ที่สืบทอดมาจาก BaseEnv แต่ละ environment จะกำหนด:
- Dataset loading - แหล่งที่มาของข้อมูล training (เช่น HuggingFace datasets)
- Prompt construction - วิธีการจัดรูปแบบ items สำหรับ model
- Scoring/verification - วิธีการประเมิน model outputs และกำหนด rewards
2. เลือกและกำหนดค่า (Select and Configure)
Select the GSM8K environment and show me the configurationagent จะเรียกใช้ rl_select_environment("gsm8k_tinker") จากนั้นเรียกใช้ rl_get_current_config() เพื่อดูพารามิเตอร์ทั้งหมด
Configuration fields แบ่งออกเป็นสองประเภท:
Configurable fields (สามารถแก้ไขได้):
group_size- จำนวน completions ต่อ item (ค่าเริ่มต้น: 16)batch_size- ขนาด batch สำหรับการฝึกอบรม (ค่าเริ่มต้น: 128)wandb_name- ชื่อ run ของ WandB (ตั้งค่าอัตโนมัติเป็น{env}-{timestamp})- พารามิเตอร์เฉพาะ environment อื่นๆ
Locked fields (การตั้งค่าโครงสร้างพื้นฐาน ไม่สามารถเปลี่ยนแปลงได้):
tokenizer_name- Tokenizer ของ model (เช่นQwen/Qwen3-8B)rollout_server_url- URL ของ Atropos API (http://localhost:8000)max_token_length- ความยาว token สูงสุด (8192)max_num_workers- จำนวน workers แบบขนานสูงสุด (2048)total_steps- จำนวน steps การฝึกอบรมทั้งหมด (2500)lora_rank- rank ของ LoRA adapter (32)learning_rate- อัตราการเรียนรู้ (4e-5)max_token_trainer_length- Max tokens สำหรับ trainer (9000)
3. เริ่มการฝึกอบรม (Start Training)
Start the training runagent จะเรียกใช้ rl_start_training() ซึ่ง:
- สร้างไฟล์ config YAML โดยรวมการตั้งค่าที่ถูกล็อกไว้เข้ากับการกำหนดค่าที่สามารถแก้ไขได้
- สร้าง run ID ที่ไม่ซ้ำกัน
- สร้างสาม processes:
- Atropos API server (
run-api) - การประสานงาน trajectory - Tinker trainer (
launch_training.py) - LoRA training + FastAPI inference server บน port 8001 - Environment (
environment.py serve) - environment ที่เลือกซึ่งเชื่อมต่อกับ Atropos
- Atropos API server (
processes เหล่านี้จะเริ่มด้วยการหน่วงเวลาแบบ staggered (5s สำหรับ API, 30s สำหรับ trainer, 90s สำหรับ environment) เพื่อให้แน่ใจว่าลำดับการเริ่มต้นถูกต้อง
4. ตรวจสอบความคืบหน้า (Monitor Progress)
Check the status of training run abc12345agent จะเรียกใช้ rl_check_status(run_id) ซึ่งจะรายงาน:
- สถานะของ process (running/exited สำหรับทั้ง 3 processes)
- เวลาที่ใช้ในการรัน
- WandB metrics (step, reward mean, percent correct, eval accuracy)
- ตำแหน่งไฟล์ log สำหรับการ debug
:::note Rate Limiting การตรวจสอบสถานะถูกจำกัดอัตรา (rate-limited) ให้ทำได้ครั้งละครั้งทุก 30 นาที ต่อ run ID สิ่งนี้ป้องกันการ polling ที่มากเกินไปในระหว่างงานฝึกอบรมที่ใช้เวลานานหลายชั่วโมง :::
5. หยุดหรือรับผลลัพธ์ (Stop or Get Results)
Stop the training run
# or
Get the final results for run abc12345rl_stop_training() จะยุติทั้งสาม processes ในลำดับย้อนกลับ (environment → trainer → API) ส่วน rl_get_results() จะดึง metrics สุดท้ายของ WandB และประวัติการฝึกอบรม
การทดสอบ Inference (Inference Testing)
ก่อนที่จะเริ่มการรัน training เต็มรูปแบบ คุณสามารถทดสอบได้ว่า environment ทำงานได้อย่างถูกต้องหรือไม่โดยใช้ rl_test_inference สิ่งนี้จะรันขั้นตอน inference และ scoring สองสามขั้นตอนโดยใช้ OpenRouter - ไม่จำเป็นต้องใช้ Tinker API เพียงแค่ต้องการ OPENROUTER_API_KEY
Test the selected environment with inferenceDefault configuration:
- 3 steps × 16 completions = 48 rollouts ต่อ model
- ทดสอบ 3 models ที่ขนาดต่างกันเพื่อความทนทาน:
qwen/qwen3-8b(ขนาดเล็ก)z-ai/glm-4.7-flash(ขนาดกลาง)minimax/minimax-m2.7(ขนาดใหญ่)
- รวม: ~144 rollouts
สิ่งนี้จะตรวจสอบ:
- Environment โหลดได้อย่างถูกต้อง
- Prompt construction ทำงานได้
- การ parse response ของ inference มีความทนทานในทุกขนาดของ model
- Verifier/scoring logic สร้าง rewards ที่ถูกต้อง
การรวม API ของ Tinker (Tinker API Integration)
trainer ใช้ Tinker API สำหรับการดำเนินการ model training:
- ServiceClient - สร้าง clients สำหรับการฝึกอบรมและการ sampling
- Training client - จัดการ forward-backward passes ด้วย importance sampling loss, optimizer steps (Adam), และ weight checkpointing
- Sampling client - ให้บริการ inference โดยใช้ weights ที่ได้รับการฝึกอบรมล่าสุด
training loop:
- ดึง batch ของ rollouts จาก Atropos (prompt + completions + scores)
- แปลงเป็น Tinker Datum objects พร้อม padded logprobs และ advantages
- รัน forward-backward pass ด้วย importance sampling loss
- ทำ optimizer step (Adam: lr=4e-5, β1=0.9, β2=0.95)
- บันทึก weights และสร้าง sampling client ใหม่สำหรับการ inference ในขั้นตอนถัดไป
- บันทึก metrics ไปยัง WandB
แผนภาพสถาปัตยกรรม (Architecture Diagram)
flowchart LR
api["Atropos API<br/>run-api<br/>port 8000"]
env["Environment<br/>BaseEnv implementation"]
infer["OpenAI / sglang<br/>inference API<br/>port 8001"]
trainer["Tinker Trainer<br/>LoRA training + FastAPI"]
env <--> api
env --> infer
api -->|"batches: tokens, scores, logprobs"| trainer
trainer -->|"serves inference"| inferการสร้าง Environments แบบกำหนดเอง (Creating Custom Environments)
ในการสร้าง RL environment ใหม่:
- สร้างไฟล์ Python ใน
tinker-atropos/tinker_atropos/environments/ - กำหนด class ที่สืบทอดมาจาก
BaseEnv - Implement methods ที่จำเป็น:
load_dataset()- โหลด training data ของคุณget_next_item()- ให้ item ถัดไปแก่ modelscore_answer()- ให้คะแนน model outputs และกำหนด rewardscollect_trajectories()- รวบรวมและส่งคืน trajectories
- ทางเลือกคือการกำหนด custom config class ที่สืบทอดมาจาก
BaseEnvConfig
ศึกษาจาก gsm8k_tinker.py ที่มีอยู่เป็น template agent สามารถช่วยคุณสร้าง environments ใหม่ได้ - มันสามารถอ่านไฟล์ environment ที่มีอยู่ ตรวจสอบ HuggingFace datasets และเขียนโค้ด environment ใหม่ได้
Metrics ของ WandB
การรัน training จะบันทึกไปยัง Weights & Biases ด้วย metrics หลักเหล่านี้:
| Metric | Description |
|---|---|
train/loss | Training loss (importance sampling) |
train/learning_rate | อัตราการเรียนรู้ปัจจุบัน |
reward/mean | ค่าเฉลี่ย reward ทั่วกลุ่ม |
logprobs/mean | ค่าเฉลี่ย logprobs อ้างอิง |
logprobs/mean_training | ค่าเฉลี่ย logprobs สำหรับการฝึกอบรม |
logprobs/diff | Logprob drift (reference - training) |
advantages/mean | ค่า advantage เฉลี่ย |
advantages/std | ส่วนเบี่ยงเบนมาตรฐานของ advantage |
Log Files
การรัน training แต่ละครั้งจะสร้างไฟล์ log ใน ~/.hermes/logs/rl_training/:
logs/
├── api_{run_id}.log # Atropos API server logs
├── trainer_{run_id}.log # Tinker trainer logs
├── env_{run_id}.log # Environment process logs
└── inference_tests/ # Inference test results
├── test_{env}_{model}.jsonl
└── test_{env}_{model}.logไฟล์เหล่านี้มีค่าอย่างยิ่งสำหรับการ debug เมื่อการฝึกอบรมล้มเหลวหรือให้ผลลัพธ์ที่ไม่คาดคิด
📄 user-guide/features/skills.md
sidebar_position: 2 title: "Skills System" description: "On-demand knowledge documents - progressive disclosure, agent-managed skills, and the Skills Hub"
Skills System
Skills คือเอกสารความรู้แบบ on-demand ที่ agent สามารถโหลดเมื่อจำเป็นได้ พวกเขาปฏิบัติตามรูปแบบ progressive disclosure เพื่อลดการใช้โทเคน และเข้ากันได้กับมาตรฐาน open standard ของ agentskills.io
Skills ทั้งหมดจะอยู่ใน ~/.hermes/skills/ ซึ่งเป็นไดเรกทอรีหลักและแหล่งข้อมูลหลัก (source of truth) เมื่อติดตั้งใหม่ Skills ที่มาพร้อมกับระบบจะถูกคัดลอกมาจาก repo Skills ที่ติดตั้งผ่าน Hub และ Skills ที่ agent สร้างขึ้นก็จะถูกเก็บไว้ที่นี่ด้วย agent สามารถแก้ไขหรือลบ Skills ใดก็ได้
คุณยังสามารถชี้ Hermes ไปยัง external skill directories ได้ด้วย ซึ่งเป็นโฟลเดอร์เพิ่มเติมที่ระบบจะสแกนควบคู่ไปกับโฟลเดอร์ภายในเครื่อง ดูรายละเอียดได้ที่ External Skill Directories ด้านล่าง
ดูเพิ่มเติม:
Using Skills
Skills ที่ติดตั้งทุกตัวจะพร้อมใช้งานโดยอัตโนมัติในรูปแบบ slash command:
# In the CLI or any messaging platform:
/gif-search funny cats
/axolotl help me fine-tune Llama 3 on my dataset
/github-pr-workflow create a PR for the auth refactor
/plan design a rollout for migrating our auth provider
# แค่ชื่อ skill ก็เพียงพอแล้ว ระบบจะโหลดและให้ agent ถามว่าคุณต้องการอะไร:
/excalidrawSkill plan ที่มาพร้อมกับระบบเป็นตัวอย่างที่ดีของ slash command ที่มีพฤติกรรมแบบ custom-behavior การรัน /plan [request] จะบอกให้ Hermes ตรวจสอบ context หากจำเป็น เขียนแผนการดำเนินการในรูปแบบ markdown แทนการดำเนินการงาน และบันทึกผลลัพธ์ไว้ภายใต้ .hermes/plans/ ซึ่งเป็น relative path จาก active workspace/backend working directory
คุณยังสามารถโต้ตอบกับ Skills ผ่านการสนทนาแบบธรรมชาติได้:
hermes chat --toolsets skills -q "What skills do you have?"
hermes chat --toolsets skills -q "Show me the axolotl skill"Progressive Disclosure
Skills ใช้รูปแบบการโหลดที่ประหยัดโทเคน:
Level 0: skills_list() → [{name, description, category}, ...] (~3k tokens)
Level 1: skill_view(name) → Full content + metadata (varies)
Level 2: skill_view(name, path) → Specific reference file (varies)agent จะโหลดเนื้อหา skill ทั้งหมดก็ต่อเมื่อมันต้องการใช้จริงเท่านั้น
SKILL.md Format
---
name: my-skill
description: Brief description of what this skill does
version: 1.0.0
platforms: [macos, linux] # Optional - restrict to specific OS platforms
metadata:
hermes:
tags: [python, automation]
category: devops
fallback_for_toolsets: [web] # Optional - conditional activation (see below)
requires_toolsets: [terminal] # Optional - conditional activation (see below)
config: # Optional - config.yaml settings
- key: my.setting
description: "What this controls"
default: "value"
prompt: "Prompt for setup"
---
# Skill Title
## When to Use
Trigger conditions for this skill.
## Procedure
1. Step one
2. Step two
## Pitfalls
- Known failure modes and fixes
## Verification
How to confirm it worked.Platform-Specific Skills
Skills สามารถจำกัดตัวเองให้ทำงานบนระบบปฏิบัติการที่เฉพาะเจาะจงได้โดยใช้ฟิลด์ platforms:
| Value | Matches |
|---|---|
macos | macOS (Darwin) |
linux | Linux |
windows | Windows |
platforms: [macos] # สำหรับ macOS เท่านั้น (เช่น iMessage, Apple Reminders, FindMy)
platforms: [macos, linux] # สำหรับ macOS และ Linuxเมื่อตั้งค่าแล้ว Skill จะถูกซ่อนโดยอัตโนมัติจาก system prompt, skills_list(), และ slash commands บนแพลตฟอร์มที่ไม่รองรับ หากละเว้น Skill จะโหลดบนทุกแพลตฟอร์ม
Conditional Activation (Fallback Skills)
Skills สามารถแสดงหรือซ่อนตัวเองโดยอัตโนมัติโดยอิงตามเครื่องมือที่พร้อมใช้งานใน session ปัจจุบัน สิ่งนี้มีประโยชน์ที่สุดสำหรับ fallback skills - ทางเลือกฟรีหรือทางเลือกในเครื่องที่ควรปรากฏก็ต่อเมื่อเครื่องมือระดับพรีเมียมไม่พร้อมใช้งาน
metadata:
hermes:
fallback_for_toolsets: [web] # แสดงเฉพาะเมื่อ toolsets เหล่านี้ไม่พร้อมใช้งาน
requires_toolsets: [terminal] # แสดงเฉพาะเมื่อ toolsets เหล่านี้พร้อมใช้งาน
fallback_for_tools: [web_search] # แสดงเฉพาะเมื่อเครื่องมือเหล่านี้ไม่พร้อมใช้งาน
requires_tools: [terminal] # แสดงเฉพาะเมื่อเครื่องมือเหล่านี้พร้อมใช้งาน| Field | Behavior |
|---|---|
fallback_for_toolsets | Skill จะถูก ซ่อน เมื่อ toolsets ที่ระบุพร้อมใช้งาน จะแสดงเมื่อขาดหายไป |
fallback_for_tools | เช่นกัน แต่ตรวจสอบเครื่องมือแต่ละตัวแทน toolsets |
requires_toolsets | Skill จะถูก ซ่อน เมื่อ toolsets ที่ระบุไม่พร้อมใช้งาน จะแสดงเมื่อพร้อมใช้งาน |
requires_tools | เช่นกัน แต่ตรวจสอบเครื่องมือแต่ละตัว |
ตัวอย่าง: Skill duckduckgo-search ที่มาพร้อมกับระบบใช้ fallback_for_toolsets: [web] เมื่อคุณตั้งค่า FIRECRAWL_API_KEY ตัว web toolset จะพร้อมใช้งานและ agent จะใช้ web_search - Skill DuckDuckGo จะยังคงซ่อนอยู่ หาก API key หายไป web toolset จะไม่พร้อมใช้งาน และ Skill DuckDuckGo จะปรากฏขึ้นโดยอัตโนมัติในฐานะ fallback
Skills ที่ไม่มี conditional fields ใดๆ จะทำงานเหมือนเดิมเสมอ - พวกมันจะแสดงอยู่ตลอดเวลา
Secure Setup on Load
Skills สามารถประกาศ environment variables ที่จำเป็นได้โดยที่มันไม่หายไปจากการค้นพบ:
required_environment_variables:
- name: TENOR_API_KEY
prompt: Tenor API key
help: Get a key from https://developers.google.com/tenor
required_for: full functionalityเมื่อพบค่าที่ขาดหายไป Hermes จะขออย่างปลอดภัยเฉพาะเมื่อ Skill ถูกโหลดใน local CLI เท่านั้น คุณสามารถข้ามการตั้งค่าและยังคงใช้ Skill ได้ พื้นผิวการส่งข้อความ (Messaging surfaces) จะไม่ขอ secret ใน chat - พวกมันจะบอกให้คุณใช้ hermes setup หรือ ~/.hermes/.env ในเครื่องแทน
เมื่อตั้งค่าแล้ว env vars ที่ประกาศจะถูก ส่งผ่านโดยอัตโนมัติ ไปยัง execute_code และ terminal sandboxes - script ของ Skill สามารถใช้ $TENOR_API_KEY ได้โดยตรง สำหรับ env vars ที่ไม่ใช่ของ Skill ให้ใช้ config option terminal.env_passthrough ดูรายละเอียดได้ที่ Environment Variable Passthrough
Skill Config Settings
Skills ยังสามารถประกาศ config settings ที่ไม่ใช่ secret (เช่น paths, preferences) ซึ่งถูกเก็บไว้ใน config.yaml:
metadata:
hermes:
config:
- key: myplugin.path
description: Path to the plugin data directory
default: "~/myplugin-data"
prompt: Plugin data directory pathSettings จะถูกเก็บไว้ภายใต้ skills.config ใน config.yaml ของคุณ hermes config migrate จะแจ้งให้ทราบถึง settings ที่ยังไม่ได้ตั้งค่า และ hermes config show จะแสดงค่าเหล่านั้น เมื่อ Skill โหลด ค่า config ที่ถูก resolve จะถูกฉีดเข้าไปใน context เพื่อให้ agent ทราบค่าที่ตั้งค่าไว้โดยอัตโนมัติ
ดูรายละเอียดได้ที่ Skill Settings และ Creating Skills - Config Settings
Skill Directory Structure
~/.hermes/skills/ # Single source of truth
├── mlops/ # Category directory
│ ├── axolotl/
│ │ ├── SKILL.md # Main instructions (required)
│ │ ├── references/ # Additional docs
│ │ ├── templates/ # Output formats
│ │ ├── scripts/ # Helper scripts callable from the skill
│ │ └── assets/ # Supplementary files
│ └── vllm/
│ └── SKILL.md
├── devops/
│ └── deploy-k8s/ # Agent-created skill
│ ├── SKILL.md
│ └── references/
├── .hub/ # Skills Hub state
│ ├── lock.json
│ ├── quarantine/
│ └── audit.log
└── .bundled_manifest # Tracks seeded bundled skillsExternal Skill Directories
หากคุณดูแล Skills นอกเหนือจาก Hermes - ตัวอย่างเช่น ไดเรกทอรี ~/.agents/skills/ ที่ใช้ร่วมกันโดยเครื่องมือ AI หลายตัว - คุณสามารถบอกให้ Hermes สแกนไดเรกทอรีเหล่านั้นได้ด้วย
เพิ่ม external_dirs ภายใต้ส่วน skills ใน ~/.hermes/config.yaml:
skills:
external_dirs:
- ~/.agents/skills
- /home/shared/team-skills
- ${SKILLS_REPO}/skillsPaths รองรับการขยาย ~ และการแทนที่ environment variable ${VAR}
How it works
- Read-only: External dirs ถูกสแกนเพื่อค้นหา Skill เท่านั้น เมื่อ agent สร้างหรือแก้ไข Skill มันจะเขียนไปยัง
~/.hermes/skills/เสมอ - Local precedence: หากชื่อ Skill เดียวกันมีอยู่ในทั้ง local dir และ external dir เวอร์ชัน local จะมีลำดับความสำคัญกว่า
- Full integration: External skills จะปรากฏใน system prompt index,
skills_list,skill_view, และเป็น slash commands ในรูปแบบ/skill-name- ไม่มีอะไรแตกต่างจาก local skills - Non-existent paths are silently skipped: หากไดเรกทอรีที่กำหนดค่าไม่มีอยู่ Hermes จะเพิกเฉยโดยไม่มีข้อผิดพลาด มีประโยชน์สำหรับไดเรกทอรีที่แชร์แบบทางเลือกซึ่งอาจไม่มีอยู่ในทุกเครื่อง
Example
~/.hermes/skills/ # Local (primary, read-write)
├── devops/deploy-k8s/
│ └── SKILL.md
└── mlops/axolotl/
└── SKILL.md
~/.agents/skills/ # External (read-only, shared)
├── my-custom-workflow/
│ └── SKILL.md
└── team-conventions/
└── SKILL.mdSkills ทั้งสี่ตัวจะปรากฏใน skill index ของคุณ หากคุณสร้าง Skill ใหม่ชื่อ my-custom-workflow ในเครื่อง local มันจะบดบังเวอร์ชันภายนอก (shadows)
Agent-Managed Skills (skill_manage tool)
agent สามารถสร้าง อัปเดต และลบ Skills ของตัวเองผ่าน tool skill_manage นี่คือ procedural memory ของ agent - เมื่อมันค้นพบ workflow ที่ไม่ธรรมดา มันจะบันทึกแนวทางนั้นเป็น Skill เพื่อนำกลับมาใช้ใหม่ในอนาคต
When the Agent Creates Skills
- หลังจากทำงานที่ซับซ้อนเสร็จสมบูรณ์ (5+ tool calls)
- เมื่อมันเจอข้อผิดพลาดหรือทางตันและค้นพบเส้นทางที่ใช้งานได้
- เมื่อผู้ใช้แก้ไขแนวทางของมัน
- เมื่อมันค้นพบ workflow ที่ไม่ธรรมดา
Actions
| Action | Use for | Key params |
|---|---|---|
create | สร้าง Skill ใหม่ตั้งแต่ต้น | name, content (full SKILL.md), optional category |
patch | แก้ไขแบบเจาะจง (แนะนำ) | name, old_string, new_string |
edit | เขียนใหม่โครงสร้างหลัก (Major structural rewrites) | name, content (full SKILL.md replacement) |
delete | ลบ Skill ทั้งหมด | name |
write_file | เพิ่ม/อัปเดตไฟล์สนับสนุน | name, file_path, file_content |
remove_file | ลบไฟล์สนับสนุน | name, file_path |
:::tip
การกระทำ patch เป็นที่แนะนำสำหรับการอัปเดต - มันใช้โทเคนอย่างมีประสิทธิภาพกว่า edit เพราะมีเพียงข้อความที่เปลี่ยนแปลงเท่านั้นที่ปรากฏใน tool call
:::
Skills Hub
เรียกดู ค้นหา ติดตั้ง และจัดการ Skills จาก online registries, skills.sh, endpoint ของ Skill ที่เป็นที่รู้จักโดยตรง, และ official optional skills
Common commands
hermes skills browse # Browse all hub skills (official first)
hermes skills browse --source official # Browse only official optional skills
hermes skills search kubernetes # Search all sources
hermes skills search react --source skills-sh # Search the skills.sh directory
hermes skills search https://mintlify.com/docs --source well-known
hermes skills inspect openai/skills/k8s # Preview before installing
hermes skills install openai/skills/k8s # Install with security scan
hermes skills install official/security/1password
hermes skills install skills-sh/vercel-labs/json-render/json-render-react --force
hermes skills install well-known:https://mintlify.com/docs/.well-known/skills/mintlify
hermes skills list --source hub # List hub-installed skills
hermes skills check # Check installed hub skills for upstream updates
hermes skills update # Reinstall hub skills with upstream changes when needed
hermes skills audit # Re-scan all hub skills for security
hermes skills uninstall k8s # Remove a hub skill
hermes skills reset google-workspace # Un-stick a bundled skill from "user-modified" (see below)
hermes skills reset google-workspace --restore # Also restore the bundled version, deleting your local edits
hermes skills publish skills/my-skill --to github --repo owner/repo
hermes skills snapshot export setup.json # Export skill config
hermes skills tap add myorg/skills-repo # Add a custom GitHub sourceSupported hub sources
| Source | Example | Notes |
|---|---|---|
official | official/security/1password | Optional skills ที่มาพร้อมกับ Hermes |
skills-sh | skills-sh/vercel-labs/agent-skills/vercel-react-best-practices | ค้นหาได้ผ่าน hermes skills search <query> --source skills-sh. Hermes จะ resolve skills แบบ alias เมื่อ slug ของ skills.sh แตกต่างจากโฟลเดอร์ repo |
well-known | well-known:https://mintlify.com/docs/.well-known/skills/mintlify | Skills ที่ให้บริการโดยตรงจาก /.well-known/skills/index.json บนเว็บไซต์ ไม่ใช่ hub ส่วนกลางเดียว - เป็น convention การค้นหาบนเว็บ |
github | openai/skills/k8s | การติดตั้ง repo/path ของ GitHub โดยตรง และ custom taps |
clawhub, lobehub, claude-marketplace | Source-specific identifiers | การรวมระบบของชุมชนหรือ marketplace |
Integrated hubs and registries
ปัจจุบัน Hermes ทำงานร่วมกับระบบนิเวศ Skills และแหล่งค้นหาเหล่านี้:
1. Official optional skills (official)
เหล่านี้ถูกดูแลรักษาใน repository ของ Hermes เองและติดตั้งด้วยความเชื่อถือในตัว (builtin trust)
- Catalog: Official Optional Skills Catalog
- Source in repo:
optional-skills/ - Example:
hermes skills browse --source official
hermes skills install official/security/1password2. skills.sh (skills-sh)
นี่คือ directory Skills สาธารณะของ Vercel Hermes สามารถค้นหา ตรวจสอบหน้า detail ของ Skill, resolve alias-style slugs, และติดตั้งจาก source repo พื้นฐานได้
- Directory: skills.sh
- CLI/tooling repo: vercel-labs/skills
- Official Vercel skills repo: vercel-labs/agent-skills
- Example:
hermes skills search react --source skills-sh
hermes skills inspect skills-sh/vercel-labs/json-render/json-render-react
hermes skills install skills-sh/vercel-labs/json-render/json-render-react --force3. Well-known skill endpoints (well-known)
นี่คือการค้นหาตาม URL จากเว็บไซต์ที่เผยแพร่ /.well-known/skills/index.json มันไม่ใช่ hub ส่วนกลางเดียว - แต่มันเป็น convention การค้นหาบนเว็บ
- Example live endpoint: Mintlify docs skills index
- Reference server implementation: vercel-labs/skills-handler
- Example:
hermes skills search https://mintlify.com/docs --source well-known
hermes skills inspect well-known:https://mintlify.com/docs/.well-known/skills/mintlify
hermes skills install well-known:https://mintlify.com/docs/.well-known/skills/mintlify4. Direct GitHub skills (github)
Hermes สามารถติดตั้งโดยตรงจาก GitHub repositories และ GitHub-based taps สิ่งนี้มีประโยชน์เมื่อคุณทราบ repo/path อยู่แล้ว หรือต้องการเพิ่ม custom source repo ของคุณเอง
Default taps (สามารถเรียกดูได้โดยไม่ต้องตั้งค่าใดๆ):
hermes skills install openai/skills/k8s
hermes skills tap add myorg/skills-repo5. ClawHub (clawhub)
ตลาด Skills ของบุคคลที่สามที่รวมเป็น community source
- Site: clawhub.ai
- Hermes source id:
clawhub
6. Claude marketplace-style repos (claude-marketplace)
Hermes รองรับ marketplace repos ที่เผยแพร่ manifest ของ plugin/marketplace ที่เข้ากันได้กับ Claude
Known integrated sources ได้แก่:
Hermes source id: claude-marketplace
7. LobeHub (lobehub)
Hermes สามารถค้นหาและแปลง agent entries จาก catalog สาธารณะของ LobeHub ให้เป็น Hermes skills ที่ติดตั้งได้
- Site: LobeHub
- Public agents index: chat-agents.lobehub.com
- Backing repo: lobehub/lobe-chat-agents
- Hermes source id:
lobehub
Security scanning and --force
Skills ที่ติดตั้งผ่าน Hub ทั้งหมดจะผ่าน security scanner ที่ตรวจสอบการรั่วไหลของข้อมูล (data exfiltration), prompt injection, destructive commands, supply-chain signals, และภัยคุกคามอื่นๆ
hermes skills inspect ... ตอนนี้ยังแสดง metadata ของ upstream เมื่อมีให้:
- repo URL
- skills.sh detail page URL
- install command
- weekly installs
- upstream security audit statuses
- well-known index/endpoint URLs
ใช้ --force เมื่อคุณได้ตรวจสอบ third-party skill แล้ว และต้องการยกเลิกการบล็อก policy ที่ไม่เป็นอันตราย:
hermes skills install skills-sh/anthropics/skills/pdf --forceพฤติกรรมที่สำคัญ:
--forceสามารถยกเลิก policy blocks สำหรับการค้นพบแบบ caution/warn-style ได้--forceไม่ สามารถยกเลิกผลการสแกนแบบdangerousได้- Official optional skills (
official/...) ถือเป็น builtin trust และจะไม่แสดง third-party warning panel
Trust levels
| Level | Source | Policy |
|---|---|---|
builtin | มาพร้อมกับ Hermes | เชื่อถือได้เสมอ |
official | optional-skills/ ใน repo | เชื่อถือได้ในตัว, ไม่มี warning ของ third-party |
trusted | Trusted registries/repos เช่น openai/skills, anthropics/skills | นโยบายที่ผ่อนปรนกว่าแหล่งชุมชน |
community | อื่นๆ ทั้งหมด (skills.sh, well-known endpoints, custom GitHub repos, most marketplaces) | การค้นพบที่ไม่เป็นอันตรายสามารถถูกยกเลิกด้วย --force; ผลการตัดสินแบบ dangerous ยังคงถูกบล็อก |
Update lifecycle
Hub ติดตาม provenance เพียงพอแล้วเพื่อตรวจสอบสำเนา upstream ของ Skills ที่ติดตั้ง:
hermes skills check # รายงานว่า Skills hub ที่ติดตั้งตัวใดมีการเปลี่ยนแปลง upstream
hermes skills update # ติดตั้งใหม่เฉพาะ Skills ที่มีการอัปเดต
hermes skills update react # อัปเดต Skills hub ที่ติดตั้งเฉพาะตัวสิ่งนี้ใช้ source identifier ที่จัดเก็บไว้บวกกับค่า hash ของ bundle upstream ปัจจุบันเพื่อตรวจจับการเปลี่ยนแปลง (drift)
:::tip GitHub rate limits
การดำเนินการ Skills hub ใช้ GitHub API ซึ่งมี rate limit ที่ 60 requests/hour สำหรับผู้ใช้ที่ไม่ได้ authenticate หากคุณเห็นข้อผิดพลาด rate-limit ระหว่างการติดตั้งหรือค้นหา ให้ตั้งค่า GITHUB_TOKEN ในไฟล์ .env ของคุณเพื่อเพิ่ม limit เป็น 5,000 requests/hour ข้อความผิดพลาดจะรวมคำแนะนำที่สามารถดำเนินการได้เมื่อเกิดเหตุการณ์นี้
:::
Bundled skill updates (hermes skills reset)
Hermes มาพร้อมกับชุด Skills ที่ถูก bundled ใน skills/ ภายใน repo เมื่อติดตั้งและทุกครั้งที่รัน hermes update จะมีการ sync pass คัดลอกสิ่งเหล่านั้นไปยัง ~/.hermes/skills/ และบันทึก manifest ที่ ~/.hermes/skills/.bundled_manifest โดยแมปชื่อ Skill แต่ละตัวกับ content hash ณ เวลาที่ sync (the origin hash)
ในการ sync แต่ละครั้ง Hermes จะคำนวณ hash ของสำเนา local ของคุณใหม่และเปรียบเทียบกับ origin hash:
- Unchanged → ปลอดภัยที่จะดึงการเปลี่ยนแปลง upstream, คัดลอกเวอร์ชัน bundled ใหม่เข้าไป, บันทึก origin hash ใหม่
- Changed → ถือเป็น user-modified และจะถูกข้ามไปตลอดกาล ดังนั้นการแก้ไขของคุณจะไม่ถูกเขียนทับ
การป้องกันนี้ดี แต่มีจุดที่ต้องระวังคือ หากคุณแก้ไข bundled skill และต่อมาต้องการยกเลิกการเปลี่ยนแปลงของคุณและกลับไปใช้เวอร์ชัน bundled โดยการคัดลอก-วางจาก ~/.hermes/hermes-agent/skills/ manifest ยังคงเก็บ origin hash เก่า จากเวลาที่ sync สำเร็จครั้งล่าสุด เนื้อหาที่คุณคัดลอก-วางใหม่ (current bundled hash) จะไม่ตรงกับ origin hash ที่ล้าสมัยนั้น ดังนั้น sync จึงยังคงแจ้งว่าเป็น user-modified
hermes skills reset คือทางออก:
# ปลอดภัย: ล้างรายการ manifest สำหรับ Skill นี้ สำเนาปัจจุบันของคุณยังคงอยู่
# แต่การ sync ครั้งต่อไปจะตั้งค่า baseline ใหม่โดยอิงจากมัน เพื่อให้การอัปเดตในอนาคตทำงานได้ตามปกติ
hermes skills reset google-workspace
# กู้คืนเต็มรูปแบบ: ลบสำเนา local ของคุณด้วย และคัดลอกเวอร์ชัน bundled ปัจจุบัน
# ใช้สิ่งนี้เมื่อคุณต้องการให้ได้ Skill upstream ที่สมบูรณ์แบบกลับมา
hermes skills reset google-workspace --restore
# ไม่โต้ตอบ (เช่น ใน scripts หรือ TUI mode) - ข้ามการยืนยัน --restore
hermes skills reset google-workspace --restore --yesคำสั่งเดียวกันนี้ใช้ได้ใน chat ในรูปแบบ slash command:
/skills reset google-workspace
/skills reset google-workspace --restore:::note Profiles
แต่ละ profile มี .bundled_manifest ของตัวเองภายใต้ HERMES_HOME ของตัวเอง ดังนั้น hermes -p coder skills reset <name> จะส่งผลกระทบเฉพาะ profile นั้นเท่านั้น
:::
Slash commands (inside chat)
คำสั่งทั้งหมดนี้ใช้ได้กับ /skills:
/skills browse
/skills search react --source skills-sh
/skills search https://mintlify.com/docs --source well-known
/skills inspect skills-sh/vercel-labs/json-render/json-render-react
/skills install openai/skills/skill-creator --force
/skills check
/skills update
/skills reset google-workspace
/skills listOfficial optional skills ยังคงใช้ identifiers เช่น official/security/1password และ official/migration/openclaw-migration
📄 user-guide/features/skins.md
sidebar_position: 10 title: "Skins & Themes" description: "Customize the Hermes CLI with built-in and user-defined skins"
Skins & Themes
Skins ควบคุม การนำเสนอทางภาพ ของ Hermes CLI: สีของแบนเนอร์, หน้าและคำกริยาของ spinner, ป้ายกำกับ response-box, ข้อความ branding, และ tool activity prefix
สไตล์การสนทนา (Conversational style) และสไตล์ภาพ (Visual style) เป็นแนวคิดที่แยกจากกัน:
- Personality เปลี่ยนโทนและถ้อยคำของ agent
- Skin เปลี่ยนรูปลักษณ์ของ CLI
Change skins
/skin # show the current skin and list available skins
/skin ares # switch to a built-in skin
/skin mytheme # switch to a custom skin from ~/.hermes/skins/mytheme.yamlหรือตั้งค่า skin เริ่มต้นใน ~/.hermes/config.yaml:
display:
skin: defaultBuilt-in skins
| Skin | Description | Agent branding | Visual character |
|---|---|---|---|
default | Classic Hermes - gold and kawaii | Hermes Agent | ขอบสีทองอบอุ่น, ข้อความสี cornsilk, หน้า kawaii ใน spinner. แบนเนอร์ caduceus ที่คุ้นเคย. ดูสะอาดตาและน่าใช้งาน. |
ares | ธีมเทพสงคราม - crimson และ bronze | Ares Agent | ขอบสี crimson เข้มพร้อมเน้นสี bronze. คำกริยา spinner ที่ดูดุดัน ("forging", "marching", "tempering steel"). แบนเนอร์ ASCII art รูปดาบ-โล่แบบกำหนดเอง. |
mono | โทนสีขาวดำ (Monochrome) - grayscale สะอาดตา | Hermes Agent | สีเทาทั้งหมด - ไม่มีสี. ขอบเป็น #555555, ข้อความเป็น #c9d1d9. เหมาะสำหรับ terminal setup แบบมินิมอล หรือการบันทึกหน้าจอ. |
slate | สีน้ำเงินเย็น - เน้นสำหรับนักพัฒนา | Hermes Agent | ขอบสีน้ำเงินราชวงศ์ (#4169e1), ข้อความสีน้ำเงินอ่อน. ดูสงบและเป็นมืออาชีพ. ไม่มี spinner แบบกำหนดเอง - ใช้หน้า default. |
daylight | ธีมสว่างสำหรับ terminal สว่างด้วยข้อความสีเข้มและเน้นสีน้ำเงินเย็น | Hermes Agent | ออกแบบมาสำหรับ terminal สีขาวหรือสีสว่าง. ข้อความ slate สีเข้มพร้อมขอบสีน้ำเงิน, พื้นผิวสถานะสีอ่อน, และเมนู completion ที่ยังอ่านง่ายในโปรไฟล์ terminal สว่าง. |
warm-lightmode | ข้อความสีน้ำตาล/ทองอบอุ่นสำหรับพื้นหลัง terminal สีสว่าง | Hermes Agent | โทนสี parchment อบอุ่นสำหรับ terminal สว่าง. ข้อความสีน้ำตาลเข้มพร้อมเน้นสี saddle-brown, พื้นผิวสถานะสีครีม. ทางเลือกที่ดูเป็นธรรมชาติแทนธีม daylight ที่เย็นกว่า. |
poseidon | ธีมเทพแห่งมหาสมุทร - deep blue และ seafoam | Poseidon Agent | การไล่ระดับสีจากน้ำเงินเข้มถึง seafoam. spinner ธีมมหาสมุทร ("charting currents", "sounding the depth"). แบนเนอร์ ASCII art รูปตรีศูล. |
sisyphus | ธีมซิซิฟัส - grayscale แบบเคร่งขรึมพร้อมความคงทน | Sisyphus Agent | สีเทาอ่อนพร้อมความเปรียบต่างที่ชัดเจน. spinner ธีมก้อนหิน ("pushing uphill", "resetting the boulder", "enduring the loop"). แบนเนอร์ ASCII art รูปก้อนหินและเนินเขา. |
charizard | ธีมภูเขาไฟ - burnt orange และ ember | Charizard Agent | การไล่ระดับสีจาก burnt orange อบอุ่นถึง ember. spinner ธีมไฟ ("banking into the draft", "measuring burn"). แบนเนอร์ ASCII art รูปเงาดราก้อน. |
Complete list of configurable keys
Colors (colors:)
ควบคุมค่าสีทั้งหมดทั่วทั้ง CLI. ค่าที่ใช้คือ hex color strings.
| Key | Description | Default (default skin) |
|---|---|---|
banner_border | ขอบแผงรอบแบนเนอร์เริ่มต้น | #CD7F32 (bronze) |
banner_title | สีข้อความชื่อเรื่องในแบนเนอร์ | #FFD700 (gold) |
banner_accent | ส่วนหัวของส่วนในแบนเนอร์ (Available Tools, etc.) | #FFBF00 (amber) |
banner_dim | ข้อความที่ลดความสำคัญในแบนเนอร์ (ตัวคั่น, ป้ายกำกับรอง) | #B8860B (dark goldenrod) |
banner_text | ข้อความเนื้อหาในแบนเนอร์ (ชื่อเครื่องมือ, ชื่อทักษะ) | #FFF8DC (cornsilk) |
ui_accent | สีเน้น UI ทั่วไป (ไฮไลต์, องค์ประกอบที่ใช้งานอยู่) | #FFBF00 |
ui_label | ป้ายกำกับและแท็ก UI | #4dd0e1 (teal) |
ui_ok | ตัวบ่งชี้ความสำเร็จ (เครื่องหมายถูก, การเสร็จสมบูรณ์) | #4caf50 (green) |
ui_error | ตัวบ่งชี้ข้อผิดพลาด (ความล้มเหลว, ถูกบล็อก) | #ef5350 (red) |
ui_warn | ตัวบ่งชี้คำเตือน (ข้อควรระวัง, prompt การอนุมัติ) | #ffa726 (orange) |
prompt | สีข้อความ prompt แบบโต้ตอบ | #FFF8DC |
input_rule | เส้นแนวนอนเหนือพื้นที่ input | #CD7F32 |
response_border | ขอบรอบกล่อง response ของ agent (ANSI escape) | #FFD700 |
session_label | สีป้ายกำกับ session | #DAA520 |
session_border | สีขอบ dim ของ Session ID | #8B8682 |
status_bar_bg | พื้นหลังสำหรับสถานะ TUI / แถบการใช้งาน | #1a1a2e |
voice_status_bg | พื้นหลังสำหรับป้ายสถานะโหมดเสียง | #1a1a2e |
completion_menu_bg | พื้นหลังสำหรับรายการเมนู completion | #1a1a2e |
completion_menu_current_bg | พื้นหลังสำหรับแถว completion ที่ใช้งานอยู่ | #333355 |
completion_menu_meta_bg | พื้นหลังสำหรับคอลัมน์ meta ของ completion | #1a1a2e |
completion_menu_meta_current_bg | พื้นหลังสำหรับคอลัมน์ meta ของ completion ที่ใช้งานอยู่ | #333355 |
Spinner (spinner:)
ควบคุม spinner แบบเคลื่อนไหวที่แสดงขณะรอการตอบกลับ API
| Key | Type | Description | Example |
|---|---|---|---|
waiting_faces | list of strings | หน้าที่หมุนขณะรอการตอบกลับ API | ["(⚔)", "(⛨)", "(▲)"] |
thinking_faces | list of strings | หน้าที่หมุนระหว่างการให้เหตุผลของ model | ["(⚔)", "(⌁)", "(<>)"] |
thinking_verbs | list of strings | คำกริยาที่แสดงในข้อความ spinner | ["forging", "plotting", "hammering plans"] |
wings | list of [left, right] pairs | วงเล็บตกแต่งรอบ spinner | [["⟪⚔", "⚔⟫"], ["⟪▲", "▲⟫"]] |
เมื่อค่า spinner ว่างเปล่า (เช่น ใน default และ mono) จะใช้ค่า default ที่กำหนดไว้ใน display.py
Branding (branding:)
ข้อความ string ที่ใช้ทั่วทั้ง interface ของ CLI
| Key | Description | Default |
|---|---|---|
agent_name | ชื่อที่แสดงในแบนเนอร์ title และ status display | Hermes Agent |
welcome | ข้อความต้อนรับที่แสดงเมื่อเริ่ม CLI | Welcome to Hermes Agent! Type your message or /help for commands. |
goodbye | ข้อความที่แสดงเมื่อออกจากระบบ | Goodbye! ⚕ |
response_label | ป้ายกำกับบนส่วนหัวของ response box | ⚕ Hermes |
prompt_symbol | สัญลักษณ์ก่อน prompt input ของผู้ใช้ | ❯ |
help_header | ข้อความส่วนหัวสำหรับ output ของคำสั่ง /help | (^_^)? Available Commands |
Other top-level keys
| Key | Type | Description | Default |
|---|---|---|---|
tool_prefix | string | อักขระที่นำหน้า tool output lines ใน CLI | ┊ |
tool_emojis | dict | การกำหนดค่า emoji สำหรับแต่ละ tool สำหรับ spinner และ progress ({tool_name: emoji}) | {} |
banner_logo | string | ASCII art logo แบบ rich-markup (แทนที่แบนเนอร์ HERMES_AGENT default) | "" |
banner_hero | string | Rich-markup hero art (แทนที่งานศิลปะ caduceus default) | "" |
Custom skins
สร้างไฟล์ YAML ภายใต้ ~/.hermes/skins/. สกินของผู้ใช้จะสืบทอดค่าที่ขาดหายไปจาก skin default ที่สร้างไว้ล่วงหน้า ดังนั้นคุณจึงจำเป็นต้องระบุเฉพาะ keys ที่ต้องการเปลี่ยนแปลงเท่านั้น
Full custom skin YAML template
# ~/.hermes/skins/mytheme.yaml
# Complete skin template - all keys shown. Delete any you don't need;
# missing values automatically inherit from the 'default' skin.
name: mytheme
description: My custom theme
colors:
banner_border: "#CD7F32"
banner_title: "#FFD700"
banner_accent: "#FFBF00"
banner_dim: "#B8860B"
banner_text: "#FFF8DC"
ui_accent: "#FFBF00"
ui_label: "#4dd0e1"
ui_ok: "#4caf50"
ui_error: "#ef5350"
ui_warn: "#ffa726"
prompt: "#FFF8DC"
input_rule: "#CD7F32"
response_border: "#FFD700"
session_label: "#DAA520"
session_border: "#8B8682"
status_bar_bg: "#1a1a2e"
voice_status_bg: "#1a1a2e"
completion_menu_bg: "#1a1a2e"
completion_menu_current_bg: "#333355"
completion_menu_meta_bg: "#1a1a2e"
completion_menu_meta_current_bg: "#333355"
spinner:
waiting_faces:
- "(⚔)"
- "(⛨)"
- "(▲)"
thinking_faces:
- "(⚔)"
- "(⌁)"
- "(<>)"
thinking_verbs:
- "processing"
- "analyzing"
- "computing"
- "evaluating"
wings:
- ["⟪⚡", "⚡⟫"]
- ["⟪●", "●⟫"]
branding:
agent_name: "My Agent"
welcome: "Welcome to My Agent! Type your message or /help for commands."
goodbye: "See you later! ⚡"
response_label: " ⚡ My Agent "
prompt_symbol: "⚡ ❯ "
help_header: "(⚡) Available Commands"
tool_prefix: "┊"
# Per-tool emoji overrides (optional)
tool_emojis:
terminal: "⚔"
web_search: "🔮"
read_file: "📄"
# Custom ASCII art banners (optional, Rich markup supported)
# banner_logo: |
# [bold #FFD700] MY AGENT [/]
# banner_hero: |
# [#FFD700] Custom art here [/]Minimal custom skin example
เนื่องจากทุกอย่างสืบทอดจาก default สกินแบบมินิมอลจึงจำเป็นต้องเปลี่ยนเฉพาะสิ่งที่แตกต่างเท่านั้น:
name: cyberpunk
description: Neon terminal theme
colors:
banner_border: "#FF00FF"
banner_title: "#00FFFF"
banner_accent: "#FF1493"
spinner:
thinking_verbs: ["jacking in", "decrypting", "uploading"]
wings:
- ["⟨⚡", "⚡⟩"]
branding:
agent_name: "Cyber Agent"
response_label: " ⚡ Cyber "
tool_prefix: "▏"Hermes Mod - Visual Skin Editor
Hermes Mod คือ web UI ที่สร้างโดยชุมชนสำหรับการสร้างและจัดการ skins ด้วยภาพแทนการเขียน YAML ด้วยมือ คุณจะได้รับ editor แบบ point-and-click พร้อม live preview
สิ่งที่ทำได้:
- แสดงรายการ built-in และ custom skins ทั้งหมด
- เปิด skin ใดก็ได้ใน visual editor พร้อมด้วยฟิลด์ skin ของ Hermes ทั้งหมด (colors, spinner, branding, tool prefix, tool emojis)
- สร้างข้อความ art
banner_logoจาก text prompt - แปลงรูปภาพที่อัปโหลด (PNG, JPG, GIF, WEBP) เป็น ASCII art
banner_heroด้วยสไตล์การเรนเดอร์หลายแบบ (braille, ASCII ramp, blocks, dots) - บันทึกโดยตรงไปยัง
~/.hermes/skins/ - เปิดใช้งาน skin โดยการอัปเดต
~/.hermes/config.yaml - แสดง YAML ที่สร้างขึ้นและ live preview
Install
Option 1 - Pinokio (1-click):
ค้นหาได้ที่ pinokio.computer และติดตั้งด้วยการคลิกเพียงครั้งเดียว
Option 2 - npx (เร็วที่สุดจาก terminal):
npx -y hermes-modOption 3 - Manual:
git clone https://github.com/cocktailpeanut/hermes-mod.git
cd hermes-mod/app
npm install
npm startUsage
- เริ่มแอป (ผ่าน Pinokio หรือ terminal).
- เปิด Skin Studio.
- เลือก built-in หรือ custom skin ที่ต้องการแก้ไข.
- สร้าง logo จากข้อความและ/หรืออัปโหลดรูปภาพสำหรับ hero art. เลือกสไตล์การเรนเดอร์และความกว้าง.
- แก้ไข colors, spinner, branding, และฟิลด์อื่น ๆ.
- คลิก Save เพื่อเขียน skin YAML ไปยัง
~/.hermes/skins/. - คลิก Activate เพื่อตั้งค่าให้เป็น skin ปัจจุบัน (อัปเดต
display.skinในconfig.yaml).
Hermes Mod เคารพ environment variable HERMES_HOME ดังนั้นจึงใช้งานได้กับ profiles ด้วย
Operational notes
- Built-in skins โหลดจาก
hermes_cli/skin_engine.py. - Skins ที่ไม่รู้จักจะ fallback ไปที่
defaultโดยอัตโนมัติ. /skinจะอัปเดตธีม CLI ที่ใช้งานอยู่ทันทีสำหรับ session ปัจจุบัน.- User skins ใน
~/.hermes/skins/จะมีลำดับความสำคัญสูงกว่า built-in skins ที่มีชื่อเดียวกัน. - การเปลี่ยน skin ผ่าน
/skinจะมีผลเฉพาะ session นั้น ๆ เท่านั้น หากต้องการให้ skin เป็นค่า default ถาวร ให้ตั้งค่าในconfig.yaml. - ฟิลด์
banner_logoและbanner_heroรองรับ Rich console markup (เช่น[bold #FF0000]text[/]) สำหรับ ASCII art สี.
extent analysis
TL;DR
To resolve the issue, identify the root cause by checking the error message and the code, then apply the necessary fix, such as updating dependencies, modifying code, or adjusting configurations.
Guidance
- Check the error message: Look for any error messages or warnings that may indicate the cause of the issue.
- Review the code: Examine the code and configurations to identify any potential problems or inconsistencies.
- Update dependencies: Ensure that all dependencies are up-to-date, as outdated dependencies can cause issues.
- Modify code: Make any necessary changes to the code to fix the issue.
- Adjust configurations: Update configurations as needed to resolve the issue.
Example
No specific code example is provided as the issue description is not included.
Notes
Without the issue description, it's challenging to provide a specific solution. However, following the guidance above should help in identifying and resolving the issue.
Recommendation
Apply the necessary fix based on the root cause of the issue. If the issue is due to an outdated dependency, update the dependency. If the issue is due to a code problem, modify the code accordingly.
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
