starter-cleaner

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

A cleanup workflow for reducing a wot-starter v2 project to a small development template. It removes documentation, demo subpackages, generated files, and monorepo configuration while retaining Wot UI and chart support.

In plain words
What is it for?
Previewing and applying the cleanup, regenerating the minimal pages configuration, updating Vite and package settings, and checking the result with type checks and linting.
Why use it?
It removes template examples and workspace complexity so developers can start with a smaller project structure.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Previewing and applying the cleanup, regenerating the minimal pages configuration, updating Vite and package settings, and checking the result with type checks and linting.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wot-ui/open-wot/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/open-wot --skill starter-cleaner
Clone the repo
git clone --depth 1 https://github.com/wot-ui/open-wot

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/open-wot/starter-cleaner/github.svg)](https://agentmods.dev/skills/wot-ui/open-wot/starter-cleaner)
Your own site
<a href="https://agentmods.dev/skills/wot-ui/open-wot/starter-cleaner"><img src="https://agentmods.dev/badge/skills/wot-ui/open-wot/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/open-wot/starter-cleaner"><img src="https://agentmods.dev/badge/skills/wot-ui/open-wot/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.
Origin 100% copy Near-identical to another mod 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 10d 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 10d 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

This is a copy

100% identical to starter-cleaner — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

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. 10d 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/open-wot (33 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. It is 100% identical to starter-cleaner, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens

menu-transitions-rtl

Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…

asmyshlyaev177/react-horizontal-scrolling-menu · 137 tokens