mindtickle-core-workflow-b

Featured

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

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MindTickle — Quiz & Assessment ## Overview Create quizzes and assessments, grade submissions, and track scores across your sales enablement programs in MindTickle. Use this workflow when building certification exams, knowledge checks after training modules, or competency assessments that feed into rep readiness scores. This is the secondary workflow — for training content and course management, see `mindtickle-core-workflow-a`. ## Instructions ### Step 1: Create a Quiz with Question Bank ```typescript const quiz = await client.assessments.create({ title: 'Q2 Product Knowledge Certification', module_id: 'mod_product_q2', passing_score: 80, time_limit_minutes: 30, max_attempts: 2, questions: [ { type: 'multiple_choice', text: 'What is the primary use case for Feature X?', options: ['Analytics', 'Automation', 'Security', 'Compliance'], correct: 1, points: 10 }, { type: 'true_false', text: 'Feature Y supports SSO out of the box.', correct: true, points: 5 }, { type: 'open_ended', text: 'Describe how you would position Feature X to a CFO.', points: 20, rubric: 'Must mention ROI, time savings, and compliance' }, ], }); console.log(`Quiz ${quiz.id} created — ${quiz.questions.length} questions, pass=${quiz.passing_score}%`); ``` ### Step 2: Assign Quiz to a Team ```typescript const assignment = await client.assessments.assign(quiz.id, { team_ids: ['team_sales_west', 'team_sales_east'], due_date: '2026-04-20', reminder_d...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category