Source profileQuality 74/100Review permissions

affaan-m/ECC/skills/visa-doc-translate/SKILL.md

visa-doc-translate

Translate visa application documents (images) to English and create a bilingual PDF with original and translation

Source repository stars
234,327
Declared platforms
0
Static risk flags
2
Last source update
2026-07-27
Source checked
2026-07-28

Decision brief

What it does—and where it fits

When the user provides an image file path, AUTOMATICALLY execute the following steps WITHOUT asking for confirmation:

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/affaan-m/ECC --skill "skills/visa-doc-translate"
    Safe inspection promptEditorial

    Inspect the Agent Skill "visa-doc-translate" from https://github.com/affaan-m/ECC/blob/4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38/skills/visa-doc-translate/SKILL.md at commit 4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Instructions

      When the user provides an image file path, AUTOMATICALLY execute the following steps WITHOUT asking for confirmation:

      Image Conversion: If the file is HEIC, convert it to PNG using sips -s format png --outImage Rotation:Check EXIF orientation data
    2. 02

      Technical Implementation

      1. macOS Vision Framework (macOS only):

      macOS Vision Framework (macOS only):EasyOCR (cross-platform):Tesseract OCR (if available):
    3. 03

      Example Usage

      Review the “Example Usage” section in the pinned source before continuing.

      Review and apply the “Example Usage” source section.
    4. 04

      Supported Documents

      Bank deposit certificates (存款证明)

      Bank deposit certificates (存款证明)Income certificates (收入证明)Employment certificates (在职证明)

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 39

    The documentation asks the agent to run terminal commands or scripts.

    Execute the script to generate the PDF

    Writes files

    medium · line 41

    The documentation asks the agent to create, modify, or delete local files.

    **Output**: Create a PDF file named `<original_filename>_Translated.pdf` in the same directory

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score74/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars234,327SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    affaan-m/ECC
    Skill path
    skills/visa-doc-translate/SKILL.md
    Commit
    4e973d3eaf92d97f8d2e2d8abb39d8bdc8711b38
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    You are helping translate visa application documents for visa applications.

    Instructions

    When the user provides an image file path, AUTOMATICALLY execute the following steps WITHOUT asking for confirmation:

    1. Image Conversion: If the file is HEIC, convert it to PNG using sips -s format png <input> --out <output>

    2. Image Rotation:

      • Check EXIF orientation data
      • Automatically rotate the image based on EXIF data
      • If EXIF orientation is 6, rotate 90 degrees counterclockwise
      • Apply additional rotation as needed (test 180 degrees if document appears upside down)
    3. OCR Text Extraction:

      • Try multiple OCR methods automatically:
        • macOS Vision framework (preferred for macOS)
        • EasyOCR (cross-platform, no tesseract required)
        • Tesseract OCR (if available)
      • Extract all text information from the document
      • Identify document type (deposit certificate, employment certificate, retirement certificate, etc.)
    4. Translation:

      • Translate all text content to English professionally
      • Maintain the original document structure and format
      • Use professional terminology appropriate for visa applications
      • Keep proper names in original language with English in parentheses
      • For Chinese names, use pinyin format (e.g., WU Zhengye)
      • Preserve all numbers, dates, and amounts accurately
    5. PDF Generation:

      • Create a Python script using PIL and reportlab libraries
      • Page 1: Display the rotated original image, centered and scaled to fit A4 page
      • Page 2: Display the English translation with proper formatting:
        • Title centered and bold
        • Content left-aligned with appropriate spacing
        • Professional layout suitable for official documents
      • Add a note at the bottom: "This is a certified English translation of the original document"
      • Execute the script to generate the PDF
    6. Output: Create a PDF file named <original_filename>_Translated.pdf in the same directory

    Supported Documents

    • Bank deposit certificates (存款证明)
    • Income certificates (收入证明)
    • Employment certificates (在职证明)
    • Retirement certificates (退休证明)
    • Property certificates (房产证明)
    • Business licenses (营业执照)
    • ID cards and passports
    • Other official documents

    Technical Implementation

    OCR Methods (tried in order)

    1. macOS Vision Framework (macOS only):

      import Vision
      from Foundation import NSURL
      
    2. EasyOCR (cross-platform):

      pip install easyocr
      
    3. Tesseract OCR (if available):

      brew install tesseract tesseract-lang
      pip install pytesseract
      

    Required Python Libraries

    pip install pillow reportlab
    

    For macOS Vision framework:

    pip install pyobjc-framework-Vision pyobjc-framework-Quartz
    

    Important Guidelines

    • DO NOT ask for user confirmation at each step
    • Automatically determine the best rotation angle
    • Try multiple OCR methods if one fails
    • Ensure all numbers, dates, and amounts are accurately translated
    • Use clean, professional formatting
    • Complete the entire process and report the final PDF location

    Example Usage

    /visa-doc-translate RetirementCertificate.PNG
    /visa-doc-translate BankStatement.HEIC
    /visa-doc-translate EmploymentLetter.jpg
    

    Output Example

    The skill will:

    1. Extract text using available OCR method
    2. Translate to professional English
    3. Generate <filename>_Translated.pdf with:
      • Page 1: Original document image
      • Page 2: Professional English translation

    Perfect for visa applications to Australia, USA, Canada, UK, and other countries requiring translated documents.

    Alternatives

    Compare before choosing