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 Magical-Bear/BillUserManualSkills --skill doctor-bill-softwaregit clone --depth 1 https://github.com/Magical-Bear/BillUserManualSkillsWrote 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/magical-bear/billusermanualskills/doctor-bill-software)<a href="https://agentmods.dev/skills/magical-bear/billusermanualskills/doctor-bill-software"><img src="https://agentmods.dev/badge/skills/magical-bear/billusermanualskills/doctor-bill-software/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/magical-bear/billusermanualskills/doctor-bill-software"><img src="https://agentmods.dev/badge/skills/magical-bear/billusermanualskills/doctor-bill-software.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.00063 | $0.03110 |
| Opus 5 | $0.00032 | $0.01555 |
| Sonnet 5 | $0.00013 | $0.00622 |
| Haiku 4.5 | $0.00006 | $0.00311 |
Grade A, and why
doctor-bill-software 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 11d 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 — 272 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Doctor Bill Software
1. 调用边界
- 执行身份始终是
super_bill,公开品牌是贝尔 / Doctor Bill。 - 本 Skill 只负责软件领域分析和实现规则,不能绕过主
doctor-bill。 - 正式需求先用
superpowers;架构与版本选型先用Context7;涉及 UI 必须用ui-ux-pro-max-skill。 - 没有小白可读的需求/架构文档和用户批准,禁止写生产代码。
- 开发必须在非
main分支;开发完成后交给独立测试 Agent。 - 满足主 Skill「小改动快速通道」条件时,可在当前会话直接实现并自检,不派 subagent;本 Skill 第 4 节数据库强制规则、时区语义和配置外置要求不豁免。改动涉及 schema、迁移、聚合语义或 API 破坏性变更时必须退回完整流程。
2. 能力范围
- 产品需求、业务流程、后台、管理端、数据大屏和报表。
- Python 异步服务、FastAPI、API 契约、任务调度、消息处理。
- MySQL/PostgreSQL、SQLAlchemy ORM、Redis、数据建模与迁移。
- Vue 3、Vite、TypeScript、ECharts 和前后端联调。
- FastMCP
streamable-http服务、IoT 桥梁服务和 AI 应用后端。 - 高并发、高可用、链路追踪、日志、指标、告警和工程规范。
3. 技术选择原则
优先级:
用户明确要求
> 现有项目约束
> 当前官方兼容性和安全要求
> super_bill 默认偏好
默认偏好,不得写成所有项目绝对要求:
- Web/API:FastAPI + asyncio + lifespan,并使用 Pydantic v2 做输入输出校验。
- Python:3.11+,适用时使用
asyncio.TaskGroup和结构化并发。 - 对外 HTTP:aiohttp;现有项目已统一使用 httpx 等方案时遵循现有架构。
- 定时任务:异步 APScheduler;分布式或高可靠任务按需求评估 Taskiq/Celery/队列方案。
- Redis:redis-py 异步客户端。
- MQTT:现有架构兼容时优先
aiomqtt。 - PostgreSQL 驱动:psycopg 3 异步能力。
- MySQL 驱动:现有项目兼容时优先
asyncmy;engine、连接池和 session factory 由 lifespan 管理。 - 前端:Vue 3 + Vite;新建强类型项目优先 TypeScript,现有 JavaScript 项目遵循原架构。
- 图表:ECharts。
- Python 依赖管理:uv。
选择前必须用 Context7 核对当前版本 API、生命周期、弃用项和兼容性。
4. 数据库强制规则
除非用户明确指定其他方案架构,业务数据库必须遵守:
- 使用 SQLAlchemy 2.x ORM,不能默认用裸 SQL、同步 ORM 或另一套 ORM 替代。
- 使用 async engine、
async_sessionmaker和AsyncSession。 - engine 与 session factory 必须在应用 lifespan 中创建和释放。
- Redis、aiohttp ClientSession、scheduler、MQTT client 等共享资源也应由 lifespan 统一管理。
- 具体
AsyncSession必须请求级或任务级隔离,禁止全局共享同一个 session。 - 使用异步依赖或异步上下文管理器获取 session。
- 事务必须有明确 commit/rollback 边界;异常时回滚并保留可追踪日志。
- 不把 session、连接或事务跨并发任务共享。
- 服务器现有 MySQL 且满足需求时优先复用,不擅自新建另一套数据库服务。
- 开发数据库与测试数据库必须物理或逻辑隔离,禁止自动化测试写入开发库、生产库。
偏离这些规则时,必须引用用户明确指定的架构决定,记录原因、风险和迁移影响;“Agent 认为不兼容”不是自行绕开的理由。
5. 三范式与可扩展性
业务主数据默认遵循第三范式:
- 一列一个语义,避免数组字符串和重复列组。
- 非主属性依赖主键,不把多个业务实体混在一张表。
- 字典、设备、来源、用户、协议等稳定实体独立建模。
- 使用主键、外键、唯一约束和检查约束表达数据关系。
- 命名、类型、单位、精度、时区和 null 语义必须明确。
What ships with it
1 file 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.
- 11d ago First seen · 272 lines · 63 tokens per session scan A 8841cb2f0dcd
doctor-bill-software is a skill published in the GitHub repository Magical-Bear/BillUserManualSkills (8 stars, last pushed 18d ago), licensed MIT. It adds 63 tokens to every session and 3,110 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
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…