mindtickle-core-workflow-b
Execute MindTickle secondary workflow: Rep Performance & Readiness. Trigger: "mindtickle rep performance & readiness", "secondary mindtickle workflow".
What this skill does
# 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_days: [7, 3, 1],
notify: true,
});
console.log(`Assigned to ${assignment.total_reps} reps, due ${assignment.due_date}`);
```
### Step 3: Grade Submissions and Review Scores
```typescript
const submissions = await client.assessments.submissions(quiz.id, {
status: 'completed',
sort: 'score_desc',
});
submissions.items.forEach(s =>
console.log(`${s.rep_name}: ${s.score}% (${s.passed ? 'PASS' : 'FAIL'}) — attempt ${s.attempt}/${quiz.max_attempts}`)
);
const pending = submissions.items.filter(s => s.pending_review);
for (const sub of pending) {
await client.assessments.grade(quiz.id, sub.id, {
question_scores: [{ question_id: 'q3', score: 15, feedback: 'Missed compliance angle' }],
});
}
```
### Step 4: Export Score Analytics
```typescript
const analytics = await client.assessments.analytics(quiz.id, {
group_by: 'team',
metrics: ['avg_score', 'pass_rate', 'avg_completion_time'],
});
analytics.teams.forEach(t =>
console.log(`${t.team_name}: avg=${t.avg_score}%, pass_rate=${t.pass_rate}%, avg_time=${t.avg_minutes}m`)
);
```
## Error Handling
| Issue | Cause | Fix |
|-------|-------|-----|
| `401 Unauthorized` | Invalid or expired API token | Regenerate token in MindTickle admin |
| `404 Assessment not found` | Wrong quiz ID or deleted assessment | Verify with `client.assessments.list()` |
| `422 Invalid question format` | Missing required fields in question object | Include `type`, `text`, `correct`, and `points` |
| `409 Already submitted` | Rep exceeded max_attempts | Increase `max_attempts` or reset submission |
| `403 Assignment restricted` | Team not in the module's audience | Add team to module audience first |
## Output
A successful workflow creates a timed quiz with mixed question types, assigns it to
sales teams with automated reminders, grades submissions, and produces team-level
analytics showing pass rates, scores, and question difficulty breakdowns.
## Resources
- [MindTickle Platform Integrations](https://www.mindtickle.com/platform/integrations/)
## Next Steps
See `mindtickle-sdk-patterns` for authentication and webhook configuration.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.