mindtickle-core-workflow-a
Execute MindTickle primary workflow: Training Content Management. Trigger: "mindtickle training content management", "primary mindtickle workflow".
What this skill does
# MindTickle — Course & Module Management
## Overview
Primary workflow for MindTickle sales readiness integration. Covers end-to-end course
management: creating training modules with mixed content (video, quiz, document),
assigning courses to individuals or teams with due dates and reminders, tracking
completion and quiz scores via the analytics API, and updating modules as content
evolves. Uses the MindTickle REST API with API key authentication. All list endpoints
support cursor-based pagination for large organizations.
## Instructions
### Step 1: Create a Course with Modules
```typescript
const course = await client.courses.create({
title: 'Q2 Product Launch Readiness',
description: 'Everything your team needs to sell the new platform tier',
tags: ['product-launch', 'q2-2026'],
modules: [
{ title: 'Overview', type: 'video',
url: 'https://videos.example.com/q2-launch.mp4', duration_min: 12 },
{ title: 'Feature Deep Dive', type: 'document',
url: 'https://docs.example.com/q2-features.pdf' },
{ title: 'Knowledge Check', type: 'quiz', questions: [
{ text: 'What is the key differentiator?', type: 'multiple_choice',
options: ['Speed', 'Price', 'Integration'], correct: 2 },
{ text: 'Name one target persona.', type: 'free_text' },
]},
],
});
console.log(`Course created: ${course.id} with ${course.modules.length} modules`);
```
### Step 2: Assign Learners
```typescript
const assignment = await client.assignments.create({
course_id: course.id,
assignees: { type: 'team', team_ids: ['team_sales_west', 'team_sales_east'] },
due_date: '2026-06-01',
reminder: { enabled: true, days_before: [7, 3, 1] },
late_policy: 'allow_completion',
});
console.log(`Assigned to ${assignment.assignee_count} learners`);
```
### Step 3: Track Progress and Scores
```typescript
const progress = await client.analytics.courseProgress(course.id);
progress.users.forEach(u =>
console.log(`${u.name}: ${u.completion}% | Quiz: ${u.quiz_score ?? 'N/A'}`)
);
console.log(`Overall: ${progress.completion_rate}% | Avg score: ${progress.avg_score}`);
```
### Step 4: Update Module Content
```typescript
await client.modules.update(course.modules[0].id, {
url: 'https://videos.example.com/q2-launch-v2.mp4',
duration_min: 15,
});
console.log('Module updated — learners will see new content on next access');
```
## Error Handling
| Issue | Cause | Fix |
|-------|-------|-----|
| `401 Unauthorized` | Invalid or missing API key | Verify `X-Api-Key` header value |
| `404 Not Found` | Course or module ID invalid | Confirm IDs from create responses |
| `409 Conflict` | Duplicate course title in org | Use unique title or update existing |
| `422 Validation Error` | Quiz missing correct answer | Ensure every MC question has `correct` index |
| `429 Rate Limited` | Exceeds 60 req/min | Implement retry with `Retry-After` header |
## Output
A successful run creates a course with video, document, and quiz modules, assigns it
to sales teams with reminders, and reports completion rates and average quiz scores.
## Resources
- [MindTickle Platform Integrations](https://www.mindtickle.com/platform/integrations/)
- MindTickle API Reference
## Next Steps
Continue with `mindtickle-core-workflow-b` for coaching and role-play scenarios.
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.