mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 00:05:51 +00:00
feat: 添加 LocalMemoryRecallTool 和 VaultHttpFetchTool
- LocalMemoryRecallTool: 跨会话本地笔记召回,权限门控,大小限制 - VaultHttpFetchTool: 使用 vault 密钥的认证 HTTP 请求,ACL 规则 - agentToolFilter: 子 agent 工具继承过滤层 - ALL_AGENT_DISALLOWED_TOOLS 白名单更新 Co-Authored-By: glm-5-turbo <zai-org@claude-code-best.win>
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export const VAULT_HTTP_FETCH_TOOL_NAME = 'VaultHttpFetch'
|
||||
|
||||
/** HTTP request response body cap (1 MB) — matches axios maxContentLength. */
|
||||
export const RESPONSE_BODY_CAP_BYTES = 1_048_576
|
||||
/** Per-request timeout. */
|
||||
export const REQUEST_TIMEOUT_MS = 30_000
|
||||
Reference in New Issue
Block a user