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 idea2realClaw/myAgent --skill ventus-booking-monitorgit clone --depth 1 https://github.com/idea2realClaw/myAgentWrote 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/idea2realclaw/myagent/ventus-booking-monitor)<a href="https://agentmods.dev/skills/idea2realclaw/myagent/ventus-booking-monitor"><img src="https://agentmods.dev/badge/skills/idea2realclaw/myagent/ventus-booking-monitor/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/idea2realclaw/myagent/ventus-booking-monitor"><img src="https://agentmods.dev/badge/skills/idea2realclaw/myagent/ventus-booking-monitor.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.00000 | $0.01500 |
| Opus 5 | $0.00000 | $0.00750 |
| Sonnet 5 | $0.00000 | $0.00300 |
| Haiku 4.5 | $0.00000 | $0.00150 |
Grade A, and why
ventus-booking-monitor 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 12d 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 — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ventus-booking-monitor Skill
用途
监控瑞典大使馆(Ventus/Enalog 系统)护照/签证预约系统,自动检查是否有可用时间段,并发邮件通知。
触发词
- 查瑞典大使馆预约
- 检查护照预约
- ventus 预约监控
- 瑞典护照预约
- 大使馆有没有时间
- 帮我查预约
- 预约监控
关键经验总结(2026-04-05 实战)
目标网站
- 预约入口:
https://ventus.enalog.se/Booking/Booking/Index/UDDLondon - 系统:Enalog 预约系统(瑞典政府官方供应商)
- 默认语言:瑞典语(Svenska),需手动切换英文
完整操作流程(共5步)
| 步骤 | 页面 | 操作 | 关键元素 |
|---|---|---|---|
| 1 | 首页 | 切换英文 | 点击 English 链接(URL含code=en-GB) |
| 2 | 首页(英文) | 进入预约 | 点击 Book an appointment 按钮 |
| 3 | Agreement 页 | 同意条款 | 勾选 checkbox → 点击 Next |
| 4 | Service 页 | 选服务类别 | 点击 Passport application → 点击 Next |
| 5 | Conditional 页 | 阅读海外居民须知 | 勾选 checkbox → 点击 Next |
| 6 | Select time 页 | 查找时间 | 点击 First available time 按钮 |
时间页面解析规则
时间结果在一个 <table> 中,按周显示(Mon–Sun),可用时间格式:
- cell "2026-04-07 09:45:00" [ref=eXX]:
- row "2026-04-07 09:45:00" [ref=eXX] [cursor=pointer]: 09:45
判断逻辑:
- 有
cursor=pointer的 row 元素 = 有可用时间 cell中只有空[ref=eXX]= 该天无空位- 时间格式:
YYYY-MM-DD HH:MM:SS
无空位特征:
- 所有
cell都是空的(无子元素或只有空 generic) - 整个 rowgroup 下无
cursor=pointer
脚本使用方法
# 单次检查(打印结果)
python3 ~/.workbuddy/skills/ventus-booking-monitor/scripts/check_booking.py
# 指定不同大使馆地点
python3 ~/.workbuddy/skills/ventus-booking-monitor/scripts/check_booking.py --location UDDLondon
# 找到空位后自动发邮件
python3 ~/.workbuddy/skills/ventus-booking-monitor/scripts/check_booking.py --notify [email protected]
# 定时轮询(每30分钟)
python3 ~/.workbuddy/skills/ventus-booking-monitor/scripts/check_booking.py --notify [email protected] --interval 30
技术细节
Playwright CLI 路径
node ~/.workbuddy/plugins/marketplaces/codebuddy-plugins-official/plugins/playwright-cli/playwright-cli.js
简写 alias(在脚本中使用):
PCLI = "node ~/.workbuddy/plugins/marketplaces/codebuddy-plugins-official/plugins/playwright-cli/playwright-cli.js"
操作序列(命令行)
# 1. 打开页面
playwright-cli open https://ventus.enalog.se/Booking/Booking/Index/UDDLondon
# 2. 切换英文(找到 English 链接的 ref 后点击)
playwright-cli snapshot --filename=step1.yaml
playwright-cli click e14 # ref 可能变化,需每次从 snapshot 中找
# 3. 点击 Book an appointment
playwright-cli click e49
# 4. 勾选同意 + Next
playwright-cli check e50
playwright-cli click e57
# 5. 选 Passport application + Next
playwright-cli click e50
playwright-cli click e53
# 6. 勾选 Conditional + Next
playwright-cli check e54
playwright-cli click e57
# 7. 点 First available time
playwright-cli click e64
# 8. 获取时间列表
playwright-cli snapshot --filename=times.yaml
What ships with it
2 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.
- 12d ago First seen · 172 lines · 0 tokens per session scan A 1a13c2940756
ventus-booking-monitor is a skill published in the GitHub repository idea2realClaw/myAgent (2 stars, last pushed 23d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,500 tokens. 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
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…
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.
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…