From techsmith-pack
Automates Camtasia batch rendering, preset management, multi-format exports, and watermarking with PowerShell. For TechSmith video editing and screen capture automation.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin techsmith-packThis skill is limited to using the following tools:
Camtasia video editing automation: batch rendering, preset management, and template-based production.
Provides PowerShell patterns for Snagit COM API screen captures and Camtasia batch rendering. Use for TechSmith screen capture and video editing automation.
Generates walkthrough videos from Stitch app projects using Remotion, with smooth transitions, zooming, and text overlays on retrieved screens.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Share bugs, ideas, or general feedback.
Camtasia video editing automation: batch rendering, preset management, and template-based production.
$producer = "C:\Program Files\TechSmith\Camtasia 2025\CamtasiaProducer.exe"
& $producer /listpresets
# Common presets:
# - "MP4 - Smart Player (up to 1080p)"
# - "MP4 only (up to 1080p)"
# - "Audio Only (M4A)"
# - "Custom Production Settings"
$project = "C:\Projects\tutorial.tscproj"
$formats = @(
@{ Preset = "MP4 only (up to 1080p)"; Ext = "mp4" },
@{ Preset = "Audio Only (M4A)"; Ext = "m4a" }
)
foreach ($fmt in $formats) {
$output = "C:\Output\tutorial.$($fmt.Ext)"
& $producer /i "$project" /o "$output" /preset "$($fmt.Preset)"
Write-Host "Rendered: $output"
}
& $producer `
/i "C:\Projects\tutorial.tscproj" `
/o "C:\Output\branded.mp4" `
/preset "MP4 only (up to 1080p)" `
/watermark "C:\Assets\logo.png"
| Error | Cause | Solution |
|---|---|---|
| Invalid preset | Typo in preset name | Use /listpresets to verify |
| Render timeout | Long video | Increase timeout or use async |
| Missing media | Moved source files | Keep project and media together |
For common errors, see techsmith-common-errors.