mindtickle-core-workflow-a

Featured

Execute 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

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 — 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