- Created skills/ directory - Moved 272 skills to skills/ subfolder - Kept agents/ at root level - Kept installation scripts and docs at root level Repository structure: - skills/ - All 272 skills from skills.sh - agents/ - Agent definitions - *.sh, *.ps1 - Installation scripts - README.md, etc. - Documentation Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
421 B
JavaScript
10 lines
421 B
JavaScript
/**
|
|
* Autocompact buffer percentage.
|
|
*
|
|
* NOTE: This value (22.5% = 45k/200k) is empirically derived from community
|
|
* observations of Claude Code's autocompact behavior. It is NOT officially
|
|
* documented by Anthropic and may change in future Claude Code versions.
|
|
* If users report mismatches, this value may need adjustment.
|
|
*/
|
|
export const AUTOCOMPACT_BUFFER_PERCENT = 0.225;
|
|
//# sourceMappingURL=constants.js.map
|