Install
openclaw skills install openGeneral helper for opening things from the command line (files, folders, URLs, repositories, docs). Use when the user wants to quickly open something they me...
openclaw skills install openThis skill helps the agent suggest the right command or action to open things:
It does not actually execute the commands itself; it tells the user what to run.
Use this skill when the user says:
and you need to translate that intent into a concrete open action.
Prefer using start for most cases:
start .
start "C:\path\to\folder"
start "C:\path\to\file.txt"
start "https://clawhub.ai"
If the path might contain spaces, always wrap it in quotes.
If the user is on macOS, suggest:
open .
open /path/to/folder
open /path/to/file.txt
open "https://clawhub.ai"
If the user is on Linux with a desktop environment, suggest:
xdg-open .
xdg-open /path/to/folder
xdg-open /path/to/file.txt
xdg-open "https://clawhub.ai"
From the project root:
start .
open .
xdg-open .
If the user says “打开 logs/app.log”,assume it is relative to the project root:
start ".\logs\app.log"
(路径中有空格时同样加引号。)
When the user pastes or mentions a URL:
start "https://example.com"
open "https://example.com"
xdg-open "https://example.com"
If the user wants to “open the repo” visually:
Ensure you are in repo root, then:
start .
open .
xdg-open .