From hex-pack
Optimizes Hex costs through plan selection, run frequency tracking, result caching, and usage monitoring. Useful for billing analysis, API expense reduction, and budget alerts.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin hex-packThis skill is limited to using the following tools:
| Plan | Price | API Access | Scheduled Runs | Cron |
Optimizes Hex API performance using caching, parallel runs, adaptive polling, and batching for faster project lists, executions, and status polling in data analytics integrations.
Optimizes PostHog Cloud costs: tune autocapture and before_send sampling in posthog-js, filter bots, sample session recordings, audit events via API.
Tracks token usage and estimates costs for AI agent sessions. Use for monitoring spend, budget limits, or generating reports.
Share bugs, ideas, or general feedback.
| Plan | Price | API Access | Scheduled Runs | Cron |
|---|---|---|---|---|
| Free | $0 | No | No | No |
| Team | $28/user/mo | Admin API + Run | Yes | Yes |
| Enterprise | Custom | Full API | Yes | Yes |
// Track run frequency per project
const runTracker = new Map<string, number>();
function trackRun(projectId: string) {
runTracker.set(projectId, (runTracker.get(projectId) || 0) + 1);
}
// Report weekly
setInterval(() => {
for (const [id, count] of runTracker) console.log(`Project ${id}: ${count} runs`);
runTracker.clear();
}, 604800000);
Use updateCacheResult: true and read cached results instead of triggering new runs for unchanged data.