hermes - 💡(How to fix) Fix [i18n] Thai Translation: Developer Guide Part a - acp-internals, adding-platform-adapters, adding-providers, adding-tools, agent-loop +1 more [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
tools/weather_tool.py
"""Weather Tool -- look up current weather for a location."""
import json import os import logging
logger = logging.getLogger(name)
--- Availability check ---
def check_weather_requirements() -> bool: """Return True if the tool's dependencies are available.""" return bool(os.getenv("WEATHER_API_KEY"))
--- Handler ---
def weather_tool(location: str, units: str = "metric") -> str: """Fetch weather for a location. Returns JSON string.""" api_key = os.getenv("WEATHER_API_KEY") if not api_key: return json.dumps({"error": "WEATHER_API_KEY not configured"}) try: # ... call weather API ... return json.dumps({"location": location, "temp": 22, "units": units}) except Exception as e: return json.dumps({"error": str(e)})
--- Schema ---
WEATHER_SCHEMA = { "name": "weather", "description": "Get current weather for a location.", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "City name or coordinates (e.g. 'London' or '51.5,-0.1')" }, "units": { "type": "string", "enum": ["metric", "imperial"], "description": "Temperature units (default: metric)", "default": "metric" } }, "required": ["location"] } }
--- Registration ---
from tools.registry import registry
registry.register( name="weather", toolset="weather", schema=WEATHER_SCHEMA, handler=lambda args, **kw: weather_tool( location=args.get("location", ""), units=args.get("units", "metric")), check_fn=check_weather_requirements, requires_env=["WEATHER_API_KEY"], )
Fix Action
Fix / Workaround
-
patch/write_file-> file diffs -
terminal-> shell command text -
read_file/search_files-> text previews -
large results -> truncated text blocks for UI safety
-
provider adapter ใน
agent/ -
branches ใน
run_agent.pyสำหรับการสร้าง request, dispatch, การดึง usage, การจัดการ interrupt, และการ normalize response -
adapter tests
-
dict
provider_labels -
list
providersในselect_provider_and_model() -
provider dispatch (
if selected_provider == ...) -
ตัวเลือก argument
--provider -
ตัวเลือก login/logout หาก provider รองรับ flow เหล่านั้น
-
ฟังก์ชัน
_model_flow_<provider>()หรือใช้ซ้ำ_model_flow_api_key_provider()หากเหมาะสม
Code Example
hermes acp / hermes-acp / python -m acp_adapter
-> acp_adapter.entry.main()
-> load ~/.hermes/.env
-> configure stderr logging
-> construct HermesACPAgent
-> acp.run_agent(agent)
---
asyncio.run_coroutine_threadsafe(...)
---
new_session(cwd)
-> create SessionState
-> create AIAgent(platform="acp", enabled_toolsets=["hermes-acp"])
-> bind task_id/session_id to cwd override
prompt(..., session_id)
-> extract text from ACP content blocks
-> reset cancel event
-> install callbacks + approval bridge
-> run AIAgent in ThreadPoolExecutor
-> update session history
-> emit final agent message chunk
---
User ↔ Messaging Platform ↔ Platform Adapter ↔ Gateway Runner ↔ AIAgent
---
class Platform(str, Enum):
# ... existing platforms ...
NEWPLAT = "newplat"
---
from gateway.config import Platform, PlatformConfig
from gateway.platforms.base import (
BasePlatformAdapter, MessageEvent, MessageType, SendResult,
)
def check_newplat_requirements() -> bool:
"""Return True if dependencies are available."""
return SOME_SDK_AVAILABLE
class NewPlatAdapter(BasePlatformAdapter):
def __init__(self, config: PlatformConfig):
super().__init__(config, Platform.NEWPLAT)
# Read config from config.extra dict
extra = config.extra or {}
self._api_key = extra.get("api_key") or os.getenv("NEWPLAT_API_KEY", "")
async def connect(self) -> bool:
# Set up connection, start polling/webhook
self._mark_connected()
return True
async def disconnect(self) -> None:
self._running = False
self._mark_disconnected()
async def send(self, chat_id, content, reply_to=None, metadata=None):
# Send message via platform API
return SendResult(success=True, message_id="...")
async def get_chat_info(self, chat_id):
return {"name": chat_id, "type": "dm"}
---
source = self.build_source(
chat_id=chat_id,
chat_name=name,
chat_type="dm", # or "group"
user_id=user_id,
user_name=user_name,
)
event = MessageEvent(
text=content,
message_type=MessageType.TEXT,
source=source,
message_id=msg_id,
)
await self.handle_message(event)
---
_PLATFORM_HINTS = {
# ...
"newplat": (
"You are chatting via NewPlat. It supports markdown formatting "
"but has a 4000-character message limit."
),
}
---
# ค้นหาไฟล์ .py ทุกไฟล์ที่กล่าวถึงแพลตฟอร์มอ้างอิง
search_files "bluebubbles" output_mode="files_only" file_glob="*.py"
# ค้นหาไฟล์ .py ทุกไฟล์ที่กล่าวถึงแพลตฟอร์มใหม่
search_files "newplat" output_mode="files_only" file_glob="*.py"
# ไฟล์ใดๆ ในชุดแรกแต่ไม่อยู่ในชุดที่สองคือช่องว่างที่อาจเกิดขึ้น
---
async def connect(self):
self._poll_task = asyncio.create_task(self._poll_loop())
self._mark_connected()
async def _poll_loop(self):
while self._running:
messages = await self._fetch_updates()
for msg in messages:
await self.handle_message(self._build_event(msg))
---
async def connect(self):
self._app = web.Application()
self._app.router.add_post("/callback", self._handle_callback)
# ... start aiohttp server
self._mark_connected()
async def _handle_callback(self, request):
event = self._build_event(await request.text())
await self._message_queue.put(event)
return web.Response(text="success") # Acknowledge immediately
---
from gateway.status import acquire_scoped_lock, release_scoped_lock
async def connect(self):
if not acquire_scoped_lock("newplat", self._token):
logger.error("Token already in use by another profile")
return False
# ... connect
async def disconnect(self):
release_scoped_lock("newplat", self._token)
---
anthropic:claude-sonnet-4-6
kimi:model-name
---
{
"provider": "your-provider",
"api_mode": "chat_completions", # หรือ native mode ของคุณ
"base_url": "https://...",
"api_key": "...",
"source": "env|portal|auth-store|explicit",
"requested_provider": requested_provider,
}
---
source venv/bin/activate
python -m pytest tests/test_runtime_provider_resolution.py tests/test_cli_provider_resolution.py tests/test_cli_model_command.py tests/test_setup_model_selection.py -n0 -q
---
source venv/bin/activate
python -m pytest tests/ -n0 -q
---
source venv/bin/activate
python -m hermes_cli.main chat -q "Say hello" --provider your-provider --model your-model
---
source venv/bin/activate
python -m hermes_cli.main model
python -m hermes_cli.main setup
---
# tools/weather_tool.py
"""Weather Tool -- look up current weather for a location."""
import json
import os
import logging
logger = logging.getLogger(__name__)
# --- Availability check ---
def check_weather_requirements() -> bool:
"""Return True if the tool's dependencies are available."""
return bool(os.getenv("WEATHER_API_KEY"))
# --- Handler ---
def weather_tool(location: str, units: str = "metric") -> str:
"""Fetch weather for a location. Returns JSON string."""
api_key = os.getenv("WEATHER_API_KEY")
if not api_key:
return json.dumps({"error": "WEATHER_API_KEY not configured"})
try:
# ... call weather API ...
return json.dumps({"location": location, "temp": 22, "units": units})
except Exception as e:
return json.dumps({"error": str(e)})
# --- Schema ---
WEATHER_SCHEMA = {
"name": "weather",
"description": "Get current weather for a location.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or coordinates (e.g. 'London' or '51.5,-0.1')"
},
"units": {
"type": "string",
"enum": ["metric", "imperial"],
"description": "Temperature units (default: metric)",
"default": "metric"
}
},
"required": ["location"]
}
}
# --- Registration ---
from tools.registry import registry
registry.register(
name="weather",
toolset="weather",
schema=WEATHER_SCHEMA,
handler=lambda args, **kw: weather_tool(
location=args.get("location", ""),
units=args.get("units", "metric")),
check_fn=check_weather_requirements,
requires_env=["WEATHER_API_KEY"],
)
---
# If it should be available on all platforms (CLI + messaging):
_HERMES_CORE_TOOLS = [
...
"weather", # <-- add here
]
# Or create a new standalone toolset:
"weather": {
"description": "Weather lookup tools",
"tools": ["weather"],
"includes": []
},
---
async def weather_tool_async(location: str) -> str:
async with aiohttp.ClientSession() as session:
...
return json.dumps(result)
registry.register(
name="weather",
toolset="weather",
schema=WEATHER_SCHEMA,
handler=lambda args, **kw: weather_tool_async(args.get("location", "")),
check_fn=check_weather_requirements,
is_async=True, # registry calls _run_async() automatically
)
---
def _handle_weather(args, **kw):
task_id = kw.get("task_id")
return weather_tool(args.get("location", ""), task_id=task_id)
registry.register(
name="weather",
...
handler=_handle_weather,
)
---
OPTIONAL_ENV_VARS = {
...
"WEATHER_API_KEY": {
"description": "Weather API key for weather lookup",
"prompt": "Weather API key",
"url": "https://weatherapi.com/",
"tools": ["weather"],
"password": True,
},
}
---
# Simple interface - returns final response string
response = agent.chat("Fix the bug in main.py")
# Full interface - returns dict with messages, metadata, usage stats
result = agent.run_conversation(
user_message="Fix the bug in main.py",
system_message=None, # auto-built if omitted
conversation_history=None, # auto-loaded from session if omitted
task_id="task_abc123"
)
---
run_conversation()
1. Generate task_id if not provided
2. Append user message to conversation history
3. Build or reuse cached system prompt (prompt_builder.py)
4. Check if preflight compression is needed (>50% context)
5. Build API messages from conversation history
- chat_completions: OpenAI format as-is
- codex_responses: convert to Responses API input items
- anthropic_messages: convert via anthropic_adapter.py
6. Inject ephemeral prompt layers (budget warnings, context pressure)
7. Apply prompt caching markers if on Anthropic
8. Make interruptible API call (_interruptible_api_call)
9. Parse response:
- If tool_calls: execute them, append results, loop back to step 5
- If text response: persist session, flush memory if needed, return
---
{"role": "system", "content": "..."}
{"role": "user", "content": "..."}
{"role": "assistant", "content": "...", "tool_calls": [...]}
{"role": "tool", "tool_call_id": "...", "content": "..."}
---
┌────────────────────────────────────────────────────┐
│ Main thread API thread │
│ │
│ wait on: HTTP POST │
│ - response ready ───▶ to provider │
│ - interrupt event │
│ - timeout │
└────────────────────────────────────────────────────┘
---
for each tool_call in response.tool_calls:
1. Resolve handler from tools/registry.py
2. Fire pre_tool_call plugin hook
3. Check if dangerous command (tools/approval.py)
- If dangerous: invoke approval_callback, wait for user
4. Execute handler with args + task_id
5. Fire post_tool_call plugin hook
6. Append {"role": "tool", "content": result} to history
---
┌─────────────────────────────────────────────────────────────────────┐
│ Entry Points │
│ │
│ CLI (cli.py) Gateway (gateway/run.py) ACP (acp_adapter/) │
│ Batch Runner API Server Python Library │
└──────────┬──────────────┬───────────────────────┬───────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────────────────────────────────────────────────────────┐
│ AIAgent (run_agent.py) │
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Prompt │ │ Provider │ │ Tool │ │
│ │ Builder │ │ Resolution │ │ Dispatch │ │
│ │ (prompt_ │ │ (runtime_ │ │ (model_ │ │
│ │ builder.py) │ │ provider.py)│ │ tools.py) │ │
│ └──────┬───────┘ └──────┬───────┘ └──────┬───────┘ │
│ │ │ │ │
│ ┌──────┴───────┐ ┌──────┴───────┐ ┌──────┴───────┐ │
│ │ Compression │ │ 3 API Modes │ │ Tool Registry│ │
│ │ & Caching │ │ chat_compl. │ │ (registry.py)│ │
│ │ │ │ codex_resp. │ │ 47 tools │ │
│ │ │ │ anthropic │ │ 19 toolsets │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
│ │
▼ ▼
┌───────────────────┐ ┌──────────────────────┐
│ Session Storage │ │ Tool Backends │
│ (SQLite + FTS5) │ │ Terminal (6 backends) │
│ hermes_state.py │ │ Browser (5 backends) │
│ gateway/session.py│ │ Web (4 backends) │
└───────────────────┘ │ MCP (dynamic) │
│ File, Vision, etc. │
└──────────────────────┘
---
hermes-agent/
├── run_agent.py # AIAgent — core conversation loop (~10,700 lines)
├── cli.py # HermesCLI — interactive terminal UI (~10,000 lines)
├── model_tools.py # Tool discovery, schema collection, dispatch
├── toolsets.py # Tool groupings and platform presets
├── hermes_state.py # SQLite session/state database with FTS5
├── hermes_constants.py # HERMES_HOME, profile-aware paths
├── batch_runner.py # Batch trajectory generation
│
├── agent/ # Agent internals
│ ├── prompt_builder.py # System prompt assembly
│ ├── context_engine.py # ContextEngine ABC (pluggable)
│ ├── context_compressor.py # Default engine — lossy summarization
│ ├── prompt_caching.py # Anthropic prompt caching
│ ├── auxiliary_client.py # Auxiliary LLM for side tasks (vision, summarization)
│ ├── model_metadata.py # Model context lengths, token estimation
│ ├── models_dev.py # models.dev registry integration
│ ├── anthropic_adapter.py # Anthropic Messages API format conversion
│ ├── display.py # KawaiiSpinner, tool preview formatting
│ ├── skill_commands.py # Skill slash commands
│ ├── memory_manager.py # Memory manager orchestration
│ ├── memory_provider.py # Memory provider ABC
│ └── trajectory.py # Trajectory saving helpers
│
├── hermes_cli/ # CLI subcommands and setup
│ ├── main.py # Entry point — all `hermes` subcommands (~6,000 lines)
│ ├── config.py # DEFAULT_CONFIG, OPTIONAL_ENV_VARS, migration
│ ├── commands.py # COMMAND_REGISTRY — central slash command definitions
│ ├── auth.py # PROVIDER_REGISTRY, credential resolution
│ ├── runtime_provider.py # Provider → api_mode + credentials
│ ├── models.py # Model catalog, provider model lists
│ ├── model_switch.py # /model command logic (CLI + gateway shared)
│ ├── setup.py # Interactive setup wizard (~3,100 lines)
│ ├── skin_engine.py # CLI theming engine
│ ├── skills_config.py # hermes skills — enable/disable per platform
│ ├── skills_hub.py # /skills slash command
│ ├── tools_config.py # hermes tools — enable/disable per platform
│ ├── plugins.py # PluginManager — discovery, loading, hooks
│ ├── callbacks.py # Terminal callbacks (clarify, sudo, approval)
│ └── gateway.py # hermes gateway start/stop
│
├── tools/ # Tool implementations (one file per tool)
│ ├── registry.py # Central tool registry
│ ├── approval.py # Dangerous command detection
│ ├── terminal_tool.py # Terminal orchestration
│ ├── process_registry.py # Background process management
│ ├── file_tools.py # read_file, write_file, patch, search_files
│ ├── web_tools.py # web_search, web_extract
│ ├── browser_tool.py # 10 browser automation tools
│ ├── code_execution_tool.py # execute_code sandbox
│ ├── delegate_tool.py # Subagent delegation
│ ├── mcp_tool.py # MCP client (~2,200 lines)
│ ├── credential_files.py # File-based credential passthrough
│ ├── env_passthrough.py # Env var passthrough for sandboxes
│ ├── ansi_strip.py # ANSI escape stripping
│ └── environments/ # Terminal backends (local, docker, ssh, modal, daytona, singularity)
│
├── gateway/ # Messaging platform gateway
│ ├── run.py # GatewayRunner — message dispatch (~9,000 lines)
│ ├── session.py # SessionStore — conversation persistence
│ ├── delivery.py # Outbound message delivery
│ ├── pairing.py # DM pairing authorization
│ ├── hooks.py # Hook discovery and lifecycle events
│ ├── mirror.py # Cross-session message mirroring
│ ├── status.py # Token locks, profile-scoped process tracking
│ ├── builtin_hooks/ # Always-registered hooks
│ └── platforms/ # 18 adapters: telegram, discord, slack, whatsapp,
│ # signal, matrix, mattermost, email, sms,
│ # dingtalk, feishu, wecom, wecom_callback, weixin,
│ # bluebubbles, qqbot, homeassistant, webhook, api_server
│
├── acp_adapter/ # ACP server (VS Code / Zed / JetBrains)
├── cron/ # Scheduler (jobs.py, scheduler.py)
├── plugins/memory/ # Memory provider plugins
├── plugins/context_engine/ # Context engine plugins
├── environments/ # RL training environments (Atropos)
├── skills/ # Bundled skills (always available)
├── optional-skills/ # Official optional skills (install explicitly)
├── website/ # Docusaurus documentation site
└── tests/ # Pytest suite (~3,000+ tests)
---
User input → HermesCLI.process_input()
→ AIAgent.run_conversation()
→ prompt_builder.build_system_prompt()
→ runtime_provider.resolve_runtime_provider()
→ API call (chat_completions / codex_responses / anthropic_messages)
→ tool_calls? → model_tools.handle_function_call() → loop
→ final response → display → save to SessionDB
---
Platform event → Adapter.on_message() → MessageEvent
→ GatewayRunner._handle_message()
→ authorize user
→ resolve session key
→ create AIAgent with session history
→ AIAgent.run_conversation()
→ deliver response back through adapter
---
Scheduler tick → load due jobs from jobs.json
→ create fresh AIAgent (no history)
→ inject attached skills as context
→ run job prompt
→ deliver response to target platform
→ update job state and next_run
---
tools/registry.py (no deps — imported by all tool files)
↑
tools/*.py (each calls registry.register() at import time)
↑
model_tools.py (imports tools/registry + triggers tool discovery)
↑
run_agent.py, cli.py, batch_runner.py, environments/RAW_BUFFERClick to expand / collapse
📄 developer-guide/acp-internals.md
sidebar_position: 2 title: "ACP Internals" description: "ACP adapter ทำงานอย่างไร: วงจรชีวิต (lifecycle), session, event bridge, การอนุมัติ (approvals), และการเรนเดอร์เครื่องมือ (tool rendering)"
ACP Internals
ACP adapter ห่อหุ้ม (wraps) AIAgent แบบ synchronous ของ Hermes ให้อยู่ใน stdio server แบบ async JSON-RPC
ไฟล์การใช้งานหลัก:
acp_adapter/entry.pyacp_adapter/server.pyacp_adapter/session.pyacp_adapter/events.pyacp_adapter/permissions.pyacp_adapter/tools.pyacp_adapter/auth.pyacp_registry/agent.json
Boot flow
hermes acp / hermes-acp / python -m acp_adapter
-> acp_adapter.entry.main()
-> load ~/.hermes/.env
-> configure stderr logging
-> construct HermesACPAgent
-> acp.run_agent(agent)Stdout ถูกสงวนไว้สำหรับการขนส่ง (transport) JSON-RPC ของ ACP ส่วน log ที่มนุษย์อ่านได้จะถูกส่งไปยัง stderr
ส่วนประกอบหลัก
HermesACPAgent
acp_adapter/server.py ทำหน้าที่ implement ACP agent protocol
ความรับผิดชอบ:
- initialize / authenticate
- methods สำหรับ new/load/resume/fork/list/cancel session
- การดำเนินการ prompt
- การสลับ model ของ session
- การเชื่อมต่อ (wiring) callbacks ของ AIAgent แบบ sync เข้ากับ ACP async notifications
SessionManager
acp_adapter/session.py ติดตาม ACP sessions ที่ใช้งานอยู่
แต่ละ session จะเก็บ:
session_idagentcwdmodelhistorycancel_event
manager นี้เป็น thread-safe และรองรับ:
- create
- get
- remove
- fork
- list
- cleanup
- การอัปเดต cwd
Event bridge
acp_adapter/events.py แปลง AIAgent callbacks ให้เป็น ACP session_update events
callbacks ที่ถูกเชื่อมต่อ (Bridged callbacks):
tool_progress_callbackthinking_callbackstep_callbackmessage_callback
เนื่องจาก AIAgent ทำงานใน worker thread ในขณะที่ ACP I/O อยู่บน main event loop, bridge จึงใช้:
asyncio.run_coroutine_threadsafe(...)Permission bridge
acp_adapter/permissions.py ปรับเปลี่ยน (adapts) prompt การอนุมัติ terminal ที่อันตรายให้เป็น ACP permission requests
การแมป (Mapping):
allow_once-> Hermesonceallow_always-> Hermesalways- reject options -> Hermes
deny
Timeouts และ bridge failures จะปฏิเสธ (deny) เป็นค่าเริ่มต้น
Tool rendering helpers
acp_adapter/tools.py ทำการ map Hermes tools ไปยัง ACP tool kinds และสร้างเนื้อหาที่แสดงผลสำหรับ editor
ตัวอย่าง:
patch/write_file-> file diffsterminal-> shell command textread_file/search_files-> text previews- large results -> truncated text blocks for UI safety
Session lifecycle
new_session(cwd)
-> create SessionState
-> create AIAgent(platform="acp", enabled_toolsets=["hermes-acp"])
-> bind task_id/session_id to cwd override
prompt(..., session_id)
-> extract text from ACP content blocks
-> reset cancel event
-> install callbacks + approval bridge
-> run AIAgent in ThreadPoolExecutor
-> update session history
-> emit final agent message chunkCancelation
cancel(session_id):
- ตั้งค่า session cancel event
- เรียกใช้
agent.interrupt()เมื่อพร้อมใช้งาน - ทำให้ prompt response ส่งคืนค่า
stop_reason="cancelled"
Forking
fork_session() จะ deep-copy message history ไปยัง live session ใหม่ โดยคงสถานะการสนทนาไว้ ในขณะที่ให้ session ID และ cwd ใหม่แก่ fork นั้น
Provider/auth behavior
ACP ไม่ได้ implement auth store ของตัวเอง
แต่จะนำ runtime resolver ของ Hermes มาใช้ซ้ำ:
acp_adapter/auth.pyhermes_cli/runtime_provider.py
ดังนั้น ACP จึงโฆษณาและใช้ provider/credentials ของ Hermes ที่ถูกตั้งค่าไว้ในปัจจุบัน
Working directory binding
ACP sessions มี cwd ของ editor ติดมาด้วย
session manager จะผูก (bind) cwd นั้นเข้ากับ ACP session ID ผ่านการ override terminal/file แบบ task-scoped ดังนั้นเครื่องมือ file และ terminal จึงทำงานแบบ relative ต่อ editor workspace
Duplicate same-name tool calls
event bridge จะติดตาม tool IDs แบบ FIFO ต่อชื่อเครื่องมือ ไม่ใช่แค่ ID เดียวต่อชื่อ สิ่งนี้สำคัญสำหรับ:
- parallel same-name calls
- repeated same-name calls in one step
หากไม่มีคิว FIFO, completion events จะผูกติดกับ tool invocation ที่ผิด
Approval callback restoration
ACP จะติดตั้ง approval callback ชั่วคราวบน terminal tool ในระหว่างการดำเนินการ prompt จากนั้นจึงกู้คืน callback ก่อนหน้า การทำเช่นนี้ช่วยป้องกันไม่ให้ approval handlers เฉพาะ session ของ ACP ถูกติดตั้งแบบ global อย่างถาวร
Current limitations
- ACP sessions เป็นแบบ process-local จากมุมมองของ ACP server
- non-text prompt blocks ถูกละเว้นสำหรับการดึงข้อความคำขอในปัจจุบัน
- UX ที่เฉพาะเจาะจงสำหรับ editor จะแตกต่างกันไปตามการ implement ของ ACP client
Related files
tests/acp/- ACP test suitetoolsets.py-hermes-acptoolset definitionhermes_cli/main.py-hermes acpCLI subcommandpyproject.toml-[acp]optional dependency +hermes-acpscript
📄 developer-guide/adding-platform-adapters.md
sidebar_position: 9
การเพิ่ม Platform Adapter
คู่มือนี้ครอบคลุมวิธีการเพิ่มแพลตฟอร์มการส่งข้อความใหม่ให้กับ Hermes gateway Platform adapter ทำหน้าที่เชื่อมต่อ Hermes เข้ากับบริการส่งข้อความภายนอก (เช่น Telegram, Discord, WeCom เป็นต้น) เพื่อให้ผู้ใช้สามารถโต้ตอบกับ agent ผ่านบริการนั้นได้
:::tip การเพิ่ม platform adapter จะเกี่ยวข้องกับไฟล์มากกว่า 20 ไฟล์ ทั้งในส่วนของโค้ด (code), การตั้งค่า (config), และเอกสาร (docs) โปรดใช้คู่มือนี้เป็น checklist เนื่องจากไฟล์ adapter เองมักจะเป็นเพียง 40% ของงานทั้งหมด :::
ภาพรวมสถาปัตยกรรม (Architecture Overview)
User ↔ Messaging Platform ↔ Platform Adapter ↔ Gateway Runner ↔ AIAgentadapter ทุกตัวจะขยาย (extend) BasePlatformAdapter จาก gateway/platforms/base.py และต้องมีการ implement:
connect()- การสร้างการเชื่อมต่อ (เช่น WebSocket, long-poll, HTTP server เป็นต้น)disconnect()- การปิดระบบอย่างสะอาด (Clean shutdown)send()- การส่งข้อความแบบ text ไปยัง chatsend_typing()- การแสดงสถานะกำลังพิมพ์ (optional)get_chat_info()- การส่งคืน metadata ของ chat
ข้อความขาเข้า (Inbound messages) จะถูกรับโดย adapter และส่งต่อไปผ่าน self.handle_message(event) ซึ่ง base class จะทำหน้าที่กำหนดเส้นทาง (route) ไปยัง gateway runner
Checklist แบบขั้นตอน (Step-by-Step Checklist)
1. Platform Enum
เพิ่มแพลตฟอร์มของคุณเข้าไปใน Platform enum ในไฟล์ gateway/config.py:
class Platform(str, Enum):
# ... existing platforms ...
NEWPLAT = "newplat"2. Adapter File
สร้างไฟล์ gateway/platforms/newplat.py:
from gateway.config import Platform, PlatformConfig
from gateway.platforms.base import (
BasePlatformAdapter, MessageEvent, MessageType, SendResult,
)
def check_newplat_requirements() -> bool:
"""Return True if dependencies are available."""
return SOME_SDK_AVAILABLE
class NewPlatAdapter(BasePlatformAdapter):
def __init__(self, config: PlatformConfig):
super().__init__(config, Platform.NEWPLAT)
# Read config from config.extra dict
extra = config.extra or {}
self._api_key = extra.get("api_key") or os.getenv("NEWPLAT_API_KEY", "")
async def connect(self) -> bool:
# Set up connection, start polling/webhook
self._mark_connected()
return True
async def disconnect(self) -> None:
self._running = False
self._mark_disconnected()
async def send(self, chat_id, content, reply_to=None, metadata=None):
# Send message via platform API
return SendResult(success=True, message_id="...")
async def get_chat_info(self, chat_id):
return {"name": chat_id, "type": "dm"}สำหรับข้อความขาเข้า ให้สร้าง MessageEvent และเรียกใช้ self.handle_message(event):
source = self.build_source(
chat_id=chat_id,
chat_name=name,
chat_type="dm", # or "group"
user_id=user_id,
user_name=user_name,
)
event = MessageEvent(
text=content,
message_type=MessageType.TEXT,
source=source,
message_id=msg_id,
)
await self.handle_message(event)3. Gateway Config (gateway/config.py)
มีจุดที่ต้องแก้ไข 3 จุด:
get_connected_platforms()- เพิ่มการตรวจสอบ credentials ที่จำเป็นสำหรับแพลตฟอร์มของคุณload_gateway_config()- เพิ่มรายการ env map:Platform.NEWPLAT: "NEWPLAT_TOKEN"_apply_env_overrides()- แมปตัวแปร env ทั้งหมดที่ขึ้นต้นด้วยNEWPLAT_*ไปยัง config
4. Gateway Runner (gateway/run.py)
มีจุดที่ต้องแก้ไข 5 จุด:
_create_adapter()- เพิ่ม branchelif platform == Platform.NEWPLAT:_is_user_authorized()allowed_users map - เพิ่มPlatform.NEWPLAT: "NEWPLAT_ALLOWED_USERS"_is_user_authorized()allow_all map - เพิ่มPlatform.NEWPLAT: "NEWPLAT_ALLOW_ALL_USERS"- Early env check
_any_allowlisttuple - เพิ่ม"NEWPLAT_ALLOWED_USERS" - Early env check
_allow_alltuple - เพิ่ม"NEWPLAT_ALLOW_ALL_USERS" _UPDATE_ALLOWED_PLATFORMSfrozenset - เพิ่มPlatform.NEWPLAT
5. Cross-Platform Delivery
gateway/platforms/webhook.py- เพิ่ม"newplat"เข้าไปใน tuple ของ delivery typecron/scheduler.py- เพิ่มเข้าไปใน_KNOWN_DELIVERY_PLATFORMSfrozenset และ_deliver_result()platform map
6. CLI Integration
hermes_cli/config.py- เพิ่มตัวแปรNEWPLAT_*ทั้งหมดเข้าไปใน_EXTRA_ENV_KEYShermes_cli/gateway.py- เพิ่ม entry ในรายการ_PLATFORMSโดยมี key, label, emoji, token_var, setup_instructions, และ varshermes_cli/platforms.py- เพิ่ม entryPlatformInfoพร้อม label และ default_toolset (ใช้โดยskills_configและtools_configTUIs)hermes_cli/setup.py- เพิ่มฟังก์ชัน_setup_newplat()(สามารถ delegate ไปยังgateway.pyได้) และเพิ่ม tuple เข้าไปในรายการ messaging platformshermes_cli/status.py- เพิ่ม entry การตรวจจับแพลตฟอร์ม:"NewPlat": ("NEWPLAT_TOKEN", "NEWPLAT_HOME_CHANNEL")hermes_cli/dump.py- เพิ่ม"newplat": "NEWPLAT_TOKEN"เข้าไปใน dict การตรวจจับแพลตฟอร์ม
7. Tools
tools/send_message_tool.py- เพิ่ม"newplat": Platform.NEWPLATเข้าไปใน platform maptools/cronjob_tools.py- เพิ่มnewplatเข้าไปในสตริงคำอธิบาย delivery target
8. Toolsets
toolsets.py- เพิ่มคำจำกัดความ toolset"hermes-newplat"พร้อม_HERMES_CORE_TOOLStoolsets.py- เพิ่ม"hermes-newplat"เข้าไปในรายการ includes ของ"hermes-gateway"
9. Optional: Platform Hints
agent/prompt_builder.py - หากแพลตฟอร์มของคุณมีข้อจำกัดในการแสดงผลเฉพาะ (เช่น ไม่รองรับ markdown, มีข้อจำกัดความยาวข้อความ เป็นต้น) ให้เพิ่ม entry เข้าไปใน _PLATFORM_HINTS dict สิ่งนี้จะฉีดคำแนะนำเฉพาะแพลตฟอร์มเข้าไปใน system prompt:
_PLATFORM_HINTS = {
# ...
"newplat": (
"You are chatting via NewPlat. It supports markdown formatting "
"but has a 4000-character message limit."
),
}ไม่ใช่ทุกแพลตฟอร์มที่จำเป็นต้องมี hints - ให้เพิ่มก็ต่อเมื่อพฤติกรรมของ agent ควรแตกต่างออกไปเท่านั้น
10. Tests
สร้างไฟล์ tests/gateway/test_newplat.py เพื่อครอบคลุม:
- การสร้าง adapter จาก config
- การสร้าง message event
- เมธอด send (จำลอง API ภายนอก)
- คุณสมบัติเฉพาะแพลตฟอร์ม (เช่น การเข้ารหัส, การกำหนดเส้นทาง เป็นต้น)
11. Documentation
| File | What to add |
|---|---|
website/docs/user-guide/messaging/newplat.md | หน้าตั้งค่าแพลตฟอร์มแบบเต็ม |
website/docs/user-guide/messaging/index.md | ตารางเปรียบเทียบแพลตฟอร์ม, แผนภาพสถาปัตยกรรม, ตาราง toolsets, ส่วนความปลอดภัย, ลิงก์ขั้นตอนถัดไป |
website/docs/reference/environment-variables.md | ตัวแปร env ทั้งหมดที่ขึ้นต้นด้วย NEWPLAT_* |
website/docs/reference/toolsets-reference.md | toolset hermes-newplat |
website/docs/integrations/index.md | ลิงก์แพลตฟอร์ม |
website/sidebars.ts | Entry ใน sidebar สำหรับหน้าเอกสาร |
website/docs/developer-guide/architecture.md | จำนวน adapter + รายการ |
website/docs/developer-guide/gateway-internals.md | รายการไฟล์ adapter |
Parity Audit
ก่อนที่จะทำ PR ของแพลตฟอร์มใหม่ให้เสร็จสมบูรณ์ ให้ทำการ parity audit เทียบกับแพลตฟอร์มที่กำหนดไว้แล้ว:
# ค้นหาไฟล์ .py ทุกไฟล์ที่กล่าวถึงแพลตฟอร์มอ้างอิง
search_files "bluebubbles" output_mode="files_only" file_glob="*.py"
# ค้นหาไฟล์ .py ทุกไฟล์ที่กล่าวถึงแพลตฟอร์มใหม่
search_files "newplat" output_mode="files_only" file_glob="*.py"
# ไฟล์ใดๆ ในชุดแรกแต่ไม่อยู่ในชุดที่สองคือช่องว่างที่อาจเกิดขึ้นทำซ้ำสำหรับไฟล์ .md และ .ts ตรวจสอบช่องว่างแต่ละช่อง - เป็นการแจงนับแพลตฟอร์ม (ต้องอัปเดต) หรือเป็น reference เฉพาะแพลตฟอร์ม (ข้ามไปได้)?
Common Patterns
Long-Poll Adapters
หาก adapter ของคุณใช้ long-polling (เช่น Telegram หรือ Weixin) ให้ใช้ task แบบ polling loop:
async def connect(self):
self._poll_task = asyncio.create_task(self._poll_loop())
self._mark_connected()
async def _poll_loop(self):
while self._running:
messages = await self._fetch_updates()
for msg in messages:
await self.handle_message(self._build_event(msg))Callback/Webhook Adapters
หากแพลตฟอร์มส่งข้อความมายัง endpoint ของคุณ (เช่น WeCom Callback) ให้รัน HTTP server:
async def connect(self):
self._app = web.Application()
self._app.router.add_post("/callback", self._handle_callback)
# ... start aiohttp server
self._mark_connected()
async def _handle_callback(self, request):
event = self._build_event(await request.text())
await self._message_queue.put(event)
return web.Response(text="success") # Acknowledge immediatelyสำหรับแพลตฟอร์มที่มีกำหนดเวลาตอบกลับที่จำกัด (เช่น ข้อจำกัด 5 วินาทีของ WeCom) ให้ทำการ acknowledge ทันทีและส่ง reply ของ agent อย่างเชิงรุกผ่าน API ในภายหลัง การทำงานของ agent อาจใช้เวลา 3-30 นาที - การตอบกลับแบบ inline ภายในหน้าต่าง callback response จึงไม่สามารถทำได้
Token Locks
หาก adapter ถือการเชื่อมต่อที่คงอยู่ด้วย credential เฉพาะตัว ให้เพิ่ม scoped lock เพื่อป้องกันไม่ให้โปรไฟล์สองโปรไฟล์ใช้ credential เดียวกัน:
from gateway.status import acquire_scoped_lock, release_scoped_lock
async def connect(self):
if not acquire_scoped_lock("newplat", self._token):
logger.error("Token already in use by another profile")
return False
# ... connect
async def disconnect(self):
release_scoped_lock("newplat", self._token)Reference Implementations
| Adapter | Pattern | Complexity | Good reference for |
|---|---|---|---|
bluebubbles.py | REST + webhook | Medium | Simple REST API integration |
weixin.py | Long-poll + CDN | High | Media handling, encryption |
wecom_callback.py | Callback/webhook | Medium | HTTP server, AES crypto, multi-app |
telegram.py | Long-poll + Bot API | High | Full-featured adapter with groups, threads |
📄 developer-guide/adding-providers.md
sidebar_position: 5 title: "Adding Providers" description: "How to add a new inference provider to Hermes Agent - auth, runtime resolution, CLI flows, adapters, tests, and docs"
การเพิ่ม Providers
Hermes สามารถสื่อสารกับ endpoint ที่รองรับ OpenAI ได้ทุกประเภทผ่าน custom provider path อยู่แล้ว ดังนั้นจึงไม่จำเป็นต้องเพิ่ม built-in provider เว้นแต่ว่าคุณต้องการประสบการณ์ผู้ใช้ (UX) ระดับ First-class สำหรับบริการนั้นๆ:
- การจัดการ auth หรือ token refresh เฉพาะ provider
- แคตตาล็อกโมเดลที่คัดสรรมาแล้ว
- การตั้งค่า / รายการเมนู
hermes model - ชื่อแทน (aliases) สำหรับ syntax
provider:model - API shape ที่ไม่ใช่ OpenAI ซึ่งต้องใช้ adapter
หาก provider นั้นเป็นเพียง "base URL และ API key ที่รองรับ OpenAI อีกตัว" การใช้ custom provider ที่ตั้งชื่อจะเพียงพอแล้ว
แนวคิดหลัก (The mental model)
built-in provider จะต้องทำงานร่วมกันในหลายชั้น:
hermes_cli/auth.pyเป็นตัวตัดสินว่า credentials ถูกค้นหาอย่างไรhermes_cli/runtime_provider.pyแปลงสิ่งนั้นเป็นข้อมูล runtime:providerapi_modebase_urlapi_keysource
run_agent.pyใช้api_modeเพื่อตัดสินใจว่าจะสร้างและส่ง request อย่างไรhermes_cli/models.pyและhermes_cli/main.pyทำให้ provider ปรากฏใน CLI (hermes_cli/setup.pyจะมอบหมายงานให้main.pyโดยอัตโนมัติ - ไม่ต้องแก้ไขอะไร)agent/auxiliary_client.pyและagent/model_metadata.pyช่วยให้งานเสริมและระบบการจัดสรร token ทำงานได้
ส่วนสำคัญที่ต้องทำความเข้าใจคือ api_mode
- Provider ส่วนใหญ่ใช้
chat_completions - Codex ใช้
codex_responses - Anthropic ใช้
anthropic_messages - โปรโตคอลใหม่ที่ไม่ใช่ OpenAI มักจะหมายถึงการเพิ่ม adapter ใหม่และ branch
api_modeใหม่
เลือกเส้นทางการ implement ก่อน
Path A - OpenAI-compatible provider
ใช้เส้นทางนี้เมื่อ provider นั้นรับ request รูปแบบ chat-completions มาตรฐาน
งานทั่วไปที่ต้องทำ:
- เพิ่ม metadata สำหรับ auth
- เพิ่ม model catalog / aliases
- เพิ่ม runtime resolution
- เพิ่มการเชื่อมต่อเมนู CLI
- เพิ่มค่า default สำหรับ aux-model
- เพิ่ม tests และเอกสารสำหรับผู้ใช้
โดยทั่วไปแล้วคุณไม่จำเป็นต้องมี adapter หรือ api_mode ใหม่
Path B - Native provider
ใช้เส้นทางนี้เมื่อ provider นั้นไม่ได้ทำงานเหมือน OpenAI chat completions
ตัวอย่างที่อยู่ในโค้ดวันนี้:
codex_responsesanthropic_messages
เส้นทางนี้รวมทุกอย่างจาก Path A บวกกับ:
- provider adapter ใน
agent/ - branches ใน
run_agent.pyสำหรับการสร้าง request, dispatch, การดึง usage, การจัดการ interrupt, และการ normalize response - adapter tests
รายการตรวจสอบไฟล์ (File checklist)
จำเป็นสำหรับ built-in provider ทุกตัว
hermes_cli/auth.pyhermes_cli/models.pyhermes_cli/runtime_provider.pyhermes_cli/main.pyagent/auxiliary_client.pyagent/model_metadata.py- tests
- เอกสารสำหรับผู้ใช้ภายใต้
website/docs/
:::tip
hermes_cli/setup.py ไม่ต้องมีการเปลี่ยนแปลง ตัว setup wizard จะมอบหมายการเลือก provider/model ให้กับ select_provider_and_model() ใน main.py - provider ใดๆ ที่เพิ่มเข้าไปที่นั่นจะพร้อมใช้งานใน hermes setup โดยอัตโนมัติ
:::
เพิ่มเติมสำหรับ native / non-OpenAI providers
agent/<provider>_adapter.pyrun_agent.pypyproject.tomlหากต้องการ provider SDK
ขั้นตอนที่ 1: เลือก provider id หลักตัวเดียว
เลือก provider id เพียงตัวเดียวและใช้มันทุกที่
ตัวอย่างจาก repo:
openai-codexkimi-codingminimax-cn
id เดียวกันนี้ควรปรากฏใน:
PROVIDER_REGISTRYในhermes_cli/auth.py_PROVIDER_LABELSในhermes_cli/models.py_PROVIDER_ALIASESในทั้งhermes_cli/auth.pyและhermes_cli/models.py- ตัวเลือก CLI
--providerในhermes_cli/main.py - branches การเลือก setup / model
- ค่า default สำหรับ auxiliary-model
- tests
หาก id แตกต่างกันระหว่างไฟล์เหล่านั้น provider จะรู้สึกเหมือนถูกต่อไม่สมบูรณ์: auth อาจทำงานได้ในขณะที่ /model, setup, หรือ runtime resolution มองข้ามมันไปอย่างเงียบๆ
ขั้นตอนที่ 2: เพิ่ม auth metadata ใน hermes_cli/auth.py
สำหรับ provider ที่ใช้ API-key ให้เพิ่มรายการ ProviderConfig ใน PROVIDER_REGISTRY ด้วย:
idnameauth_type="api_key"inference_base_urlapi_key_env_varsbase_url_env_var(ทางเลือก)
และเพิ่ม aliases ให้กับ _PROVIDER_ALIASES
ใช้ provider ที่มีอยู่เป็นแม่แบบ:
- simple API-key path: Z.AI, MiniMax
- API-key path พร้อมการตรวจจับ endpoint: Kimi, Z.AI
- native token resolution: Anthropic
- OAuth / auth-store path: Nous, OpenAI Codex
คำถามที่ต้องตอบในส่วนนี้:
- Hermes ควรตรวจสอบ env vars อะไรบ้าง และในลำดับความสำคัญใด?
- provider ต้องการการ override base-URL หรือไม่?
- ต้องการการ probing endpoint หรือ token refresh หรือไม่?
- ข้อความแสดงข้อผิดพลาดของ auth ควรเป็นอย่างไรเมื่อ credentials ขาดหายไป?
หาก provider ต้องการอะไรที่มากกว่า "การค้นหา API key" ให้เพิ่ม credential resolver เฉพาะแทนการยัด logic เข้าไปใน branches ที่ไม่เกี่ยวข้อง
ขั้นตอนที่ 3: เพิ่ม model catalog และ aliases ใน hermes_cli/models.py
อัปเดต provider catalog เพื่อให้ provider ทำงานได้ทั้งในเมนูและใน syntax provider:model
การแก้ไขทั่วไป:
_PROVIDER_MODELS_PROVIDER_LABELS_PROVIDER_ALIASES- ลำดับการแสดง provider ภายใน
list_available_providers() provider_model_ids()หาก provider รองรับการดึง/modelsแบบ live
หาก provider เปิดเผยรายการโมเดลแบบ live ให้เลือกใช้แบบนั้นก่อนและเก็บ _PROVIDER_MODELS เป็น fallback แบบ static
ไฟล์นี้ยังเป็นตัวที่ทำให้ inputs อย่างนี้ทำงานได้:
anthropic:claude-sonnet-4-6
kimi:model-nameหาก aliases หายไปที่นี่ provider อาจทำการ auth ได้อย่างถูกต้อง แต่ยังคงล้มเหลวในการ parse ใน /model
ขั้นตอนที่ 4: Resolve runtime data ใน hermes_cli/runtime_provider.py
resolve_runtime_provider() คือ path ที่ใช้ร่วมกันโดย CLI, gateway, cron, ACP, และ helper clients
เพิ่ม branch ที่คืนค่า dict ที่มีอย่างน้อย:
{
"provider": "your-provider",
"api_mode": "chat_completions", # หรือ native mode ของคุณ
"base_url": "https://...",
"api_key": "...",
"source": "env|portal|auth-store|explicit",
"requested_provider": requested_provider,
}หาก provider นั้นรองรับ OpenAI-compatible, api_mode ควรยังคงเป็น chat_completions
ระวังเรื่องลำดับความสำคัญของ API-key โดย Hermes มี logic อยู่แล้วเพื่อป้องกันการรั่วไหลของ OpenRouter key ไปยัง endpoint ที่ไม่เกี่ยวข้อง provider ใหม่ควรมีความชัดเจนในระดับเดียวกันว่า key ใดจะถูกส่งไปยัง base URL ใด
ขั้นตอนที่ 5: Wire CLI ใน hermes_cli/main.py
provider จะไม่สามารถค้นพบได้จนกว่าจะปรากฏใน flow แบบ interactive ของ hermes model
อัปเดตส่วนเหล่านี้ใน hermes_cli/main.py:
- dict
provider_labels - list
providersในselect_provider_and_model() - provider dispatch (
if selected_provider == ...) - ตัวเลือก argument
--provider - ตัวเลือก login/logout หาก provider รองรับ flow เหล่านั้น
- ฟังก์ชัน
_model_flow_<provider>()หรือใช้ซ้ำ_model_flow_api_key_provider()หากเหมาะสม
:::tip
hermes_cli/setup.py ไม่ต้องมีการเปลี่ยนแปลง - มันเรียก select_provider_and_model() จาก main.py ดังนั้น provider ใหม่ของคุณจะปรากฏทั้งใน hermes model และ hermes setup โดยอัตโนมัติ
:::
ขั้นตอนที่ 6: ทำให้ auxiliary calls ทำงานได้
มีสองไฟล์ที่สำคัญในส่วนนี้:
agent/auxiliary_client.py
เพิ่ม aux model default ที่ราคาถูก/เร็ว ใน _API_KEY_PROVIDER_AUX_MODELS หากนี่คือ direct API-key provider
Auxiliary tasks รวมถึงสิ่งต่างๆ เช่น:
- vision summarization
- web extraction summarization
- context compression summaries
- session-search summaries
- memory flushes
หาก provider ไม่มี aux default ที่สมเหตุสมผล งานเสริมอาจล้มเหลวอย่างมากหรือใช้ main model ที่มีราคาสูงโดยไม่คาดคิด
agent/model_metadata.py
เพิ่ม context lengths สำหรับโมเดลของ provider เพื่อให้ token budgeting, compression thresholds, และ limits อยู่ในระดับที่เหมาะสม
ขั้นตอนที่ 7: หาก provider เป็น native ให้เพิ่ม adapter และ support ใน run_agent.py
หาก provider ไม่ใช่ chat completions ธรรมดา ให้แยก logic เฉพาะ provider ไปไว้ใน agent/<provider>_adapter.py
ให้ run_agent.py มุ่งเน้นไปที่การ orchestrate มันควรเรียกใช้ helper ของ adapter ไม่ใช่การสร้าง payload ของ provider ด้วยตนเองทั่วทั้งไฟล์
Native provider มักจะต้องมีการทำงานในส่วนเหล่านี้:
ไฟล์ adapter ใหม่
ความรับผิดชอบทั่วไป:
- build SDK / HTTP client
- resolve tokens
- convert ข้อความ conversation รูปแบบ OpenAI เป็น request format ของ provider
- convert tool schemas หากจำเป็น
- normalize response ของ provider กลับไปเป็นสิ่งที่
run_agent.pyคาดหวัง - extract usage และ finish-reason data
run_agent.py
ค้นหา api_mode และตรวจสอบทุกจุด switch อย่างน้อยที่สุดให้ตรวจสอบ:
__init__เลือกapi_modeใหม่- การสร้าง client ทำงานสำหรับ provider
_build_api_kwargs()รู้ว่าจะ format request อย่างไร_interruptible_api_call()dispatch ไปยัง client call ที่ถูกต้อง- path ของ interrupt / client rebuild ทำงาน
- response validation ยอมรับ shape ของ provider
- การ extract finish-reason ถูกต้อง
- การ extract token-usage ถูกต้อง
- การเปิดใช้งาน fallback-model สามารถสลับไปยัง provider ใหม่ได้อย่างสะอาด
- path ของ summary-generation และ memory-flush ยังคงทำงาน
นอกจากนี้ให้ค้นหา self.client. ใน run_agent.py ด้วย เส้นทางโค้ดใดๆ ที่สมมติว่ามี standard OpenAI client อยู่ อาจพังเมื่อ native provider ใช้ client object ที่แตกต่างออกไป หรือ self.client = None
Prompt caching และ provider-specific request fields
Prompt caching และ knobs เฉพาะ provider นั้นง่ายต่อการเกิด regression
ตัวอย่างที่มีอยู่แล้ว:
- Anthropic มี path สำหรับ prompt-caching แบบ native
- OpenRouter ได้รับ fields สำหรับ provider-routing
- ไม่ใช่ว่าทุก provider ควรได้รับทุก option ฝั่ง request
เมื่อคุณเพิ่ม native provider ให้ตรวจสอบซ้ำว่า Hermes ส่งเฉพาะ fields ที่ provider เข้าใจจริงเท่านั้น
ขั้นตอนที่ 8: Tests
อย่างน้อยที่สุด ให้แตะ tests ที่คอยป้องกันการเชื่อมต่อ provider
สถานที่ทั่วไป:
tests/test_runtime_provider_resolution.pytests/test_cli_provider_resolution.pytests/test_cli_model_command.pytests/test_setup_model_selection.pytests/test_provider_parity.pytests/test_run_agent.pytests/test_<provider>_adapter.pyสำหรับ native provider
สำหรับตัวอย่างที่ใช้สำหรับ docs เท่านั้น ชุดไฟล์ที่แน่นอนอาจแตกต่างกัน จุดประสงค์คือการครอบคลุม:
- auth resolution
- CLI menu / provider selection
- runtime provider resolution
- agent execution path
- provider:model parsing
- การแปลงข้อความเฉพาะ adapter ใดๆ
รัน tests โดยปิด xdist:
source venv/bin/activate
python -m pytest tests/test_runtime_provider_resolution.py tests/test_cli_provider_resolution.py tests/test_cli_model_command.py tests/test_setup_model_selection.py -n0 -qสำหรับการเปลี่ยนแปลงที่ลึกกว่า ให้รัน full suite ก่อน push:
source venv/bin/activate
python -m pytest tests/ -n0 -qขั้นตอนที่ 9: การตรวจสอบแบบ Live
หลังจาก tests ให้รัน smoke test จริง
source venv/bin/activate
python -m hermes_cli.main chat -q "Say hello" --provider your-provider --model your-modelทดสอบ flow แบบ interactive ด้วยหากคุณเปลี่ยนเมนู:
source venv/bin/activate
python -m hermes_cli.main model
python -m hermes_cli.main setupสำหรับ native providers ให้ตรวจสอบ tool call อย่างน้อยหนึ่งครั้งด้วย ไม่ใช่แค่ response ข้อความธรรมดา
ขั้นตอนที่ 10: อัปเดตเอกสารสำหรับผู้ใช้
หาก provider มีจุดประสงค์ที่จะออกเป็นตัวเลือก First-class ให้ทำการอัปเดตเอกสารผู้ใช้ด้วย:
website/docs/getting-started/quickstart.mdwebsite/docs/user-guide/configuration.mdwebsite/docs/reference/environment-variables.md
นักพัฒนาสามารถเชื่อมต่อ provider ได้อย่างสมบูรณ์แบบ แต่ยังคงทำให้ผู้ใช้ไม่สามารถค้นพบ env vars หรือ setup flow ที่จำเป็นได้
OpenAI-compatible provider checklist
ใช้ส่วนนี้หาก provider เป็น chat completions มาตรฐาน
- เพิ่ม
ProviderConfigในhermes_cli/auth.py - เพิ่ม aliases ใน
hermes_cli/auth.pyและhermes_cli/models.py - เพิ่ม model catalog ใน
hermes_cli/models.py - เพิ่ม runtime branch ใน
hermes_cli/runtime_provider.py - เพิ่ม CLI wiring ใน
hermes_cli/main.py(setup.py จะสืบทอดโดยอัตโนมัติ) - เพิ่ม aux model ใน
agent/auxiliary_client.py - เพิ่ม context lengths ใน
agent/model_metadata.py - อัปเดต runtime / CLI tests
- อัปเดตเอกสารผู้ใช้
Native provider checklist
ใช้ส่วนนี้เมื่อ provider ต้องการ path โปรโตคอลใหม่
- ทุกอย่างใน OpenAI-compatible checklist
- เพิ่ม adapter ใน
agent/<provider>_adapter.py - รองรับ
api_modeใหม่ในrun_agent.py - path ของ interrupt / rebuild ทำงาน
- การ extract usage และ finish-reason ทำงาน
- fallback path ทำงาน
- เพิ่ม adapter tests
- live smoke test ผ่าน
ข้อผิดพลาดที่พบบ่อย (Common pitfalls)
1. เพิ่ม provider ใน auth แต่ไม่เพิ่มใน model parsing
สิ่งนี้ทำให้ credentials resolve ได้อย่างถูกต้อง แต่ inputs /model และ provider:model ล้มเหลว
2. ลืมว่า config["model"] สามารถเป็น string หรือ dict
โค้ดส่วนใหญ่ที่เลือก provider ต้อง normalize ทั้งสองรูปแบบ
3. สมมติว่าจำเป็นต้องมี built-in provider
หากบริการนั้นรองรับ OpenAI-compatible, custom provider อาจแก้ปัญหาผู้ใช้ได้แล้วด้วยการบำรุงรักษาน้อยกว่า
4. ลืม auxiliary paths
main chat path อาจทำงานได้ แต่ summarization, memory flushes, หรือ vision helpers ล้มเหลว เพราะ aux routing ไม่เคยถูกอัปเดต
5. native-provider branches ที่ซ่อนอยู่ใน run_agent.py
ค้นหา api_mode และ self.client.. อย่าสมมติว่า request path ที่ชัดเจนคือ path เดียว
6. การส่ง OpenRouter-only knobs ไปยัง provider อื่น
Fields อย่าง provider routing ควรอยู่เฉพาะบน provider ที่รองรับมันเท่านั้น
7. อัปเดต hermes model แต่ไม่เปลี่ยน hermes setup
ทั้งสอง flow ต้องรับรู้เกี่ยวกับ provider
เป้าหมายการค้นหาที่ดีขณะ implement
หากคุณกำลังค้นหาสถานที่ทั้งหมดที่ provider เข้ามาเกี่ยวข้อง ให้ค้นหา symbols เหล่านี้:
PROVIDER_REGISTRY_PROVIDER_ALIASES_PROVIDER_MODELSresolve_runtime_provider_model_flow_select_provider_and_modelapi_mode_API_KEY_PROVIDER_AUX_MODELSself.client.
เอกสารที่เกี่ยวข้อง
📄 developer-guide/adding-tools.md
sidebar_position: 2 title: "การเพิ่มเครื่องมือ (Adding Tools)" description: "วิธีการเพิ่มเครื่องมือใหม่ให้กับ Hermes Agent - schemas, handlers, registration, และ toolsets"
การเพิ่มเครื่องมือ (Adding Tools)
ก่อนเขียนเครื่องมือ ให้ถามตัวเองว่า: สิ่งนี้ควรเป็น skill แทนหรือไม่?
ให้เป็น Skill เมื่อความสามารถนั้นสามารถแสดงออกได้ในรูปแบบของคำสั่ง (instructions) + shell commands + เครื่องมือที่มีอยู่แล้ว (เช่น การค้นหา arXiv, git workflows, การจัดการ Docker, การประมวลผล PDF)
ให้เป็น Tool เมื่อต้องมีการผสานรวมแบบ end-to-end กับ API keys, custom processing logic, การจัดการ binary data, หรือการ streaming (เช่น browser automation, TTS, vision analysis)
ภาพรวม (Overview)
การเพิ่มเครื่องมือเกี่ยวข้องกับ 2 ไฟล์:
tools/your_tool.py- handler, schema, check function,registry.register()calltoolsets.py- เพิ่มชื่อเครื่องมือใน_HERMES_CORE_TOOLS(หรือ toolset เฉพาะ)
ไฟล์ tools/*.py ใดๆ ที่มีคำสั่ง registry.register() ระดับบนสุด จะถูกค้นพบโดยอัตโนมัติเมื่อเริ่มต้นทำงาน ไม่จำเป็นต้องสร้างรายการ import ด้วยตนเอง
ขั้นตอนที่ 1: สร้างไฟล์เครื่องมือ (Create the Tool File)
ไฟล์เครื่องมือทุกไฟล์มีโครงสร้างเดียวกัน:
# tools/weather_tool.py
"""Weather Tool -- look up current weather for a location."""
import json
import os
import logging
logger = logging.getLogger(__name__)
# --- Availability check ---
def check_weather_requirements() -> bool:
"""Return True if the tool's dependencies are available."""
return bool(os.getenv("WEATHER_API_KEY"))
# --- Handler ---
def weather_tool(location: str, units: str = "metric") -> str:
"""Fetch weather for a location. Returns JSON string."""
api_key = os.getenv("WEATHER_API_KEY")
if not api_key:
return json.dumps({"error": "WEATHER_API_KEY not configured"})
try:
# ... call weather API ...
return json.dumps({"location": location, "temp": 22, "units": units})
except Exception as e:
return json.dumps({"error": str(e)})
# --- Schema ---
WEATHER_SCHEMA = {
"name": "weather",
"description": "Get current weather for a location.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "City name or coordinates (e.g. 'London' or '51.5,-0.1')"
},
"units": {
"type": "string",
"enum": ["metric", "imperial"],
"description": "Temperature units (default: metric)",
"default": "metric"
}
},
"required": ["location"]
}
}
# --- Registration ---
from tools.registry import registry
registry.register(
name="weather",
toolset="weather",
schema=WEATHER_SCHEMA,
handler=lambda args, **kw: weather_tool(
location=args.get("location", ""),
units=args.get("units", "metric")),
check_fn=check_weather_requirements,
requires_env=["WEATHER_API_KEY"],
)กฎสำคัญ (Key Rules)
:::danger Important
- Handlers MUST return a JSON string (via
json.dumps()), never raw dicts - Errors MUST be returned as
{"error": "message"}, never raised as exceptions - The
check_fnis called when building tool definitions - if it returnsFalse, the tool is silently excluded - The
handlerreceives(args: dict, **kwargs)whereargsis the LLM's tool call arguments :::
ขั้นตอนที่ 2: เพิ่มใน Toolset (Add to a Toolset)
ใน toolsets.py ให้เพิ่มชื่อเครื่องมือ:
# If it should be available on all platforms (CLI + messaging):
_HERMES_CORE_TOOLS = [
...
"weather", # <-- add here
]
# Or create a new standalone toolset:
"weather": {
"description": "Weather lookup tools",
"tools": ["weather"],
"includes": []
},ขั้นตอนที่ 3: เพิ่ม Discovery Import (ไม่จำเป็นแล้ว)
โมดูลเครื่องมือที่มีคำสั่ง registry.register() ระดับบนสุด จะถูกค้นพบโดยอัตโนมัติโดย discover_builtin_tools() ใน tools/registry.py ไม่จำเป็นต้องดูแลรายการ import ด้วยตนเอง - เพียงแค่สร้างไฟล์ของคุณใน tools/ และระบบก็จะดึงไปใช้เมื่อเริ่มต้นทำงาน
Async Handlers
หาก handler ของคุณต้องการโค้ดแบบ async ให้ระบุด้วย is_async=True:
async def weather_tool_async(location: str) -> str:
async with aiohttp.ClientSession() as session:
...
return json.dumps(result)
registry.register(
name="weather",
toolset="weather",
schema=WEATHER_SCHEMA,
handler=lambda args, **kw: weather_tool_async(args.get("location", "")),
check_fn=check_weather_requirements,
is_async=True, # registry calls _run_async() automatically
)ระบบ registry จะจัดการการเชื่อมต่อแบบ async โดยอัตโนมัติ - คุณไม่จำเป็นต้องเรียก asyncio.run() ด้วยตัวเอง
Handlers ที่ต้องการ task_id
เครื่องมือที่จัดการสถานะต่อ session จะรับ task_id ผ่าน **kwargs:
def _handle_weather(args, **kw):
task_id = kw.get("task_id")
return weather_tool(args.get("location", ""), task_id=task_id)
registry.register(
name="weather",
...
handler=_handle_weather,
)Agent-Loop Intercepted Tools
เครื่องมือบางตัว (todo, memory, session_search, delegate_task) จำเป็นต้องเข้าถึงสถานะของ agent ต่อ session ซึ่งจะถูกดักจับ (intercepted) โดย run_agent.py ก่อนที่จะถึง registry registry ยังคงเก็บ schemas ของเครื่องมือเหล่านี้ไว้ แต่ dispatch() จะส่งคืนข้อผิดพลาด fallback หากการ intercept ถูกข้ามไป
ทางเลือก: การผสานรวมกับ Setup Wizard
หากเครื่องมือของคุณต้องการ API key ให้เพิ่มมันใน hermes_cli/config.py:
OPTIONAL_ENV_VARS = {
...
"WEATHER_API_KEY": {
"description": "Weather API key for weather lookup",
"prompt": "Weather API key",
"url": "https://weatherapi.com/",
"tools": ["weather"],
"password": True,
},
}รายการตรวจสอบ (Checklist)
- สร้างไฟล์เครื่องมือพร้อม handler, schema, check function, และการลงทะเบียน
- เพิ่มใน toolset ที่เหมาะสมใน
toolsets.py - เพิ่ม discovery import ใน
model_tools.py - Handler ส่งคืน JSON strings, ข้อผิดพลาดส่งคืนในรูปแบบ
{"error": "..."} - ทางเลือก: เพิ่ม API key ใน
OPTIONAL_ENV_VARSในhermes_cli/config.py - ทางเลือก: เพิ่มใน
toolset_distributions.pyสำหรับการประมวลผลแบบ batch - ทดสอบด้วย
hermes chat -q "Use the weather tool for London"
📄 developer-guide/agent-loop.md
sidebar_position: 3 title: "Agent Loop Internals" description: "Detailed walkthrough of AIAgent execution, API modes, tools, callbacks, and fallback behavior"
Agent Loop Internals
แกนหลักของระบบ orchestration คือคลาส AIAgent ในไฟล์ run_agent.py ซึ่งเป็นโค้ดประมาณ 10,700 บรรทัด ที่จัดการทุกอย่างตั้งแต่การประกอบ prompt ไปจนถึงการส่ง dispatch tool และการ failover ของ provider
Core Responsibilities
AIAgent มีหน้าที่รับผิดชอบในส่วนต่างๆ ดังนี้:
- การประกอบ system prompt และ tool schemas ที่มีประสิทธิภาพผ่าน
prompt_builder.py - การเลือก provider/API mode ที่ถูกต้อง (chat_completions, codex_responses, anthropic_messages)
- การเรียก model ที่สามารถถูกขัดจังหวะได้ พร้อมรองรับการยกเลิก (cancellation support)
- การดำเนินการ tool calls (แบบลำดับหรือแบบขนานผ่าน thread pool)
- การรักษาประวัติการสนทนาในรูปแบบ message ของ OpenAI
- การจัดการการบีบอัดข้อมูล (compression), การลองใหม่ (retries), และการสลับ model สำรอง (fallback)
- การติดตามงบประมาณรอบการทำงาน (iteration budgets) ระหว่าง parent และ child agents
- การล้างหน่วยความจำถาวร (persistent memory) ก่อนที่ context จะสูญหาย
Two Entry Points
# Simple interface - returns final response string
response = agent.chat("Fix the bug in main.py")
# Full interface - returns dict with messages, metadata, usage stats
result = agent.run_conversation(
user_message="Fix the bug in main.py",
system_message=None, # auto-built if omitted
conversation_history=None, # auto-loaded from session if omitted
task_id="task_abc123"
)chat() เป็น wrapper แบบบาง (thin wrapper) รอบ run_conversation() ที่ดึงค่า final_response ออกมาจาก result dict
API Modes
Hermes รองรับ API execution modes สามโหมด ซึ่งถูกกำหนดจาก provider selection, explicit args, และ base URL heuristics:
| API mode | Used for | Client type |
|---|---|---|
chat_completions | OpenAI-compatible endpoints (OpenRouter, custom, most providers) | openai.OpenAI |
codex_responses | OpenAI Codex / Responses API | openai.OpenAI with Responses format |
anthropic_messages | Native Anthropic Messages API | anthropic.Anthropic via adapter |
โหมดเหล่านี้จะกำหนดวิธีการ format messages, วิธีการ structure tool calls, วิธีการ parse responses, และวิธีการทำงานของ caching/streaming ทั้งสามโหมดจะมาบรรจบกันที่ internal message format เดียวกัน (dicts รูปแบบ role/content/tool_calls แบบ OpenAI) ทั้งก่อนและหลังการเรียก API
ลำดับการกำหนดโหมด (Mode resolution order):
api_modeconstructor arg แบบชัดเจน (ลำดับความสำคัญสูงสุด)- การตรวจจับเฉพาะ provider (เช่น
anthropicprovider →anthropic_messages) - Base URL heuristics (เช่น
api.anthropic.com→anthropic_messages) - ค่าเริ่มต้น (Default):
chat_completions
Turn Lifecycle
แต่ละรอบของ agent loop จะทำตามลำดับนี้:
run_conversation()
1. Generate task_id if not provided
2. Append user message to conversation history
3. Build or reuse cached system prompt (prompt_builder.py)
4. Check if preflight compression is needed (>50% context)
5. Build API messages from conversation history
- chat_completions: OpenAI format as-is
- codex_responses: convert to Responses API input items
- anthropic_messages: convert via anthropic_adapter.py
6. Inject ephemeral prompt layers (budget warnings, context pressure)
7. Apply prompt caching markers if on Anthropic
8. Make interruptible API call (_interruptible_api_call)
9. Parse response:
- If tool_calls: execute them, append results, loop back to step 5
- If text response: persist session, flush memory if needed, returnMessage Format
ข้อความทั้งหมดใช้รูปแบบที่เข้ากันได้กับ OpenAI ภายใน:
{"role": "system", "content": "..."}
{"role": "user", "content": "..."}
{"role": "assistant", "content": "...", "tool_calls": [...]}
{"role": "tool", "tool_call_id": "...", "content": "..."}เนื้อหาการให้เหตุผล (Reasoning content) (จาก model ที่รองรับการคิดขยาย) จะถูกเก็บไว้ใน assistant_msg["reasoning"] และสามารถแสดงผลทางเลือกผ่าน reasoning_callback
Message Alternation Rules
agent loop บังคับใช้การสลับบทบาท (role alternation) ของข้อความอย่างเคร่งครัด:
- หลัง system message:
User → Assistant → User → Assistant → ... - ระหว่าง tool calling:
Assistant (with tool_calls) → Tool → Tool → ... → Assistant - ห้าม มีข้อความ assistant ติดกันสองข้อความ
- ห้าม มีข้อความ user ติดกันสองข้อความ
- เฉพาะ role
toolเท่านั้นที่สามารถมีรายการติดต่อกันได้ (parallel tool results)
Providers จะตรวจสอบลำดับเหล่านี้และจะปฏิเสธประวัติการสนทนาที่ผิดรูปแบบ
Interruptible API Calls
API requests จะถูกห่อหุ้มด้วย _interruptible_api_call() ซึ่งจะรันการเรียก HTTP จริงใน background thread พร้อมกับการเฝ้าดู interrupt event:
┌────────────────────────────────────────────────────┐
│ Main thread API thread │
│ │
│ wait on: HTTP POST │
│ - response ready ───▶ to provider │
│ - interrupt event │
│ - timeout │
└────────────────────────────────────────────────────┘เมื่อถูกขัดจังหวะ (user ส่งข้อความใหม่, คำสั่ง /stop, หรือ signal):
- API thread จะถูกละทิ้ง (response ถูกทิ้ง)
- agent สามารถประมวลผล input ใหม่ หรือปิดตัวลงอย่างสะอาด
- จะไม่มี partial response ถูกแทรกเข้าไปใน conversation history
Tool Execution
Sequential vs Concurrent
เมื่อ model ส่ง tool calls กลับมา:
- Single tool call → ถูกดำเนินการโดยตรงใน main thread
- Multiple tool calls → ถูกดำเนินการแบบขนานผ่าน
ThreadPoolExecutor- ข้อยกเว้น: tools ที่ถูกทำเครื่องหมายว่า interactive (เช่น
clarify) บังคับให้ต้องดำเนินการแบบลำดับ - ผลลัพธ์จะถูกแทรกกลับตามลำดับ tool call เดิม โดยไม่สนใจลำดับการเสร็จสิ้น
- ข้อยกเว้น: tools ที่ถูกทำเครื่องหมายว่า interactive (เช่น
Execution Flow
for each tool_call in response.tool_calls:
1. Resolve handler from tools/registry.py
2. Fire pre_tool_call plugin hook
3. Check if dangerous command (tools/approval.py)
- If dangerous: invoke approval_callback, wait for user
4. Execute handler with args + task_id
5. Fire post_tool_call plugin hook
6. Append {"role": "tool", "content": result} to historyAgent-Level Tools
เครื่องมือบางตัวจะถูก intercept โดย run_agent.py ก่อน ที่จะถึง handle_function_call():
| Tool | Why intercepted |
|---|---|
todo | อ่าน/เขียน agent-local task state |
memory | เขียนไปยังไฟล์หน่วยความจำถาวรพร้อมขีดจำกัดตัวอักษร |
session_search | สอบถามประวัติ session ผ่าน session DB ของ agent |
delegate_task | สร้าง subagent(s) ด้วย context ที่แยกออก |
เครื่องมือเหล่านี้จะแก้ไข agent state โดยตรงและส่งคืน tool results แบบสังเคราะห์โดยไม่ผ่าน registry
Callback Surfaces
AIAgent รองรับ callbacks เฉพาะแพลตฟอร์มที่ช่วยให้สามารถแสดงความคืบหน้าแบบ real-time ใน CLI, gateway, และ ACP integrations:
| Callback | When fired | Used by |
|---|---|---|
tool_progress_callback | ก่อน/หลังการ execute tool แต่ละตัว | CLI spinner, gateway progress messages |
thinking_callback | เมื่อ model เริ่ม/หยุดคิด | ตัวบ่งชี้ "thinking..." ใน CLI |
reasoning_callback | เมื่อ model ส่งคืน reasoning content | การแสดง reasoning ใน CLI, reasoning blocks ใน gateway |
clarify_callback | เมื่อเรียกใช้ tool clarify | prompt input ใน CLI, message แบบ interactive ใน gateway |
step_callback | หลังจบ turn ของ agent แต่ละรอบ | การติดตาม step ใน Gateway, progress ใน ACP |
stream_delta_callback | ทุก token ที่ stream (เมื่อเปิดใช้งาน) | การแสดง stream ใน CLI |
tool_gen_callback | เมื่อ parse tool call จาก stream | tool preview ใน spinner ของ CLI |
status_callback | การเปลี่ยนแปลงสถานะ (thinking, executing, etc.) | การอัปเดตสถานะใน ACP |
Budget and Fallback Behavior
Iteration Budget
agent ติดตามรอบการทำงานผ่าน IterationBudget:
- ค่าเริ่มต้น: 90 รอบ (สามารถกำหนดค่าได้ผ่าน
agent.max_turns) - agent แต่ละตัวมี budget ของตัวเอง Subagents มี budget อิสระที่จำกัดที่
delegation.max_iterations(ค่าเริ่มต้น 50) - total iterations ของ parent + subagents อาจเกินขีดจำกัดของ parent - เมื่อถึง 100%, agent จะหยุดและส่งคืนสรุปของงานที่ทำเสร็จ
Fallback Model
เมื่อ model หลักล้มเหลว (429 rate limit, 5xx server error, 401/403 auth error):
- ตรวจสอบรายการ
fallback_providersใน config - ลองใช้ fallback แต่ละตัวตามลำดับ
- หากสำเร็จ ให้ดำเนินการสนทนาต่อด้วย provider ใหม่
- สำหรับ 401/403 ให้พยายาม refresh credential ก่อนที่จะ fail over
ระบบ fallback ยังครอบคลุมงานเสริม (auxiliary tasks) อย่างอิสระด้วย - vision, compression, web extraction, และ session search แต่ละอย่างมี fallback chain ของตัวเองที่สามารถกำหนดค่าได้ผ่านส่วน config auxiliary.*
Compression and Persistence
When Compression Triggers
- Preflight (ก่อนเรียก API): หากการสนทนาเกิน 50% ของ context window ของ model
- Gateway auto-compression: หากการสนทนาเกิน 85% (เข้มงวดกว่า, ทำงานระหว่าง turn)
What Happens During Compression
- หน่วยความจำจะถูก flush ไปยัง disk ก่อน (ป้องกันข้อมูลสูญหาย)
- รอบการสนทนาตรงกลางจะถูกสรุปเป็น summary ที่กระชับ
- ข้อความ N ล่าสุดจะถูกเก็บรักษาไว้ครบถ้วน (
compression.protect_last_n, ค่าเริ่มต้น: 20) - คู่ข้อความ tool call/result จะถูกเก็บไว้ด้วยกัน (ห้ามแยก)
- จะมีการสร้าง session lineage ID ใหม่ (compression สร้าง "child" session)
Session Persistence
หลังจบแต่ละ turn:
- ข้อความจะถูกบันทึกใน session store (SQLite ผ่าน
hermes_state.py) - การเปลี่ยนแปลงหน่วยความจำจะถูก flush ไปยัง
MEMORY.md/USER.md - สามารถ resume session ภายหลังได้ผ่าน
/resumeหรือhermes chat --resume
Key Source Files
| File | Purpose |
|---|---|
run_agent.py | AIAgent class - agent loop ที่สมบูรณ์ (~10,700 lines) |
agent/prompt_builder.py | การประกอบ system prompt จาก memory, skills, context files, personality |
agent/context_engine.py | ContextEngine ABC - การจัดการ context แบบ pluggable |
agent/context_compressor.py | Default engine - lossy summarization algorithm |
agent/prompt_caching.py | Anthropic prompt caching markers และ cache metrics |
agent/auxiliary_client.py | Auxiliary LLM client สำหรับ side tasks (vision, summarization) |
model_tools.py | Tool schema collection, handle_function_call() dispatch |
Related Docs
- Provider Runtime Resolution
- Prompt Assembly
- Context Compression & Prompt Caching
- Tools Runtime
- Architecture Overview
📄 developer-guide/architecture.md
sidebar_position: 1 title: "Architecture" description: "Hermes Agent internals — major subsystems, execution paths, data flow, and where to read next"
Architecture
หน้านี้คือแผนที่ภาพรวมของระบบภายในของ Hermes Agent ใช้หน้านี้เพื่อทำความเข้าใจโครงสร้างโค้ดทั้งหมด จากนั้นจึงเจาะลึกเอกสารเฉพาะของแต่ละ subsystem เพื่อดูรายละเอียดการใช้งาน
System Overview
┌─────────────────────────────────────────────────────────────────────┐
│ Entry Points │
│ │
│ CLI (cli.py) Gateway (gateway/run.py) ACP (acp_adapter/) │
│ Batch Runner API Server Python Library │
└──────────┬──────────────┬───────────────────────┬───────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────────────────────────────────────────────────────────┐
│ AIAgent (run_agent.py) │
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Prompt │ │ Provider │ │ Tool │ │
│ │ Builder │ │ Resolution │ │ Dispatch │ │
│ │ (prompt_ │ │ (runtime_ │ │ (model_ │ │
│ │ builder.py) │ │ provider.py)│ │ tools.py) │ │
│ └──────┬───────┘ └──────┬───────┘ └──────┬───────┘ │
│ │ │ │ │
│ ┌──────┴───────┐ ┌──────┴───────┐ ┌──────┴───────┐ │
│ │ Compression │ │ 3 API Modes │ │ Tool Registry│ │
│ │ & Caching │ │ chat_compl. │ │ (registry.py)│ │
│ │ │ │ codex_resp. │ │ 47 tools │ │
│ │ │ │ anthropic │ │ 19 toolsets │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
│ │
▼ ▼
┌───────────────────┐ ┌──────────────────────┐
│ Session Storage │ │ Tool Backends │
│ (SQLite + FTS5) │ │ Terminal (6 backends) │
│ hermes_state.py │ │ Browser (5 backends) │
│ gateway/session.py│ │ Web (4 backends) │
└───────────────────┘ │ MCP (dynamic) │
│ File, Vision, etc. │
└──────────────────────┘Directory Structure
hermes-agent/
├── run_agent.py # AIAgent — core conversation loop (~10,700 lines)
├── cli.py # HermesCLI — interactive terminal UI (~10,000 lines)
├── model_tools.py # Tool discovery, schema collection, dispatch
├── toolsets.py # Tool groupings and platform presets
├── hermes_state.py # SQLite session/state database with FTS5
├── hermes_constants.py # HERMES_HOME, profile-aware paths
├── batch_runner.py # Batch trajectory generation
│
├── agent/ # Agent internals
│ ├── prompt_builder.py # System prompt assembly
│ ├── context_engine.py # ContextEngine ABC (pluggable)
│ ├── context_compressor.py # Default engine — lossy summarization
│ ├── prompt_caching.py # Anthropic prompt caching
│ ├── auxiliary_client.py # Auxiliary LLM for side tasks (vision, summarization)
│ ├── model_metadata.py # Model context lengths, token estimation
│ ├── models_dev.py # models.dev registry integration
│ ├── anthropic_adapter.py # Anthropic Messages API format conversion
│ ├── display.py # KawaiiSpinner, tool preview formatting
│ ├── skill_commands.py # Skill slash commands
│ ├── memory_manager.py # Memory manager orchestration
│ ├── memory_provider.py # Memory provider ABC
│ └── trajectory.py # Trajectory saving helpers
│
├── hermes_cli/ # CLI subcommands and setup
│ ├── main.py # Entry point — all `hermes` subcommands (~6,000 lines)
│ ├── config.py # DEFAULT_CONFIG, OPTIONAL_ENV_VARS, migration
│ ├── commands.py # COMMAND_REGISTRY — central slash command definitions
│ ├── auth.py # PROVIDER_REGISTRY, credential resolution
│ ├── runtime_provider.py # Provider → api_mode + credentials
│ ├── models.py # Model catalog, provider model lists
│ ├── model_switch.py # /model command logic (CLI + gateway shared)
│ ├── setup.py # Interactive setup wizard (~3,100 lines)
│ ├── skin_engine.py # CLI theming engine
│ ├── skills_config.py # hermes skills — enable/disable per platform
│ ├── skills_hub.py # /skills slash command
│ ├── tools_config.py # hermes tools — enable/disable per platform
│ ├── plugins.py # PluginManager — discovery, loading, hooks
│ ├── callbacks.py # Terminal callbacks (clarify, sudo, approval)
│ └── gateway.py # hermes gateway start/stop
│
├── tools/ # Tool implementations (one file per tool)
│ ├── registry.py # Central tool registry
│ ├── approval.py # Dangerous command detection
│ ├── terminal_tool.py # Terminal orchestration
│ ├── process_registry.py # Background process management
│ ├── file_tools.py # read_file, write_file, patch, search_files
│ ├── web_tools.py # web_search, web_extract
│ ├── browser_tool.py # 10 browser automation tools
│ ├── code_execution_tool.py # execute_code sandbox
│ ├── delegate_tool.py # Subagent delegation
│ ├── mcp_tool.py # MCP client (~2,200 lines)
│ ├── credential_files.py # File-based credential passthrough
│ ├── env_passthrough.py # Env var passthrough for sandboxes
│ ├── ansi_strip.py # ANSI escape stripping
│ └── environments/ # Terminal backends (local, docker, ssh, modal, daytona, singularity)
│
├── gateway/ # Messaging platform gateway
│ ├── run.py # GatewayRunner — message dispatch (~9,000 lines)
│ ├── session.py # SessionStore — conversation persistence
│ ├── delivery.py # Outbound message delivery
│ ├── pairing.py # DM pairing authorization
│ ├── hooks.py # Hook discovery and lifecycle events
│ ├── mirror.py # Cross-session message mirroring
│ ├── status.py # Token locks, profile-scoped process tracking
│ ├── builtin_hooks/ # Always-registered hooks
│ └── platforms/ # 18 adapters: telegram, discord, slack, whatsapp,
│ # signal, matrix, mattermost, email, sms,
│ # dingtalk, feishu, wecom, wecom_callback, weixin,
│ # bluebubbles, qqbot, homeassistant, webhook, api_server
│
├── acp_adapter/ # ACP server (VS Code / Zed / JetBrains)
├── cron/ # Scheduler (jobs.py, scheduler.py)
├── plugins/memory/ # Memory provider plugins
├── plugins/context_engine/ # Context engine plugins
├── environments/ # RL training environments (Atropos)
├── skills/ # Bundled skills (always available)
├── optional-skills/ # Official optional skills (install explicitly)
├── website/ # Docusaurus documentation site
└── tests/ # Pytest suite (~3,000+ tests)Data Flow
CLI Session
User input → HermesCLI.process_input()
→ AIAgent.run_conversation()
→ prompt_builder.build_system_prompt()
→ runtime_provider.resolve_runtime_provider()
→ API call (chat_completions / codex_responses / anthropic_messages)
→ tool_calls? → model_tools.handle_function_call() → loop
→ final response → display → save to SessionDBGateway Message
Platform event → Adapter.on_message() → MessageEvent
→ GatewayRunner._handle_message()
→ authorize user
→ resolve session key
→ create AIAgent with session history
→ AIAgent.run_conversation()
→ deliver response back through adapterCron Job
Scheduler tick → load due jobs from jobs.json
→ create fresh AIAgent (no history)
→ inject attached skills as context
→ run job prompt
→ deliver response to target platform
→ update job state and next_runRecommended Reading Order
หากคุณเป็นมือใหม่กับ codebase นี้:
- หน้านี้ - เพื่อทำความเข้าใจภาพรวม
- Agent Loop Internals - วิธีการทำงานของ AIAgent
- Prompt Assembly - การสร้าง system prompt
- Provider Runtime Resolution - วิธีการเลือก provider
- Adding Providers - คู่มือปฏิบัติในการเพิ่ม provider ใหม่
- Tools Runtime - tool registry, dispatch, environments
- Session Storage - สคีมา SQLite, FTS5, lineage ของ session
- Gateway Internals - gateway สำหรับ messaging platform
- Context Compression & Prompt Caching - การบีบอัดและการแคช prompt
- ACP Internals - การรวมระบบกับ IDE
- Environments, Benchmarks & Data Generation - การฝึก RL
Major Subsystems
Agent Loop
ระบบควบคุมการทำงานแบบ synchronous (AIAgent ใน run_agent.py) ทำหน้าที่จัดการการเลือก provider, การสร้าง prompt, การรัน tool, การลองใหม่ (retries), การสำรอง (fallback), callbacks, การบีบอัด (compression), และการบันทึกสถานะ (persistence) รองรับ 3 API modes สำหรับ backend provider ที่แตกต่างกัน
Prompt System
การสร้างและการบำรุงรักษา prompt ตลอดวงจรชีวิตของการสนทนา:
prompt_builder.py- รวบรวม system prompt จาก: บุคลิกภาพ (SOUL.md), หน่วยความจำ (MEMORY.md, USER.md), skills, ไฟล์ context (AGENTS.md, .hermes.md), คำแนะนำการใช้ tool, และคำสั่งเฉพาะของ modelprompt_caching.py- ใช้ Anthropic cache breakpoints สำหรับการแคช prefixcontext_compressor.py- สรุป conversation turns ตรงกลางเมื่อ context เกินขีดจำกัด
→ Prompt Assembly, Context Compression & Prompt Caching
Provider Resolution
ตัวแก้ runtime ที่ใช้ร่วมกันสำหรับ CLI, gateway, cron, ACP, และการเรียก auxiliary ทำหน้าที่จับคู่ tuple ของ (provider, model) ให้เป็น (api_mode, api_key, base_url) จัดการ provider มากกว่า 18 ตัว, flow ของ OAuth, pool ของ credential, และการแก้ไข alias
Tool System
tool registry ส่วนกลาง (tools/registry.py) ที่มี 47 tools ที่ลงทะเบียนไว้ใน 19 toolsets แต่ละไฟล์ tool จะลงทะเบียนตัวเองเมื่อมีการ import ระบบ registry จะจัดการการรวบรวม schema, dispatch, การตรวจสอบความพร้อมใช้งาน, และการห่อ error สำหรับ tool ที่ใช้ terminal รองรับ 6 backends (local, Docker, SSH, Daytona, Modal, Singularity)
Session Persistence
การจัดเก็บ session แบบ SQLite พร้อมด้วยการค้นหาข้อความเต็มรูปแบบ (FTS5) Sessions มีการติดตาม lineage (parent/child ข้ามการบีบอัด), การแยกส่วนตามแพลตฟอร์ม, และการเขียนแบบ atomic พร้อมการจัดการ contention
Messaging Gateway
กระบวนการที่ทำงานต่อเนื่อง (long-running process) ที่มี 18 platform adapters, การกำหนดเส้นทาง session แบบรวมศูนย์, การอนุญาตผู้ใช้ (allowlists + DM pairing), dispatch slash command, ระบบ hook, การนับ cron, และการบำรุงรักษาเบื้องหลัง
Plugin System
แหล่งค้นพบ 3 แหล่ง: ~/.hermes/plugins/ (ผู้ใช้), .hermes/plugins/ (โปรเจกต์), และ pip entry points Plugins จะลงทะเบียน tools, hooks, และ CLI commands ผ่าน context API มี plugin ชนิดพิเศษ 2 ประเภท: memory providers (plugins/memory/) และ context engines (plugins/context_engine/) ทั้งสองประเภทเป็นแบบ single-select - สามารถเปิดใช้งานได้เพียงตัวเดียวในแต่ละประเภท โดยกำหนดค่าผ่าน hermes plugins หรือ config.yaml
→ Plugin Guide, Memory Provider Plugin
Cron
งาน agent ระดับ first-class (ไม่ใช่งาน shell) Jobs จะจัดเก็บใน JSON, รองรับหลายรูปแบบการตั้งเวลา, สามารถแนบ skills และ scripts, และส่งผลลัพธ์ไปยัง platform ใดก็ได้
ACP Integration
เปิดเผย Hermes ให้เป็น agent แบบ native editor ผ่าน stdio/JSON-RPC สำหรับ VS Code, Zed, และ JetBrains
RL / Environments / Trajectories
เฟรมเวิร์กสภาพแวดล้อมเต็มรูปแบบสำหรับการประเมินและการฝึก RL ทำงานร่วมกับ Atropos, รองรับ multiple tool-call parsers, และสร้าง trajectories ในรูปแบบ ShareGPT
→ Environments, Benchmarks & Data Generation, Trajectories & Training Format
Design Principles
| Principle | What it means in practice |
|---|---|
| Prompt stability | System prompt doesn't change mid-conversation. No cache-breaking mutations except explicit user actions (/model). |
| Observable execution | Every tool call is visible to the user via callbacks. Progress updates in CLI (spinner) and gateway (chat messages). |
| Interruptible | API calls and tool execution can be cancelled mid-flight by user input or signals. |
| Platform-agnostic core | One AIAgent class serves CLI, gateway, ACP, batch, and API server. Platform differences live in the entry point, not the agent. |
| Loose coupling | Optional subsystems (MCP, plugins, memory providers, RL environments) use registry patterns and check_fn gating, not hard dependencies. |
| Profile isolation | Each profile (hermes -p <name>) gets its own HERMES_HOME, config, memory, sessions, and gateway PID. Multiple profiles run concurrently. |
File Dependency Chain
tools/registry.py (no deps — imported by all tool files)
↑
tools/*.py (each calls registry.register() at import time)
↑
model_tools.py (imports tools/registry + triggers tool discovery)
↑
run_agent.py, cli.py, batch_runner.py, environments/ห่วงโซ่นี้หมายความว่าการลงทะเบียน tool เกิดขึ้นเมื่อมีการ import ก่อนที่จะมีการสร้าง instance ของ agent ใดๆ ไฟล์ tools/*.py ใดๆ ที่มีการเรียก registry.register() ที่ระดับ top-level จะถูกค้นพบโดยอัตโนมัติ — ไม่จำเป็นต้องระบุรายการ import ด้วยตนเอง
extent analysis
TL;DR
The issue seems to be related to the Hermes Agent's architecture and implementation, but without a specific error message or problem description, it's challenging to provide a precise fix or workaround.
Guidance
To better understand and potentially resolve the issue, consider the following steps:
- Review the Hermes Agent documentation: Familiarize yourself with the agent's architecture, components, and execution flow to identify potential areas of concern.
- Check the code structure and dependencies: Ensure that the codebase follows the recommended structure and that all dependencies are properly installed and configured.
- Inspect the tool registry and plugins: Verify that the tool registry and plugins are correctly implemented and registered, as they play a crucial role in the agent's functionality.
- Examine the session persistence and gateway internals: Investigate the session persistence mechanism and gateway internals to ensure they are functioning as expected.
Example
Without a specific issue to address, it's difficult to provide a concrete code example. However, when working with the Hermes Agent, it's essential to follow the recommended coding practices and guidelines outlined in the documentation.
Notes
Given the complexity and scope of the Hermes Agent, it's crucial to approach any issues or modifications systematically, ensuring that changes are well-documented and tested to avoid introducing regressions or breaking existing functionality.
Recommendation
To proceed, it's recommended to:
- Consult the official Hermes Agent documentation for detailed information on the agent's architecture, components, and best practices for development and troubleshooting.
- Engage with the Hermes Agent community or support channels for guidance on specific issues or concerns related to the agent's implementation or customization.
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