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/garyfigno/dr.wangagent/project-scaffoldnpx skills add GaryFigno/Dr.WangAgent --skill project-scaffoldgit clone --depth 1 https://github.com/GaryFigno/Dr.WangAgentWrote 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/garyfigno/dr.wangagent/project-scaffold)<a href="https://agentmods.dev/skills/garyfigno/dr.wangagent/project-scaffold"><img src="https://agentmods.dev/badge/skills/garyfigno/dr.wangagent/project-scaffold.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 | $0.00051 | $0.00379 |
| Opus 5 | $0.00026 | $0.00189 |
| Sonnet 5 | $0.00010 | $0.00076 |
| Haiku 4.5 | $0.00005 | $0.00038 |
Grade A, and why
project-scaffold 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 4d 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.
What it actually says
新 Python 项目骨架
结构
<project>/
├── pyproject.toml # 项目元数据 + pytest/ruff 配置
├── README.md # 一句话说明 + 快速开始
├── <package>/ # 包名:小写、下划线
│ ├── __init__.py # 版本号 + 一句话文档字符串
│ └── ...
└── tests/
├── __init__.py
└── test_<module>.py # 一个最小冒烟测试
pyproject 要点
requires-python = ">=3.10"- 依赖尽量少;开发依赖放
[project.optional-dependencies] dev [tool.pytest.ini_options]:testpaths = ["tests"]、asyncio_mode = "auto"(如需 asyncio)[tool.ruff]:line-length = 100
规则
- 先问清楚:包名、用途、是否 CLI / 库 / 桌面应用,再动手
- 不引入没问过的重依赖(如 web 框架)
- 骨架建好后跑
pytest确认测试通过、ruff check无错 - 交付时列出生成的文件和下一步建议(装依赖、初始化 git 等)
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.
- 4d ago First seen · 36 lines · 51 tokens per session scan A fc3af2d070ae
project-scaffold is a skill published in the GitHub repository GaryFigno/Dr.WangAgent (2 stars, last pushed 16d ago), licensed MIT. It adds 51 tokens to every session and 379 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
dependency-audit
Review, validate, and update Python dependencies safely. Use when adding a new package, upgrading an existing one, or reviewing the dependency surface.
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
rocm-kernels
Provides guidance for writing and benchmarking optimized Triton kernels for AMD GPUs (MI355X, R9700) on ROCm, targeting HuggingFace diffusers (LTX-Video, SD3, FLUX) and transformers. Core kernels: RMSNorm, RoPE 3D, GEGLU, AdaLN. Includes XCD swizzle, autotune, diffusers integration patterns, and LTX-Video pipeline…
typing-exclusion-worker
Python typing exclusion worker: remove assigned mypy exclusion modules in small scoped batches, fix typing issues, run validation, and produce a structured completion summary. Use when running parallel typing-debt workers or when asked to remove modules from pyproject mypy exclusion overrides.
tilelang-env-check
TileLang-Ascend 环境检查与配置验证技能。检查代码仓库完整性、编译安装状态、环境变量配置,并运行简单测试验证环境。发现问题会自动调用相关 skill 进行修复,并按依赖顺序重新执行后续步骤。触发关键词:"环境检查"、"检查环境"、"验证环境"、"环境配置"、"环境搭建"、"env check"、"check environment"、"verify environment"、"setup environment"。.
python
Python development with ruff, mypy, pytest - TDD and type safety.