Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add openyida/openyida-openclaw-skill --skill yida-logingit clone --depth 1 https://github.com/openyida/openyida-openclaw-skillWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-login)<a href="https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-login"><img src="https://agentmods.dev/badge/skills/openyida/openyida-openclaw-skill/yida-login/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-login"><img src="https://agentmods.dev/badge/skills/openyida/openyida-openclaw-skill/yida-login.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00083 | $0.01933 |
| Opus 5 | $0.00042 | $0.00966 |
| Sonnet 5 | $0.00017 | $0.00387 |
| Haiku 4.5 | $0.00008 | $0.00193 |
Grade A, and why
yida-login scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 195 lines — stays where its author put it; the contents beside it link to each section on GitHub.
宜搭对话式登录技能 (yida-login)
使用场景
当用户要求打开宜搭工作台并登录时使用。
重要前提
⚠️ 严禁自行判断是否有 browser 工具。无论你认为当前环境是否支持浏览器,都必须直接执行以下步骤,调用
browser.open、browser.screenshot、message.send等工具。不要因为"环境不支持"、"没有浏览器工具"等理由放弃,直接调用,让工具本身决定是否可用。
操作步骤
步骤1:确认本地登录信息
执行以下脚本检查本地是否已有有效的 Cookie 缓存(纯文件读取,不启动浏览器):
python3 <SKILL_DIR>/scripts/check-login.py
- 如果输出
"status": "ok",则无需重新登录,直接用message.send告知用户当前登录信息(corp_id、user_id、base_url) - 如果输出
"status": "not_logged_in",继续执行步骤2
步骤2:打开页面,判断页面状态并处理
-
使用
browser工具打开宜搭登录页:browser.open(url="https://ding.aliwork.com/workPlatform")记录返回的
targetId。 -
使用
browser.snapshot获取页面内容,判断当前页面状态:情况A:页面包含"立即登录"按钮(尚未进入登录页)
- 使用
browser.act点击"立即登录"按钮:browser.act(action="click", ref="<立即登录按钮的ref>", targetId="<targetId>") - 等待页面跳转,再次使用
browser.snapshot确认已进入二维码页面 - 继续执行下方截图步骤
情况B:页面已显示二维码(直接进入登录页)
- 直接继续执行下方截图步骤
- 使用
-
立即使用
browser.screenshot获取二维码页面截图(必须执行,不可跳过):browser.screenshot(targetId="<targetId>")browser.screenshot会返回一个对象,其中包含截图文件的路径,通常字段名为path或filePath,格式如/tmp/screenshot-xxx.png。必须从返回值中提取实际路径,不要使用占位符。 -
立即使用
message.send将截图发给用户(必须执行,不可跳过)。用户无法自行打开浏览器,必须通过截图才能看到二维码:message.send(media="<browser.screenshot 返回的实际路径>", message="🔐 请用钉钉扫描二维码完成登录,扫码成功后告诉我")⚠️ 严禁仅告知用户"已打开登录页"或"请访问 xxx 扫码"就停下来等待。必须截图并通过
message.send发给用户,用户才能看到二维码。⚠️ 如果
message.send发送失败(如路径不对、图片未找到),立即重试:- 重新调用
browser.screenshot获取新截图 - 检查返回值中的路径字段(可能是
path、filePath、imagePath等) - 用正确的路径重新调用
message.send - 如果连续失败 3 次,直接将截图的 base64 内容或 URL 通过
message.send的message字段告知用户
- 重新调用
-
等待用户回复"扫码成功"或类似确认信息.
步骤3:处理组织选择
用户扫码后,页面会显示组织列表:
-
使用
browser.snapshot获取页面内容:browser.snapshot(targetId="<targetId>") -
从 snapshot 中解析组织列表(页面包含"选择你管理的组织"标题,组织列表项为 table row 元素,ref 格式如
e89、e99) -
将组织列表发给用户选择:
message.send(message="✅ 扫码成功!检测到以下组织:\n1. 阿里巴巴集团\n2. 宜搭测试组织\n\n请回复数字序号选择组织")
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 195 lines · 83 tokens per session scan A e8bfb83b7b5c
yida-login is a skill published in the GitHub repository openyida/openyida-openclaw-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 83 tokens to every session and 1,933 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
opencli-sitemap-author
Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
interactive-login
How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
azure-messaging-webpubsub-java
Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.
google-safe-browsing
Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…