mindtickle-core-workflow-a
FeaturedExecute MindTickle primary workflow: Training Content Management. Trigger: "mindtickle training content management", "primary 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 — 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...
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-b
Execute MindTickle secondary workflow: Rep Performance & Readiness. Trigger: "mindtickle rep performance & readiness", "secondary mindtickle workflow".
2,266 Updated today
jeremylongshore 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 Solid
mindtickle-readiness
Mindtickle sales readiness platform for skills assessment
1,034 Updated today
a5c-ai AI & Automation Featured
mindtickle-ci-integration
Ci Integration for MindTickle. Trigger: "mindtickle ci integration".
2,266 Updated today
jeremylongshore AI & Automation Featured
mindtickle-common-errors
Diagnose and fix MindTickle common errors. Trigger: "mindtickle error", "fix mindtickle", "debug mindtickle".
2,266 Updated today
jeremylongshore