ssh_link

Create hard or symbolic links on POSIX-compliant remote hosts via SSH.

6|Updated Apr 17, 2026
One-click install
npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-link
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ssh_link
Source: https://github.com/Nightreaver/python-ssh-mcp/tree/main/skills/ssh-link
Command: npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-link

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill addresses the need for efficient link creation on remote hosts, providing a fast and secure method to create hard or symbolic links between files or directories.

Core Features & Use Cases

  • Hard and Symbolic Link Creation: The ability to create both hard and symbolic links on remote systems.
  • Efficiency for Large Files: Preferable for large files on the same volume, as it is O(1) compared to copying.
  • Use Case: Imagine you need to reference a build artifact across multiple directories without copying the file. Use this Skill to create a hard link to the artifact, ensuring fast access and no duplication of storage space.

Quick Start

Use the ssh_link skill to create a hard link from '/path/to/source' to '/path/to/destination' on 'remotehost.example.com'.

Frequently Asked Questions about ssh_link

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

FAQPage Schema
How do I create symbolic links on a remote host via SSH?

To create symbolic links on a remote host via SSH, this skill connects using SFTP capabilities to generate links across different filesystems while enforcing path security policies. It manages remote link creation without requiring local file copying.

When should I use hard links instead of copying large files on remote systems?

Use hard links for large files on the same volume when you need O(1) efficiency without duplicating storage space. Hard links provide fast access to build artifacts or data across multiple directories while avoiding the overhead of copying.

Can I create hard links across different filesystems on a POSIX-compliant remote host?

No, hard links cannot span different filesystems on POSIX-compliant hosts. You must use symbolic links instead to reference files or directories across filesystem boundaries on the remote system.

Do I need SFTP capabilities to create links on remote hosts?

Yes, SFTP capabilities are required to create links on remote hosts. The link creation process requires both standard SSH access and SFTP support to handle file operations securely on POSIX-compliant remote systems.

What security policies are enforced during remote link creation?

Path policies are enforced during remote link creation to ensure secure operations. This restricts where source and destination paths can be created, preventing unauthorized access to sensitive directories on the remote host.