# Symlink Maker

> Create symbolic links (symlinks) for files or directories.

- Skill: `afine907/symlink-maker` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add afine907/symlink-maker`
- Raw SKILL.md: https://api.skillmd.com/api/skills/afine907/symlink-maker/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: afine907 (https://skillmd.com/u/afine907)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/afine907/symlink-maker

---


# Symlink Maker

Creates symbolic links for files or directories. Cross-platform (Windows/macOS/Linux).


## Goal

Create symbolic links (symlinks) for files or directories.

## Workflow

```
输入 → 处理 → 输出
```
## Usage

Run the bundled script:

```bash
python <skill-dir>/scripts/create_link.py "<source>" "<link_path>"
```

- **source**: what the link points TO
- **link_path**: where the link is created

## Examples

```bash
# File symlink
python <skill-dir>/scripts/create_link.py "D:/project/config.json" "C:/Users/me/Desktop/config.json"

# Directory symlink
python <skill-dir>/scripts/create_link.py "D:/shared/assets" "D:/my-project/assets"
```

## Notes

- If source doesn't exist, warns about broken symlink before creating
- On Windows directories, uses junction (no admin needed)
- Always verify the result after creation

