wallos

wallos is a skill for Claude Code, Codex from uvwt/agentdock-skills. It costs 63 tokens per session (1,292 once invoked), scanned A, original, Apache-2.0.

A connector for Wallos, a self-hosted app for tracking personal subscriptions and their costs. It uses Wallos's official HTTP API to view and manage the current user's subscriptions and categories.

In plain words
What is it for?
Use it to check subscriptions, calculate spending for a month, manage categories, currencies, payment methods and household members, or add, edit and delete subscriptions and categories.
Why use it?
It removes the need to open Wallos and handle subscription records manually. It also keeps requests limited to the connected user's data.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/uvwt/agentdock-skills/wallos
Any agent
npx skills add uvwt/agentdock-skills --skill wallos
Clone the repo
git clone --depth 1 https://github.com/uvwt/agentdock-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for wallos

README.md
[![agentmods](https://agentmods.dev/badge/skills/uvwt/agentdock-skills/wallos.svg)](https://agentmods.dev/skills/uvwt/agentdock-skills/wallos)
Your own site
<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>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,292 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 6e438a3b4ce1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

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.

The scan reads SKILL.md. This mod also ships 2 executable files (run.py, test_run.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/wallos/SKILL.md · 123 lines

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 只允许 httphttps,且不能内嵌用户名、密码、查询参数或片段。
  • 所有业务动作都限定为 API Key 所属用户;不支持 Wallos 的管理员跨用户参数。
  • delete_subscriptiondelete_category 必须传 confirmed: true
  • 新增或编辑订阅时,日期必须使用 YYYY-MM-DD,周期取值为:1=天2=周3=月4=年
  • 新增订阅必须提供有效的 payer_user_idpayment_method_idcategory_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_urltimeout
current_user 查询当前 API Key 对应用户
list_subscriptions 查询订阅列表 可选 membercategorypayment_methodstatesortconvert_currency
get_subscription 查询单个订阅 id,可选 convert_currency
monthly_cost 查询指定月份总支出 monthyear
list_categories 查询分类
list_currencies 查询货币和主货币
list_payment_methods 查询支付方式
list_household 查询家庭成员
add_subscription 新增订阅 namepricecurrency_idfrequencycyclenext_paymentpayer_user_idpayment_method_idcategory_id,其余字段可选
edit_subscription 编辑订阅 id,以及至少一个需要修改的字段
delete_subscription 删除订阅 idconfirmed: true
add_category 新增分类 name
edit_category 编辑分类 idname
delete_category 删除未被使用的非默认分类 idconfirmed: true

Read the full file on GitHub · 123 lines

Files

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.

Changes

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.

  1. 5d ago First seen · 123 lines · 63 tokens per session scan A 6e438a3b4ce1

Subscribe to this mod's changes

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.

Related

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…

himself65/finance-skills · 188 tokens

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"…

himself65/finance-skills · 234 tokens

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…

himself65/finance-skills · 234 tokens

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…

himself65/finance-skills · 195 tokens

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…

himself65/finance-skills · 161 tokens

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…

himself65/finance-skills · 221 tokens