From linktree-pack
Optimizes Linktree API costs through caching, batching, tier selection, and usage monitoring. Activated via 'linktree cost tuning'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-cost-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. Cache frequent API calls
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`Linktree API calls today: ${totalCalls}`);
return fn();
}
See linktree-reference-architecture.
2plugins reuse this skill
First indexed Jul 17, 2026
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin linktree-packCost Tuning for Linktree. Trigger: "linktree cost tuning".
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.