My Browser Control

基于Python实现的macOS浏览器自动化工具,可一键打开指定网址,支持Safari/Chrome浏览器。

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 322 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (macOS browser automation to open URLs) align with the included code and skill.json entry point. The Python script uses the standard library webbrowser module to open URLs in the default browser, which is consistent with the stated functionality.
Instruction Scope
SKILL.md and the code are largely consistent, but SKILL.md initially states the function returns no value while open_website() actually returns a JSON-like dict and prints it when run as __main__. This is a minor documentation mismatch but not a security concern. The instructions do not ask the agent to read files, env vars, or exfiltrate data; they only open a URL in the browser.
Install Mechanism
There is no install specification and no external downloads. The skill is instruction-only with a single local Python file that uses only standard-library modules, which is low risk.
Credentials
The skill requests no environment variables, credentials, or config paths. The declared dependencies are standard-library modules (webbrowser, sys, re) and do not require secrets or external service access.
Persistence & Privilege
always is false and the skill does not request any special persistent privileges or modify other skills. It can be invoked by the agent, which is the normal behavior; note that autonomous invocation would allow it to open URLs without the user's manual trigger.
Assessment
This skill appears to do only what it says: open a provided URL in your macOS default browser. Before installing, consider: (1) the agent (if allowed autonomous invocation) could open URLs automatically — only enable autonomous use if you trust the agent's behavior; (2) opening untrusted URLs can expose you to phishing/malicious pages, so only pass trusted URLs or names; (3) minor documentation inconsistencies exist (return value vs. docs) and skill.json version differs from other files, but these are not security-critical. The skill does not request credentials or perform network exfiltration.

Like a lobster shell, security has layers — review code before you run it.

Current versionv0.1.4
Download zip
automationvk973s15ffk9xk1r2hse0ce9a1982dpxcbrowservk973s15ffk9xk1r2hse0ce9a1982dpxclatestvk973tg75277m5en92zqhhjv9rd82cphfmacosvk973s15ffk9xk1r2hse0ce9a1982dpxc

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

我的浏览器控制工具

本工具专为macOS用户开发,核心功能是通过Python脚本自动打开指定网址,无需手动输入网址或点击浏览器。

核心功能说明

1. 一键打开网址功能

  • 函数名:open_website
  • 入参:url(字符串类型,必填,例如:"https://www.baidu.com")
  • 返回值:无(直接触发浏览器打开操作)
  • 实际代码(来自open_website.py):
    import webbrowser
    def open_website(url):
        # 调用macOS默认浏览器打开网址
        webbrowser.open(url)
        print(f"已成功打开网址:{url}")
    

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…