mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-02-12 17:22:50 +00:00
Introduces .env file configuration to manage CLAUDE_CODE_MAX_TOKENS, allowing flexible control of the context window size for AI analysis sessions. This enables users to tune token limits based on their specific penetration testing needs without modifying code. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
353 B
Bash
6 lines
353 B
Bash
# CLAUDE_CODE_MAX_TOKENS controls the maximum token limit for Claude Code sessions
|
|
# This is used by the Claude Agent SDK to set the context window size for AI analysis
|
|
# Higher values allow for more comprehensive code analysis but consume more tokens
|
|
# Default: 64000 tokens (sufficient for most penetration testing tasks)
|
|
CLAUDE_CODE_MAX_TOKENS=64000
|