/install browse-website
Browse Website
Use OpenObj to access any website's content. Pages are automatically crawled, converted to markdown, and mounted as a virtual filesystem you can explore with standard Unix commands.
Network Access
All commands in this skill require network access to openobj.com.
Use required_permissions: ["full_network"] for all SSH and curl commands (they need to reach openobj.com).
How to Use
Preferred: SSH exec mode (works in terminals with network access):
# required_permissions: ["full_network"]
ssh {domain}@openobj.com "{command}"
Fallback: HTTP API via curl (works in sandboxed environments):
# required_permissions: ["full_network"]
curl -s -X POST https://openobj.com/exec \
-H 'Content-Type: application/json' \
-d '{"site": "{domain}", "command": "{command}"}'
Important: If SSH fails due to sandbox restrictions, fall back to the curl HTTP API. Both methods return the same results.
Available Commands
| Command | Description |
|---|---|
find /site -type f |
List all indexed pages |
cat {path} |
Read a page's markdown content |
grep -rl '{term}' /site |
Find pages containing a term |
grep -r '{term}' /site |
Search with matching lines |
ls {path} |
List files in a directory |
head -n 20 {path} |
Read first N lines |
wc -l {path} |
Count lines in a file |
git log --oneline |
View crawl history |
git diff HEAD~1 |
See what changed in last crawl |
git show {hash} |
View a specific crawl's changes |
openobj rediscover |
Force a fresh re-crawl |
Examples
Via SSH
# required_permissions: ["full_network"]
ssh [email protected] "find /site -type f"
ssh [email protected] "grep -rl 'webhook' /site"
ssh [email protected] "cat /site/docs/webhooks.md"
# Change tracking
ssh [email protected] "cd /site && git log --oneline"
ssh [email protected] "cd /site && git diff HEAD~1"
# Force re-crawl and see what changed
ssh [email protected] "openobj rediscover && cd /site && git diff HEAD~1"
Via HTTP API (curl)
# required_permissions: ["full_network"]
# List all pages
curl -s -X POST https://openobj.com/exec \
-H 'Content-Type: application/json' \
-d '{"site": "docs.stripe.com", "command": "find /site -type f"}'
# Search for a term
curl -s -X POST https://openobj.com/exec \
-H 'Content-Type: application/json' \
-d '{"site": "docs.stripe.com", "command": "grep -rl webhook /site"}'
# Read a page
curl -s -X POST https://openobj.com/exec \
-H 'Content-Type: application/json' \
-d '{"site": "docs.stripe.com", "command": "cat /site/docs/webhooks.md"}'
Workflow
- Discover — Run
find /site -type fto see all available pages - Search — Use
grep -rl '{keyword}' /siteto find relevant pages - Read — Use
cat {path}to read the full content of a page - Refine — Use
grep -r '{term}' {path}to search within specific files - Track changes — Use
git logandgit diffto see what changed across crawls - Re-crawl — Use
openobj rediscoverto force a fresh crawl and update pages
Behavior
- First access to a domain triggers an automatic crawl (may take 10-30 seconds)
- Subsequent accesses use the cached version (refreshed every 24 hours)
- Use
openobj rediscoverto force a fresh crawl before the 24h window - Pages are converted from HTML to markdown automatically
- Up to 200 pages per site are indexed
- The virtual filesystem mirrors the site's URL structure
- Each crawl is tracked as a git commit for change diffing
Credits
- Crawling a new site or running
openobj rediscovercosts 1 credit per page - Reading cached content (
cat,grep,find,ls,git) is always free - Free accounts get 100 one-time credits
- If you get a credit limit error, do not retry — inform the user:
- To check credits:
ssh {any-domain}@openobj.com "openobj credits" - To upgrade: tell the user to run
ssh [email protected]in their terminal
- To check credits:
- Prefer reading cached sites over re-crawling to conserve credits
Response Format
The HTTP API returns JSON:
{
"stdout": "...",
"stderr": "...",
"exitCode": 0
}
Use the stdout field for the command output. A non-zero exitCode indicates an error.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install browse-website - 安装完成后,直接呼叫该 Skill 的名称或使用
/browse-website触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP 是什么?
Turn any website into a filesystem. Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix com... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 82 次。
如何安装 Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install browse-website」即可一键安装,无需额外配置。
Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP 是免费的吗?
是的,Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP 支持哪些平台?
Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Browse website - Crawls sites automatically and mounts pages as markdown files you can grep, diff, cat, and explore with standard Unix commands — over SSH or HTTP?
由 Bigmind(@bigmindai)开发并维护,当前版本 v1.0.0。