From mindtickle-pack
Executes MindTickle workflow to fetch rep readiness scores, analyze call performance, and generate coaching reports via API client.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
Secondary workflow complementing the primary workflow.
Facilitates structured call review sessions with agendas, scorecards, templates, and action trackers. Useful for sales coaching, peer reviews, and asynchronous breakdowns.
Generates role-play scenarios, coaching microsites, decks, and quizzes for sales deals using Resonate → Elevate → Compel methodology grounded in Octave library. Useful for deal coaching requests.
Creates MindTickle training modules with video/quiz content, assigns to sales teams, and tracks completion using TypeScript API client. For sales enablement integrations.
Share bugs, ideas, or general feedback.
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.