mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 16:25: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,12 @@
|
||||
export const LOCAL_MEMORY_RECALL_TOOL_NAME = 'LocalMemoryRecall'
|
||||
|
||||
/** Per-turn budget for full fetch payloads accumulated across multiple calls. */
|
||||
export const PER_TURN_FETCH_BUDGET_BYTES = 100 * 1024
|
||||
/** Single-entry preview cap (preview_only mode default = true). */
|
||||
export const PREVIEW_CAP_BYTES = 2 * 1024
|
||||
/** Single-entry full fetch cap. */
|
||||
export const FETCH_CAP_BYTES = 50 * 1024
|
||||
/** list_stores aggregate cap (for ~256 store names). */
|
||||
export const LIST_STORES_CAP_BYTES = 4 * 1024
|
||||
/** list_entries cap per store. */
|
||||
export const LIST_ENTRIES_CAP_BYTES = 8 * 1024
|
||||
Reference in New Issue
Block a user