autoglm-open-link/SKILL.md
使用 AutoGLM Open Link 接口打开指定网页并提取页面正文内容。当用户需要读取某个网页详情、提取文章全文、抓取页面正文做摘要或分析时使用此 skill。 Token 通过本地服务 http://127.0.0.1:53699/get_token 自动获取,无需手动配置环境变量。
npx skillsauth add gula00/autoclaw-skills autoglm-open-linkInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
根据用户提供的网页 URL,调用 AutoGLM Open Link API 获取页面详细正文内容,适合后续做摘要、信息抽取或深度分析。
| 项目 | 内容 |
|------|------|
| 地址 | https://autoglm-api.zhipuai.cn/agentdr/v1/assistant/skills/open-link |
| 方式 | POST |
| 请求体 | {"url": "<页面链接>"} |
| 返回 | data.text → 页面正文内容 |
脚本启动时会先向本地服务发起 HTTP GET 请求获取 token:
| 项目 | 内容 |
|------|------|
| 地址 | http://127.0.0.1:53699/get_token |
| 方式 | GET |
| 返回 | Bearer xxx(直接作为 Authorization 头使用) |
若返回值不含
Bearer前缀,脚本会自动补全。
签名 Headers(每次动态生成):
X-Auth-Appid: 100003X-Auth-TimeStamp: 当前秒级 Unix 时间戳X-Auth-Sign: MD5(100003 + "&" + timestamp + "&" + AUTOGLM_APP_KEY)使用同目录下的 open-link.py:
python open-link.py "https://example.com"
{
"code": 0,
"msg": "SUCCESS",
"data": {
"text": "页面正文内容"
}
}
data.text 作为页面正文。development
Use when you have a spec or requirements for a multi-step task, before touching code
tools
Extract frames or short clips from videos using ffmpeg.
development
UI/UX design intelligence and implementation guidance for building polished interfaces. Use when the user asks for UI design, UX flows, information architecture, visual style direction, design systems/tokens, component specs, copy/microcopy, accessibility, or to generate/critique/refine frontend UI (HTML/CSS/JS, React, Next.js, Vue, Svelte, Tailwind). Includes workflows for (1) generating new UI layouts and styling, (2) improving existing UI/UX, (3) producing design-system tokens and component guidelines, and (4) turning UX recommendations into concrete code changes.
tools
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.