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 agentmods add skills/uvwt/agentdock-skills/wallosnpx skills add uvwt/agentdock-skills --skill wallosgit clone --depth 1 https://github.com/uvwt/agentdock-skillsWrote 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/uvwt/agentdock-skills/wallos)<a href="https://agentmods.dev/skills/uvwt/agentdock-skills/wallos"><img src="https://agentmods.dev/badge/skills/uvwt/agentdock-skills/wallos.svg" alt="Measured on agentmods" 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.00063 | $0.01292 |
| Opus 5 | $0.00032 | $0.00646 |
| Sonnet 5 | $0.00013 | $0.00258 |
| Haiku 4.5 | $0.00006 | $0.00129 |
Grade A, and why
wallos 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 5d 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 — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Wallos Skill
通过 Wallos 官方 HTTP API 查询和管理个人订阅。适用于“查看订阅”“统计某月支出”“新增或调整订阅”“维护订阅分类”等请求。
上游项目:https://github.com/ellite/Wallos
能力边界
本 Skill 支持:
- 检查 Wallos 连接与 API Key 是否可用;
- 查询当前用户、订阅列表、单个订阅和指定月份总支出;
- 查询分类、货币、支付方式和家庭成员;
- 新增、编辑、删除订阅;
- 新增、编辑、删除分类。
本 Skill 不负责:
- 管理员设置、用户管理和跨用户查询;
- OIDC、密码登录策略和认证系统配置;
- 通知渠道、Fixer、AI 服务等凭据配置;
- 任意或未审查的 Wallos API 调用;
- 直接读写 Wallos SQLite 数据库。
环境变量
| 变量 | 类型 | 必填 | 说明 |
|---|---|---|---|
WALLOS_BASE_URL |
config | 是 | Wallos 实例根地址,例如 https://wallos.example.com |
WALLOS_API_KEY |
secret | 是 | Wallos 当前用户的 API Key |
缺少任一变量时,status 只返回配置状态,不发起网络请求;其他动作返回明确错误。
API Key 只从当前进程环境读取。辅助脚本始终使用 POST 表单传递 API Key,不把它放进 URL、日志或返回结果。
安全约束
base_url只允许http或https,且不能内嵌用户名、密码、查询参数或片段。- 所有业务动作都限定为 API Key 所属用户;不支持 Wallos 的管理员跨用户参数。
delete_subscription和delete_category必须传confirmed: true。- 新增或编辑订阅时,日期必须使用
YYYY-MM-DD,周期取值为:1=天、2=周、3=月、4=年。 - 新增订阅必须提供有效的
payer_user_id、payment_method_id和category_id。Wallos 详情弹窗会直接读取这些关联项;空关联会导致前端 PHP Warning。 logo_url会让 Wallos 服务端下载远程图片;只有用户明确提供该 URL 时才传递。- 返回内容会再次脱敏,避免上游错误消息意外回显 API Key。
辅助脚本执行
Skill 本体是本说明文档。需要调用包内辅助脚本时,在 Skill 包根目录运行:
printf '%s' '{"skill_action":"status"}' | python3 run.py
输入必须是 JSON 对象,动作字段统一为 skill_action。
动作
| 动作 | 用途 | 关键输入 |
|---|---|---|
status |
检查环境配置;配置完整时验证版本接口 | 可选 base_url、timeout |
current_user |
查询当前 API Key 对应用户 | 无 |
list_subscriptions |
查询订阅列表 | 可选 member、category、payment_method、state、sort、convert_currency |
get_subscription |
查询单个订阅 | id,可选 convert_currency |
monthly_cost |
查询指定月份总支出 | month、year |
list_categories |
查询分类 | 无 |
list_currencies |
查询货币和主货币 | 无 |
list_payment_methods |
查询支付方式 | 无 |
list_household |
查询家庭成员 | 无 |
add_subscription |
新增订阅 | name、price、currency_id、frequency、cycle、next_payment、payer_user_id、payment_method_id、category_id,其余字段可选 |
edit_subscription |
编辑订阅 | id,以及至少一个需要修改的字段 |
delete_subscription |
删除订阅 | id、confirmed: true |
add_category |
新增分类 | name |
edit_category |
编辑分类 | id、name |
delete_category |
删除未被使用的非默认分类 | id、confirmed: true |
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.
- 5d ago First seen · 123 lines · 63 tokens per session scan A 6e438a3b4ce1
wallos is a skill published in the GitHub repository uvwt/agentdock-skills (3 stars, last pushed 4d ago), licensed Apache-2.0. It adds 63 tokens to every session and 1,292 once invoked, about $0.0003 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
stock-liquidity
Analyze stock liquidity using bid-ask spreads, volume profiles, order book depth, market impact estimates, and turnover ratios via Yahoo Finance data. Use this skill whenever the user asks about liquidity, trading costs, bid-ask spread, market depth, volume analysis, slippage, market impact, turnover ratio, or how…
company-valuation
Estimate the intrinsic value of a public company using DCF, relative (peer multiple) and sum-of-parts (SOTP) methods, then triangulate to an implied share price with upside/downside versus the current market price. Use this skill whenever the user asks: "what is AAPL worth", "valuation of NVDA", "fair value of TSLA"…
fintel-data
Query Fintel (fintel.io) institutional market intelligence via the REST API at https://api.fintel.io/v1 with FINTELAPIKEY (X-API-KEY header), or the official MCP server at https://mcp.fintel.io/mcp. Read-only data: short interest, borrow rate/fee and shares available to borrow, daily short volume, fails-to-deliver…
estimate-analysis
Deep-dive into analyst estimates and revision trends for any stock using Yahoo Finance data. Use when the user wants to understand analyst estimate direction, how EPS or revenue forecasts changed over time, compare estimate distributions, or analyze growth projections across periods. Triggers: "estimate analysis for…
twitter-reader
Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…
earnings-preview
Generate a pre-earnings briefing for any stock using Yahoo Finance data. Use this skill whenever the user wants to prepare for an upcoming earnings report, understand what analysts expect, review a company's beat/miss track record, or get a quick overview before an earnings call. Triggers include: "earnings preview…