From mindtickle-pack
Create a minimal working MindTickle example. Trigger: "mindtickle hello world", "mindtickle example", "test mindtickle".
npx claudepluginhub flight505/skill-forge --plugin mindtickle-packThis skill is limited to using the following tools:
Minimal working examples demonstrating core MindTickle API functionality.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Minimal working examples demonstrating core MindTickle API functionality.
const module = await client.modules.create({
title: 'Q1 Product Update Training',
type: 'course',
description: 'Learn about new product features for Q1',
tags: ['product', 'q1-2026'],
content: [
{ type: 'video', url: 'https://videos.example.com/q1-update.mp4', title: 'Overview' },
{ type: 'quiz', questions: [
{ text: 'What is the key new feature?', type: 'multiple_choice',
options: ['Feature A', 'Feature B', 'Feature C'], correct: 0 }
]}
]
});
console.log(`Module created: ${module.id}`);
await client.assignments.create({
module_id: module.id,
assignees: { type: 'team', team_ids: ['team_sales_west', 'team_sales_east'] },
due_date: '2026-04-15',
reminder: { enabled: true, days_before: [7, 3, 1] }
});
const progress = await client.analytics.moduleProgress(module.id);
progress.users.forEach(u =>
console.log(`${u.name}: ${u.completion}% | Score: ${u.quiz_score || 'N/A'}`)
);
console.log(`Overall: ${progress.completion_rate}% complete`);
| Error | Cause | Solution |
|---|---|---|
| Auth error | Invalid credentials | Check MINDTICKLE_API_KEY |
| Not found | Invalid endpoint | Verify API URL |
| Rate limit | Too many requests | Implement backoff |
See mindtickle-local-dev-loop.