techsmith-install-auth
Install and configure TechSmith SDK/CLI authentication. Use when setting up a new TechSmith integration, configuring API keys, or initializing TechSmith in your project. Trigger with phrases like "install techsmith", "setup techsmith", "techsmith auth", "configure techsmith API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
techsmith-pack
Claude Code skill pack for TechSmith (18 skills)
Installation
This skill is included in the techsmith-pack plugin:
/plugin install techsmith-pack@claude-code-plugins-plus
Click to copy
Instructions
TechSmith Install & Auth
Overview
Set up TechSmith SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- TechSmith account with API access
- API key from TechSmith dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @techsmith/sdk
# Python
pip install techsmith
Step 2: Configure Authentication
# Set environment variable
export TECHSMITH_API_KEY="your-api-key"
# Or create .env file
echo 'TECHSMITH_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in TechSmith dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.techsmith.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { TechSmithClient } from '@techsmith/sdk';
const client = new TechSmithClient({
apiKey: process.env.TECHSMITH_API_KEY,
});
Python Setup
from techsmith import TechSmithClient
client = TechSmithClient(
api_key=os.environ.get('TECHSMITH_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to techsmith-hello-world for your first API call.