forked from linuz90/claude-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbunfig.toml
More file actions
22 lines (21 loc) · 1.02 KB
/
Copy pathbunfig.toml
File metadata and controls
22 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[test]
preload = ["./test-preload.ts"]
[install]
# 7-day quarantine for third-party deps (supply-chain gate).
# Anthropic Agent SDK stack exempt: trusted publisher, and the bot should run the newest
# engine. A new built-in tool no longer needs a test to catch it — the gate defaults to deny,
# so `evaluateToolUse` refuses any name outside ALLOWED_BUILTIN_TOOLS. The exemption now buys
# early sight of the surface instead: the SDK's manifest.json pins the CLI, so taking the bump
# promptly is what lets the release probe read the new tools before they matter.
minimumReleaseAge = 604800
minimumReleaseAgeExcludes = [
"@anthropic-ai/claude-agent-sdk",
"@anthropic-ai/claude-agent-sdk-darwin-arm64",
"@anthropic-ai/claude-agent-sdk-darwin-x64",
"@anthropic-ai/claude-agent-sdk-linux-arm64",
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl",
"@anthropic-ai/claude-agent-sdk-linux-x64",
"@anthropic-ai/claude-agent-sdk-linux-x64-musl",
"@anthropic-ai/claude-agent-sdk-win32-arm64",
"@anthropic-ai/claude-agent-sdk-win32-x64",
]