From mindtickle-pack
Executes MindTickle secondary workflow to retrieve rep readiness scores, analyze call performance via CallAI, and generate coaching reports.
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 ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin mindtickle-pack2plugins reuse this skill
First indexed Jul 17, 2026
Coach 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.
Execute MindTickle secondary workflow: Rep Performance & Readiness. Trigger: "mindtickle rep performance & readiness", "secondary mindtickle workflow".
Analyzes sales rep call transcripts from Fireflies/Fathom with CRM data from HubSpot/Salesforce/Pipedrive to produce graded performance reports, quotes, and coaching recommendations.