From mindtickle-pack
Executes MindTickle workflow to fetch rep readiness scores, analyze call performance, and generate coaching reports via API client.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Secondary workflow complementing the primary workflow.
Secondary workflow complementing the primary workflow.
const readiness = await client.readiness.scores({
team_id: 'team_sales_west',
period: 'last_quarter'
});
readiness.reps.forEach(r =>
console.log(`${r.name}: ${r.readiness_score}/100 | Certifications: ${r.certs_complete}/${r.certs_total}`)
);
const calls = await client.callai.analyze({
rep_id: 'rep_123',
period: 'last_30_days'
});
console.log(`Calls: ${calls.total}`);
console.log(`Avg talk ratio: ${calls.avg_talk_ratio}%`);
console.log(`Key topics: ${calls.top_topics.join(', ')}`);
console.log(`Coaching opportunities: ${calls.coaching_flags.length}`);
const report = await client.reports.create({
type: 'coaching_summary',
rep_id: 'rep_123',
period: 'last_quarter',
include: ['readiness_trend', 'completion_gaps', 'call_analysis']
});
console.log(`Report URL: ${report.url}`);
See mindtickle-common-errors.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packCoach sales reps with call reviews, skill development plans, and role-play practice. Use this skill whenever a manager wants to coach a rep, a rep wants to improve their skills, someone asks for feedback on a sales conversation, needs help with a skill development plan, says "coach me on [skill]", "review my call", "how can I improve my close rate", "what should I work on", or when building a training curriculum. Also trigger when someone mentions sales training, rep development, ramp plans, or skill gaps.
Analyzes sales rep call transcripts from Fireflies/Fathom with CRM data from HubSpot/Salesforce/Pipedrive to produce graded performance reports, quotes, and coaching recommendations.
Queries Apollo sales data to generate formatted tables answering performance questions on emails, calls, meetings, tasks, opportunities, sequences, and conversation intelligence.