用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill mindtickle-cost-tuning命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Implement user sign-up and sign-in flows with Clerk. Use when building authentication UI, customizing sign-in experience, or implementing OAuth social login. Trigger with phrases like "clerk sign-in", "clerk sign-up", "clerk login flow", "clerk OAuth", "clerk social login".
Implement session management and middleware with Clerk. Use when managing user sessions, configuring route protection, or implementing token refresh and custom JWT templates. Trigger with phrases like "clerk session", "clerk middleware", "clerk route protection", "clerk token", "clerk JWT".
Configure enterprise SSO, role-based access control, and organization management. Use when implementing SSO integration, configuring role-based permissions, or setting up organization-level controls. Trigger with phrases like "clerk SSO", "clerk RBAC", "clerk enterprise", "clerk roles", "clerk permissions", "clerk organizations".
正在显示 SKILL.md
基于 SOC 职业分类
| name | mindtickle-cost-tuning |
| description | Cost Tuning for MindTickle. Trigger: "mindtickle cost tuning". |
| allowed-tools | Read, Write, Edit, Grep |
| version | 1.7.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","mindtickle","sales"] |
| compatibility | Designed for Claude Code |
MindTickle pricing is per-seat with costs driven by course content volume, quiz assessment frequency, and coaching session recordings. Each training module creation, quiz grading event, and call recording analysis consumes platform resources proportional to content complexity and learner count. For sales organizations onboarding hundreds of reps with dozens of active courses, unchecked content duplication and excessive assessment polling accumulate unnecessary spend. Consolidating content, optimizing assessment cadence, and right-sizing seat allocation are the highest-impact cost levers.
| Component | Cost Driver | Optimization |
|---|---|---|
| Seat licenses | Per-learner/month pricing | Deprovision churned reps within 7 days; audit quarterly |
| Course content | Storage and delivery per training module | Deduplicate content across programs; archive outdated courses |
| Quiz assessments | Grading compute per quiz submission | Reduce retake frequency; batch grade submissions |
| Call recordings | Storage and AI analysis per coaching session | Set retention policies; analyze only flagged calls |
| API integrations | Sync events with CRM/HRIS systems | Batch sync; use webhooks instead of polling |
class MindTickleContentOptimizer {
private contentCache = new Map<string, { data: any; expiry: number }>();
private syncTimestamps = new Map<string, number>();
async getCourseContent(courseId: string, fetchFn: () => Promise<any>): Promise<any> {
const cached = this.contentCache.get(courseId);
if (cached && Date.now() < cached.expiry) return cached.data;
const data = await fetchFn();
// Course content changes rarely — cache for 24 hours
this.contentCache.set(courseId, { data, expiry: Date.now() + 86_400_000 });
return data;
}
async incrementalUserSync(users: any[]): <[]> {
lastSync = ..() || ;
changed = users.( u. > lastSync);
..(, .());
.(changed);
}
(: []): <[]> {
batches = .({ : .(records. / ) },
records.(i * , i * + ));
.(batches.( (, {
: , : .(b)
})));
}
}
class MindTickleCostTracker {
private daily = { assessments: 0, syncs: 0, recordings: 0 };
private budgets = { assessments: 2000, syncs: 500, recordings: 100 };
record(type: 'assessments' | 'syncs' | 'recordings'): void {
this.daily[type]++;
const pct = (this.daily[type] / this.budgets[type]) * 100;
if (pct > 80) {
console.warn(`MindTickle ${type} at ${pct.toFixed(0)}%: ${this.daily[type]}/${this.budgets[type]}`);
}
}
getReport(): Record<string, { used: number; budget: number }> {
.(
.(.).( [k, {
: .[k keyof .],
: .[k keyof .]
}])
);
}
}
| Issue | Cause | Fix |
|---|---|---|
| Seat costs exceeding budget | Churned reps not deprovisioned | Automate deprovisioning via HRIS webhook on termination |
| Content storage bloat | Duplicate modules across programs | Deduplicate with shared content library; link instead of copy |
| Assessment grading delays | Burst of quiz submissions after training event | Queue submissions; batch grade in groups of 50 |
| Recording analysis costs spiking | Analyzing every coaching call | Filter to flagged calls only; set weekly analysis cap |
| CRM sync failures | Full sync overwhelming API rate limits | Switch to incremental sync with change timestamps |
See mindtickle-performance-tuning.