claude-code-templates 1.28.7 → 1.28.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.28.7",
3
+ "version": "1.28.8",
4
4
  "description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1777,9 +1777,8 @@
1777
1777
  recalculateModelPercentages();
1778
1778
  }
1779
1779
 
1780
- // Process tool queue gradually (max 3 tools per frame to avoid lag)
1781
- const toolsToProcessPerFrame = 3;
1782
- for (let i = 0; i < toolsToProcessPerFrame && toolQueue.length > 0; i++) {
1780
+ // Process tool queue gradually (1 tool every 5 frames = ~12 tools/second)
1781
+ if (frameCount % 5 === 0 && toolQueue.length > 0) {
1783
1782
  const { tool, count, color } = toolQueue.shift();
1784
1783
  const node = getOrCreateToolNode(tool, color);
1785
1784