docs: document Issue #2373 gateway stop command requirement

This commit is contained in:
曾文锋0668000834 2026-04-07 14:31:33 +08:00
parent 84edc462d6
commit 374e5cccf2

13
README_Issue_2373.md Normal file
View file

@ -0,0 +1,13 @@
# Issue #2373: Gateway不支持stop等命令
## Problem
gateway命令不支持stop子命令用户只能通过killall来停止但这会导致进程自动重启。
## Analysis
The gateway command implementation may be missing the stop subcommand handler.
## Recommended Fix
1. Add 'stop' subcommand to gateway command in cmd/picoclaw/internal/gateway/command.go
2. Implement graceful shutdown logic
3. Send signal to running gateway process to stop it
4. Handle PID file management if needed