ben7am1n/dsh-webhook-bridge ↗★ 1
dsh-webhook-bridge
Generic webhook receiver for DeepSeek Harness — POST to a local endpoint to wake a dsh agent.
AI 分析
核心用途是实现外部系统与 DSH 代理的自动化联动。适合需要通过 CI/CD 流程、监控告警或其他第三方服务触发 AI 任务的自动化集成场景。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ben7am1n/dsh-webhook-bridgeドキュメント
README 全文を読む ↗Configuration
All keys live under the dsh-webhook-bridge row's config:
| Key | Type | Default | Meaning |
|---|---|---|---|
host | string | 127.0.0.1 | Bind host. Loopback only by default; bind 0.0.0.0 only behind a firewall/proxy. |
port | number | 8788 | Bind port. |
secret | string | env DSH_WEBHOOK_SECRET | Required in Authorization: Bearer . Empty = every request rejected. |
provider | string | — | Provider route for created agents (falls back to profile default). |
model | string | — | Model for created agents (falls back to profile default). |
cwd | string | process.cwd() | Working directory for created agent sessions. |
maxBodyBytes | number | 1048576 | Request body limit; larger bodies get 413. |