project-scaffold

project-scaffold is a skill for Claude Code, Codex from GaryFigno/Dr.WangAgent. It costs 51 tokens per session (379 once invoked), scanned A, original, MIT.

A starter structure for a new Python project, including package metadata, source files, tests, and basic tool configuration. Python is a programming language, and pytest and Ruff are tools for testing and checking Python code.

In plain words
What is it for?
Use it to initialize a Python library, command-line tool, or desktop application with a pyproject file, package folder, test directory, README, and a basic smoke test.
Why use it?
It provides a consistent starting layout so a new project does not need its setup designed from scratch. A small test confirms that the initial project can run.

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/garyfigno/dr.wangagent/project-scaffold
Any agent
npx skills add GaryFigno/Dr.WangAgent --skill project-scaffold
Clone the repo
git clone --depth 1 https://github.com/GaryFigno/Dr.WangAgent

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 project-scaffold

README.md
[![agentmods](https://agentmods.dev/badge/skills/garyfigno/dr.wangagent/project-scaffold.svg)](https://agentmods.dev/skills/garyfigno/dr.wangagent/project-scaffold)
Your own site
<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>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 379 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 $0.00051 $0.00379
Opus 5 $0.00026 $0.00189
Sonnet 5 $0.00010 $0.00076
Haiku 4.5 $0.00005 $0.00038

Measured 4d ago against content hash fc3af2d070ae, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

skills/project-scaffold/SKILL.md · 36 lines

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 等)
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. 4d ago First seen · 36 lines · 51 tokens per session scan A fc3af2d070ae

Subscribe to this mod's changes

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.

Related

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.

strikersam/autonomous-ai-agency · 32 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

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…

huggingface/kernels · 93 tokens

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.

getsentry/skills · 57 tokens

tilelang-env-check

TileLang-Ascend 环境检查与配置验证技能。检查代码仓库完整性、编译安装状态、环境变量配置,并运行简单测试验证环境。发现问题会自动调用相关 skill 进行修复,并按依赖顺序重新执行后续步骤。触发关键词:"环境检查"、"检查环境"、"验证环境"、"环境配置"、"环境搭建"、"env check"、"check environment"、"verify environment"、"setup environment"。.

tile-ai/tilelang-ascend · 112 tokens

python

Python development with ruff, mypy, pytest - TDD and type safety.

alinaqi/maggy · 18 tokens