Agent skill

mindtickle-core-workflow-b

Execute MindTickle secondary workflow: Rep Performance & Readiness. Trigger: "mindtickle rep performance & readiness", "secondary mindtickle workflow".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/mindtickle-pack/skills/mindtickle-core-workflow-b

SKILL.md

MindTickle — Rep Performance & Readiness

Overview

Secondary workflow complementing the primary workflow.

Instructions

Step 1: Get Readiness Scores

typescript
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}`)
);

Step 2: Analyze Call Performance

typescript
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}`);

Step 3: Generate Coaching Report

typescript
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}`);

Resources

Next Steps

See mindtickle-common-errors.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results