starter-cleaner

starter-cleaner is a skill for Codex from wot-ui/wot-starter. It costs 82 tokens per session (658 once invoked), scanned A, original, MIT.

A fixed workflow and script for reducing the wot-starter v2 template to a minimal development project. It removes documentation and example sections while keeping core Wot UI and chart support.

In plain words
What is it for?
Previewing and applying the cleanup, regenerating the minimal page configuration, removing example subpackages and workspace settings, updating dependencies, and running type and lint checks.
Why use it?
It removes unused template material and related configuration while preserving the project’s basic app and chart capabilities.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

Good fit Previewing and applying the cleanup, regenerating the minimal page configuration, removing example subpackages and workspace settings, updating dependencies, and running type and lint checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wot-ui/wot-starter/starter-cleaner
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.

Any agent
npx skills add wot-ui/wot-starter --skill starter-cleaner
Clone the repo
git clone --depth 1 https://github.com/wot-ui/wot-starter

Made for: 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 starter-cleaner

README.md
[![agentmods](https://agentmods.dev/badge/skills/wot-ui/wot-starter/starter-cleaner/github.svg)](https://agentmods.dev/skills/wot-ui/wot-starter/starter-cleaner)
Your own site
<a href="https://agentmods.dev/skills/wot-ui/wot-starter/starter-cleaner"><img src="https://agentmods.dev/badge/skills/wot-ui/wot-starter/starter-cleaner/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.

agentmods 80×15 button for starter-cleaner

Your own site · 80×15
<a href="https://agentmods.dev/skills/wot-ui/wot-starter/starter-cleaner"><img src="https://agentmods.dev/badge/skills/wot-ui/wot-starter/starter-cleaner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 658 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00082 $0.00658
Opus 5 $0.00041 $0.00329
Sonnet 5 $0.00016 $0.00132
Haiku 4.5 $0.00008 $0.00066

Measured 8d ago against content hash 3df6bb07074f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

starter-cleaner 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/clean.js), 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/skills/starter-cleaner/SKILL.md · 44 lines

What it actually says

Starter Cleaner

使用随技能提供的确定性脚本清理 wot-starter v2,保留基础页面、Wot UI、uni-echartsecharts 能力。

执行流程

  1. 在项目根目录运行 git status --short,确认并告知用户未提交改动会被保留,但待清理目录中的改动会随目录一起删除。

  2. 如果用户尚未明确要求执行清理,先说明这是破坏性操作并取得确认。

  3. 先预览清理计划:

    node .agents/skills/starter-cleaner/scripts/clean.js --dry-run
    
  4. 确认目标是 wot-starter v2 后执行。脚本会删除旧的 src/pages.json,然后受控运行 pnpm dev:h5,等新的最小 src/pages.json 生成后退出 dev server:

    node .agents/skills/starter-cleaner/scripts/clean.js
    
  5. 执行 pnpm install --lockfile-only 更新锁文件,再运行 pnpm type-checkpnpm lint。如果依赖不可用,至少检查 git diff --check 和清理后的 diff,并将未运行的验证明确告知用户。

清理范围

脚本执行以下操作,且支持重复运行:

  • 删除 docs/src/subPages/src/subEcharts/src/subAsyncEcharts/
  • 删除旧的 src/pages.json,再通过 pnpm dev:h5 触发 vite-plugin-uni-pages 重新生成最小页面配置。
  • 删除 pnpm-workspace.yaml,将项目从文档 workspace 恢复为单包项目。
  • vite.config.tsUniHelperPages 配置中移除上述三个示例分包入口。
  • package.json 中移除 docs:*lint:docs 脚本。
  • 保留 uni-echartsecharts 依赖和相关 Vite 配置,方便业务继续使用图表。

安全约束

  • 不直接拼接或扩展删除路径;仅使用脚本内的固定清单。
  • 不在非 wot-starter v2 项目中运行。仅在用户明确确认目标项目后使用 --force 跳过项目身份检查。
  • 不用 --force 绕过未提交改动提示;该参数只用于项目身份检查。
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. 8d ago First seen · 44 lines · 82 tokens per session scan A 3df6bb07074f

Subscribe to this mod's changes

starter-cleaner is a skill published in the GitHub repository wot-ui/wot-starter (386 stars, last pushed 11d ago), licensed MIT. It adds 82 tokens to every session and 658 once invoked, about $0.0004 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

tinyvue-develop-spec

Development rules for a TinyVue component library that supports Vue 2 and Vue 3, desktop browsers, and mobile-first layouts. They separate templates, reusable logic, styles, design rules, localization, and tests.

opentiny/tiny-vue · 12 tokens

build-app-page

Construct a new app page from scratch using this repo's component system. Use when the user says "build a new page for X", "create a settings page", "add a dashboard for Y", "scaffold an app screen", or otherwise wants a Next.js page assembled from the project's elements/components/patterns. Produces a route under…

internet-development/nextjs-css-agent-components · 107 tokens

export-component-to-other-repo

Port a component from nextjs-css-agent-components into a different repo without losing the design-system precision. Use when the user says "copy this component to ", "lift Button into ", "bring the Thin layout over", or otherwise wants a faithful transplant of one or more components from this codebase. Carries over…

internet-development/nextjs-css-agent-components · 106 tokens

next-upgrade

Upgrade Next.js to the latest version following official migration guides and codemods.

agustinusnathaniel/nextarter-tailwind · 19 tokens

admin-net-frontend

Use when building Vue 3 admin dashboard frontends with dynamic routing, permission-based menus, and CRUD page generation. Admin.NET Frontend: Vue 3 + Vite + TypeScript admin UI for Admin.NET backend.

znlgis/opengis-skills · 49 tokens

nuxt-data-audit

An audit guide for checking how Nuxt projects load data and whether their data-fetching patterns follow the project's performance rules.

YuDefine/nuxt-supabase-starter · 57 tokens