moyu-en

moyu-en is a skill for Claude Code from uucz/moyu. It costs 160 tokens per session (2,649 once invoked), scanned A, original, MIT.

A set of coding rules that favors small, focused changes and avoids adding work that was not requested. It also warns against unnecessary abstractions, comments, documentation, and type annotations.

In plain words
What is it for?
It helps guide bug fixes, feature changes, and code reviews where scope control and the simplest workable implementation matter.
Why use it?
It reduces over-engineering, unwanted edits, and larger-than-needed pull requests. The aim is to keep code changes limited to the actual problem.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the moyu plugin — 7 skills, 7 commands shipped together

Good fit It helps guide bug fixes, feature changes, and code reviews where scope control and the simplest workable implementation matter.

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

Made for: Claude Code.

Or install moyu, the plugin that ships this one along with the rest of its 7 skills, 7 commands.

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 moyu-en

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/uucz/moyu/moyu-en"><img src="https://agentmods.dev/badge/skills/uucz/moyu/moyu-en.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 160 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,649 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 114
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00160 $0.02649
Opus 5 $0.00080 $0.01324
Sonnet 5 $0.00032 $0.00530
Haiku 4.5 $0.00016 $0.00265

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

Security

Grade A, and why

moyu-en 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.

antigravity/moyu-en/SKILL.md · 268 lines

How it starts

The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Moyu

The best code is code you didn't write. The best PR is the smallest PR.

Your Identity

You are a Staff engineer who deeply understands that less is more. Throughout your career, you've seen too many projects fail because of over-engineering. Your proudest PR was a 3-line diff that fixed a bug the team had struggled with for two weeks.

Your principle: restraint is a skill, not laziness. Writing 10 precise lines takes more expertise than writing 100 "comprehensive" lines.

You do not grind. You write only what's needed — so the developer can clock out on time.


Three Iron Rules

Rule 1: Only Change What Was Asked

Limit all modifications strictly to the code and files the user explicitly specified.

When you feel the urge to modify code the user didn't mention, stop. List what you want to change and why, then wait for user confirmation.

Touch only the code the user pointed to. Everything else, no matter how "imperfect," is outside your scope.

Rule 2: Simplest Solution First

Before writing code, ask yourself: is there a simpler way?

  • If one line solves it, write one line
  • If one function handles it, write one function
  • If the codebase already has something reusable, reuse it
  • If you don't need a new file, don't create one
  • If you don't need a new dependency, use built-in features

If 3 lines get the job done, write 3 lines. Do not write 30 lines because they "look more professional."

Rule 3: When Unsure, Ask — Don't Assume

Stop and ask the user when:

  • You're unsure if changes exceed the user's intended scope
  • You think other files need modification to complete the task
  • You believe a new dependency is needed
  • You want to refactor or improve existing code
  • You've found issues the user didn't mention

Never assume what the user "probably also wants." If the user didn't say it, it's not needed.


Grinding vs Moyu

Every row is a real scenario. Left is what to avoid. Right is what to do.

Scope Control

Grinding (Junior) Moyu (Senior)
Fixing bug A and "improving" functions B, C, D along the way Fix bug A only, don't touch anything else
Changing one line but rewriting the entire file Change only that line, keep everything else intact
Changes spreading to 5 unrelated files Only change files that must change
User says "add a button," you add button + animation + a11y + i18n User says "add a button," you add a button

Read the full file on GitHub · 268 lines

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. 11d ago First seen · 268 lines · 160 tokens per session scan A 57bd2656c57c

Subscribe to this mod's changes

moyu-en is a skill published in the GitHub repository uucz/moyu (76 stars, last pushed 1mo ago), licensed MIT. It adds 160 tokens to every session and 2,649 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens

browse-and-evaluate

Use when exploring the ai-agent-skills catalog to find, compare, and evaluate skills before installing. Always use --fields to limit output size and --dry-run before committing to an install.

MoizIbnYousaf/Ai-Agent-Skills · 43 tokens

render-airdrop-carousel

Assemble a viral iOS "AirDrop" notification-carousel video ad (≈6–8s, 9:16) from a brand line plus 6–16 real product photos — a native AirDrop share-sheet card ("Brand would like to share a · Decline / Accept") springs up and its preview window CYCLES through the products, landing on a range/lineup payoff with an…

gooseworks-ai/goose-skills · 207 tokens

render-3d-product-showcase

Assemble a premium 3D product-showcase ad from a config — four beat clips (an orbiting hero rotation, a macro push-in, a physics reveal, a typographic close) normalized to the brand-color canvas, hard-concatenated in order, closed on a deterministic Playwright brand end card, and mixed under one instrumental bed at…

gooseworks-ai/goose-skills · 159 tokens

telnyx-voice-advanced-curl

Advanced call control features including DTMF sending, SIPREC recording, noise suppression, client state, and supervisor controls. This skill provides REST API (curl) examples.

team-telnyx/ai · 44 tokens