From mindtickle-pack
Manages MindTickle training content: creates modules, assigns to sales teams, and tracks completion progress.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-core-workflow-aThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Primary workflow for MindTickle integration.
Primary workflow for MindTickle integration.
const module = await client.modules.create({
title: 'Q1 Product Update Training',
type: 'course',
description: 'Learn about new product features for Q1',
tags: ['product', 'q1-2026'],
content: [
{ type: 'video', url: 'https://videos.example.com/q1-update.mp4', title: 'Overview' },
{ type: 'quiz', questions: [
{ text: 'What is the key new feature?', type: 'multiple_choice',
options: ['Feature A', 'Feature B', 'Feature C'], correct: 0 }
]}
]
});
console.log(`Module created: ${module.id}`);
await client.assignments.create({
module_id: module.id,
assignees: { type: 'team', team_ids: ['team_sales_west', 'team_sales_east'] },
due_date: '2026-04-15',
reminder: { enabled: true, days_before: [7, 3, 1] }
});
const progress = await client.analytics.moduleProgress(module.id);
progress.users.forEach(u =>
console.log(`${u.name}: ${u.completion}% | Score: ${u.quiz_score || 'N/A'}`)
);
console.log(`Overall: ${progress.completion_rate}% complete`);
See mindtickle-core-workflow-b.
2plugins reuse this skill
First indexed Jul 17, 2026
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin mindtickle-packExecute MindTickle primary workflow: Training Content Management. Trigger: "mindtickle training content management", "primary mindtickle workflow".
Manages KnowBe4 security awareness training campaigns: create assignments, track enrollment/completion, browse content library, handle store purchases, and monitor compliance deadlines.
Creates a self-contained, interactive slide lesson for new sales reps to learn the full go-to-market: what they sell, who they sell to, positioning, competitors, and proof, with checkpoint questions.