Agent skill

mindtickle-hello-world

Create a minimal working MindTickle example. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill mindtickle-hello-world --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.7.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code
Path: plugins/saas-packs/mindtickle-pack/skills/mindtickle-hello-world/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# MindTickle Hello World ## Overview Minimal working examples demonstrating core MindTickle API functionality. ## Instructions ### Step 1: Create Training Module ```typescript 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}`); ``` ### Step 2: Assign to Sales Reps ```typescript 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] } }); ``` ### Step 3: Track Completion ```typescript 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

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Step 1: Create Training Module
  4. Step 2: Assign to Sales Reps
  5. Step 3: Track Completion
  6. Error Handling
  7. Resources
  8. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the mindtickle-hello-world skill do?

Create a minimal working MindTickle example. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill mindtickle-hello-world --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going