← Browse

@jeremylongshore/techsmith-local-dev-loop

A

'TechSmith local dev loop for Snagit COM API and Camtasia automation.

skillclaude

Install

agr install @jeremylongshore/techsmith-local-dev-loop --target claude

Writes 1 file into .claude/skills/, pinned to git-503332fb.

  • .claude/skills/techsmith-local-dev-loop/SKILL.md

Document


name: techsmith-local-dev-loop description: 'TechSmith local dev loop for Snagit COM API and Camtasia automation.

Use when working with TechSmith screen capture and video editing automation.

Trigger: "techsmith local dev loop".

' allowed-tools: Read, Write, Edit, Bash(powershell:*), Grep version: 1.3.0 license: MIT author: Jeremy Longshore jeremy@intentsolutions.io tags:

  • saas
  • screen-capture
  • video
  • techsmith compatibility: Designed for Claude Code

TechSmith Local Dev Loop

Overview

Set up a development workflow for TechSmith automation scripts with PowerShell testing.

Instructions

Step 1: Project Structure

techsmith-automation/
├── scripts/
│   ├── capture-screenshot.ps1
│   ├── batch-render.ps1
│   └── capture-video.ps1
├── tests/
│   └── test-com-connection.ps1
├── output/
└── templates/
    └── camtasia-presets/

Step 2: Test COM Connection

# tests/test-com-connection.ps1
Describe "Snagit COM Server" {
    It "Should create ImageCapture object" {
        $capture = New-Object -ComObject Snagit.ImageCapture
        $capture | Should -Not -BeNullOrEmpty
    }

    It "Should create VideoCapture object" {
        $video = New-Object -ComObject Snagit.VideoCapture
        $video | Should -Not -BeNullOrEmpty
    }
}

Step 3: Run Tests with Pester

Install-Module -Name Pester -Force -SkipPublisherCheck
Invoke-Pester ./tests/ -Output Detailed

Error Handling

ErrorCauseSolution
COM not availableSnagit not installedInstall Snagit on dev machine
Pester not foundModule missingInstall-Module Pester

Resources

Next Steps

Proceed to techsmith-sdk-patterns.

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-503332fb970a2026-07-31