transfer-skill-to-windows

Rewrite Unix-specific commands and paths into Windows-compatible PowerShell equivalents.

Updated Mar 12, 2026
One-click install
npx skills add https://github.com/iideas18/financial_plugin --skill transfer-skill-to-windows
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: transfer-skill-to-windows
Source: https://github.com/iideas18/financial_plugin/tree/main/transfer-skill-to-windows
Command: npx skills add https://github.com/iideas18/financial_plugin --skill transfer-skill-to-windows

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill adapts existing agent skills to function seamlessly on Windows, resolving compatibility issues with Unix-specific commands, paths, and scripting.

Core Features & Use Cases

  • Cross-Platform Adaptation: Converts Unix-centric skill logic (bash scripts, Unix paths) into Windows-compatible PowerShell equivalents.
  • Input Flexibility: Handles skills provided as either a directory path or a zip archive.
  • Use Case: You have a skill designed for Linux that uses rm -rf and grep. This Skill will rewrite those commands to Remove-Item -Recurse -Force and Select-String respectively, making the skill usable on a Windows machine.

Quick Start

Adapt the skill located at the provided folder path to ensure it runs correctly on Windows.

Frequently Asked Questions about transfer-skill-to-windows

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I make a Unix bash skill compatible with Windows?

To make a Unix bash skill compatible with Windows, you rewrite Unix-specific commands and paths into PowerShell equivalents. This process adapts shell scripts and file paths to ensure cross-platform behavior on Windows machines.

How do I convert Unix commands like rm and grep to PowerShell?

Converting Unix commands to PowerShell involves mapping bash utilities to Windows equivalents, replacing rm -rf with Remove-Item -Recurse -Force and grep with Select-String. This ensures script logic executes correctly on Windows.

Can I adapt a skill for Windows compatibility directly from a zip file?

Yes, you can adapt a skill for Windows compatibility directly from a zip file. The adaptation process accepts skills provided as either a directory path or a zip archive to identify and rewrite Unix-specific scripting logic.

What common issues are fixed when migrating scripts to Windows?

When migrating scripts to Windows, common issues fixed include Unix-specific shell commands, path separators, and file permissions. The process prioritizes PowerShell equivalents while preserving cross-platform behavior where feasible.

Does adapting a skill for Windows preserve its cross-platform behavior?

Adapting a skill for Windows preserves cross-platform behavior where feasible by prioritizing PowerShell equivalents. It targets Windows compatibility specifically, resolving Unix-specific paths and scripting logic without breaking general functionality.