mindtickle-core-workflow-b
FeaturedExecute 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
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
AI & Automation Featured
mindtickle-core-workflow-a
Execute MindTickle primary workflow: Training Content Management. Trigger: "mindtickle training content management", "primary mindtickle workflow".
2,266 Updated today
jeremylongshore AI & Automation Solid
mindtickle-readiness
Mindtickle sales readiness platform for skills assessment
1,034 Updated today
a5c-ai AI & Automation Solid
mindtickle-hello-world
Create a minimal working MindTickle example. Trigger: "mindtickle hello world", "mindtickle example", "test mindtickle".
2,266 Updated today
jeremylongshore AI & Automation Featured
mindtickle-ci-integration
Ci Integration for MindTickle. Trigger: "mindtickle ci integration".
2,266 Updated today
jeremylongshore AI & Automation Featured
mindtickle-prod-checklist
Prod Checklist for MindTickle. Trigger: "mindtickle prod checklist".
2,266 Updated today
jeremylongshore