Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:May 6, 2026 at 13:29
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | mill-vscode |
| description | open VS Code in an active worktree, filtering out ones already open. |
Lists active worktrees that do not already have a VS Code window open in them, then prompts:
<Enter> — spawn a new task and open it1–N — open the listed worktree at that indexq — quit without launchingWhen every worktree is already open (filter empties the list), falls through to spawn-and-open — same as the zero-active-worktrees path.
Open-window detection is best-effort (Windows via Get-CimInstance Win32_Process, Linux via ps). On macOS or when the probe fails, all active worktrees are shown unfiltered.
--new — spawn a new task and open it without showing the existing-worktrees list. Mutually exclusive with --slug.--slug <slug> — open the worktree for slug <slug> without showing the picker.--list — print every active worktree without launching VS Code or applying the filter.uv run --project "${CLAUDE_PLUGIN_ROOT}" "${CLAUDE_PLUGIN_ROOT}/scripts/millpy-vscode.py" # default
uv run --project "${CLAUDE_PLUGIN_ROOT}" "${CLAUDE_PLUGIN_ROOT}/scripts/millpy-vscode.py" --new # spawn-and-open
uv run --project "${CLAUDE_PLUGIN_ROOT}" "${CLAUDE_PLUGIN_ROOT}/scripts/millpy-vscode.py" --slug <slug>
uv run --project "${CLAUDE_PLUGIN_ROOT}" "${CLAUDE_PLUGIN_ROOT}/scripts/millpy-vscode.py" --list