open

General helper for opening things from the command line (files, folders, URLs, repositories, docs). Use when the user wants to quickly open something they mentioned, and choose the right OS-specific command to launch it.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "open" with this command: npx skills add openlang-cn/open

Open Anything

This skill helps the agent suggest the right command or action to open things:

  • Files and folders on disk
  • URLs (web pages, docs, dashboards)
  • Git repositories in a file explorer
  • Logs, configs, or other local resources

It does not actually execute the commands itself; it tells the user what to run.

When to Use

Use this skill when the user says:

  • “打开某某文件 / 目录 / 日志”
  • “帮我打开这个链接 / 页面”
  • “想在资源管理器里打开这个项目 / 仓库”
  • “how do I open this from the terminal”

and you need to translate that intent into a concrete open action.

OS-specific Conventions

Windows(PowerShell / CMD)

Prefer using start for most cases:

  • Open a folder in Explorer
start .
start "C:\path\to\folder"
  • Open a specific file with its default app
start "C:\path\to\file.txt"
  • Open a URL in the default browser
start "https://clawhub.ai"

If the path might contain spaces, always wrap it in quotes.

macOS(for reference)

If the user is on macOS, suggest:

open .
open /path/to/folder
open /path/to/file.txt
open "https://clawhub.ai"

Linux(for reference)

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"

Common Patterns

Open the current project folder

From the project root:

  • Windows(PowerShell):
start .
  • macOS:
open .
  • Linux:
xdg-open .

Open a specific file mentioned by the user

If the user says “打开 logs/app.log”,assume it is relative to the project root:

  • Windows:
start ".\logs\app.log"

(路径中有空格时同样加引号。)

Open a URL from text

When the user pastes or mentions a URL:

  • Windows:
start "https://example.com"
  • macOS:
open "https://example.com"
  • Linux:
xdg-open "https://example.com"

Open a Git repo in Explorer / Finder

If the user wants to “open the repo” visually:

  • Ensure you are in repo root, then:

    • Windows:
    start .
    
    • macOS:
    open .
    
    • Linux:
    xdg-open .
    

Guidelines

  • Always respect the user’s OS:根据用户系统选择 Windows / macOS / Linux 命令。
  • Prefer non-destructive commands:只负责“打开”,不要顺带修改、删除任何东西。
  • Quote paths and URLs:凡是可能包含空格或特殊字符的路径与 URL,都加上引号。
  • Clarify ambiguity briefly:如果用户说“打开它”但上下文里有多个可能的目标,先用一句话确认你指的是哪一个,再给命令。

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Local Document AI OpenVINO

Parse local PDFs and document images with PaddleOCR-VL or PaddleOCR-VL-1.5 on OpenVINO, then route the structured parse into downstream document-to-data or d...

Registry SourceRecently Updated
General

Auto Study

Use when performing study tasks on browser-based platforms such as Yuketang, Xuexitong, Zhihuishu, and Pintia, including answering quizzes and page actions.

Registry SourceRecently Updated
General

宠物体态健康分析技能

Identifies obesity, emaciation, external injuries, skin abnormalities, and abnormal mental states, helping pet owners detect health issues promptly. | 宠物体态健康...

Registry SourceRecently Updated
General

confluence-publish

Publish, create, and update Confluence pages from HTML content.

Registry SourceRecently Updated
1890aeincx