Skip to content
Skillv1.0.0

techsmith-core-workflow-a

TechSmith core workflow a for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: "techsmith core workflow a".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-a/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill techsmith-core-workflow-a. Copyright stays with the author (MIT).

TechSmith Core Workflow A

Overview

Automated documentation pipeline: capture screenshots, annotate, and organize into guides.

Instructions

Step 1: Step Capture for Documentation

# Capture a series of screenshots for a step-by-step guide
function Invoke-StepCapture {
    param([string]$GuideDir, [int]$StepCount = 10)

    New-Item -ItemType Directory -Force -Path $GuideDir | Out-Null
    $capture = New-Object -ComObject Snagit.ImageCapture
    $capture.Input = 2  # Region
    $capture.Output = 2
    $capture.OutputImageFile.FileType = 3  # PNG
    $capture.OutputImageFile.Directory = $GuideDir

    for ($i = 1; $i -le $StepCount; $i++) {
        $capture.OutputImageFile.Filename = "step_$($i.ToString('00'))"
        Write-Host "Capture step $i -- select region..."
        $capture.Capture()
        Start-Sleep -Seconds 1
    }
}

Invoke-StepCapture -GuideDir "C:\Guides\setup-tutorial"

Step 2: Batch Annotate with Snagit

# Open captures in Snagit Editor for annotation
$editor = New-Object -ComObject Snagit.ImageCapture
$editor.Input = 5  # siiFile
$editor.Output = 2
$editor.EnablePreview = $true  # Opens in Snagit Editor for annotation

$files = Get-ChildItem "C:\Guides\setup-tutorial\*.png"
foreach ($file in $files) {
    $editor.InputRegionOptions.UseFile = $file.FullName
    $editor.Capture()
}

Error Handling

Error Cause Solution
Capture area wrong Region not selected Use Window capture for consistency
Files overwritten Same filename Timestamped naming pattern

Resources

Next Steps

For video workflows, see techsmith-core-workflow-b.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-cor-45685d/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-techsmith-cor-45685d.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-techsmith-cor-45685d",
  "kind": "skill",
  "name": "techsmith-core-workflow-a",
  "description": "TechSmith core workflow a for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: \"techsmith core workflow a\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "screen-capture",
      "video",
      "techsmith",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "TechSmith core workflow a for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: \"techsmith core workflow a\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-a/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-a/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/techsmith-pack/skills/techsmith-core-workflow-a/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(powershell:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# TechSmith Core Workflow A\n\n## Overview\n\nAutomated documentation pipeline: capture screenshots, annotate, and organize into guides.\n\n## Instructions\n\n### Step 1: Step Capture for Documentation\n\n```powershell\n# Capture a series of screenshots for a step-by-step guide\nfunction Invoke-StepCapture {\n    param([string]$GuideDir, [int]$StepCount = 10)\n\n    New-Item -ItemType Directory -Force -Path $GuideDir | Out-Null\n    $capture = New-Object -ComObject Snagit.ImageCapture\n    $capture.Input = 2  # Region\n    $capture.Output = 2\n    $capture.OutputImageFile.FileType = 3  # PNG\n    $capture.OutputI",
  "cost": {
    "context_tokens": 441
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-techsmith-cor-45685d/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.