From mindtickle-pack
Install and configure MindTickle SDK/API authentication. Use when setting up a new MindTickle integration. Trigger: "install mindtickle", "setup mindtickle", "mindtickle auth".
npx claudepluginhub flight505/skill-forge --plugin mindtickle-packThis skill is limited to using the following tools:
Set up MindTickle API for sales readiness, training content management, and rep performance analytics.
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.
Set up MindTickle API for sales readiness, training content management, and rep performance analytics.
npm install @mindtickle/sdk
# API key from MindTickle Admin > Integrations > API
export MINDTICKLE_API_KEY="your-api-key-here"
echo 'MINDTICKLE_API_KEY=your-api-key' >> .env
import { MindTickleClient } from '@mindtickle/sdk';
const client = new MindTickleClient({ apiKey: process.env.MINDTICKLE_API_KEY });
const users = await client.users.list({ limit: 5 });
console.log(`Found ${users.total} users`);
import mindtickle
client = mindtickle.Client(api_key=os.environ['MINDTICKLE_API_KEY'])
users = client.users.list(limit=5)
print(f'Found {users.total} users')
| Error | Code | Solution |
|---|---|---|
| Invalid API key | 401 | Verify credentials in dashboard |
| Permission denied | 403 | Check API scopes/permissions |
| Rate limited | 429 | Implement backoff |
After auth, proceed to mindtickle-hello-world.