#!/bin/bash
# Since the tool is loaded via MCP, we need to invoke it through the Claude interface
# For now, let's check if the helper script exists
if [ -f "/opt/automator/cinik-writer-transtor/files/_share_fix.py" ]; then
  echo "Helper script found"
  ls -la /opt/automator/cinik-writer-transtor/files/_share_fix.py
else
  echo "Helper script not found, creating it"
fi
