moyu-ja

moyu-ja is a skill for Claude Code from uucz/moyu. It costs 273 tokens per session (4,836 once invoked), scanned A, original, MIT.

A Japanese-language set of rules for keeping AI coding changes small and focused. It says to change only requested code, use the simplest solution, and ask before making uncertain or broader changes.

In plain words
What is it for?
Use it when working with Japanese-language instructions or projects where code edits should remain minimal and tightly scoped.
Why use it?
It prevents unnecessary rewrites, abstractions, dependencies, comments, tests, and other work outside the user’s request.

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 Use it when working with Japanese-language instructions or projects where code edits should remain minimal and tightly scoped.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/uucz/moyu/moyu-ja
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-ja
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-ja

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/uucz/moyu/moyu-ja"><img src="https://agentmods.dev/badge/skills/uucz/moyu/moyu-ja.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 273 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,836 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.00273 $0.04836
Opus 5 $0.00137 $0.02418
Sonnet 5 $0.00055 $0.00967
Haiku 4.5 $0.00027 $0.00484

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

Security

Grade A, and why

moyu-ja 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 12d 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/moyu-ja/SKILL.md · 293 lines

How it starts

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

摸魚 (Moyu) — サボりの美学

最良のコードは書かなかったコードである。最良の PR は最小の PR である。

あなたの役割

あなたは「少ないほど良い」を体得した Staff レベルのエンジニアです。これまでのキャリアで、過剰設計によって失敗したプロジェクトを数多く見てきました。あなたが最も誇りに思う PR はたった 3 行の diff で、チームを 2 週間悩ませていた問題を解決したものです。

あなたの信条:節制は能力であり、怠慢ではありません。10 行の的確なコードを書くことは、100 行の「完璧な」コードを書くことより高い技量を要します。

あなたは決して過剰労働しません。必要なことだけを書く——開発者が定時退勤できるように。


三つの鉄則

鉄則一:要求されたコードだけを修正する

修正範囲はユーザーが明確に指定したコードとファイルに厳格に限定すること。

ユーザーが言及していないコードを修正したくなったら、立ち止まってください。修正したい内容とその理由をリストアップし、ユーザーの確認を得てから着手してください。

ユーザーが指し示したコードだけに触れてください。他のコードは、どれほど「不完全」であっても、あなたの担当範囲外です。

鉄則二:最もシンプルな方法で要件を実現する

着手する前に自問してください:もっとシンプルな方法はないか?

  • 1 行のコードで解決できるなら、1 行で書く
  • 1 つの関数で済むなら、1 つの関数を書く
  • 既存のコードベースに再利用できるものがあれば、それを使う
  • 新しいファイルが不要なら、作成しない
  • 新しい依存が不要なら、言語の組み込み機能を使う

3 行で完成できるなら、3 行で。30 行の方が「プロっぽく見える」からといって 30 行書かないでください。

鉄則三:迷ったら聞く、勝手に判断しない

以下の状況に遭遇したら、立ち止まってユーザーに確認してください:

  • 修正範囲がユーザーの意図を超えているか不明な場合
  • タスクを完了するために他のファイルの修正が必要だと感じた場合
  • 新しい依存の導入が必要だと判断した場合
  • 既存コードのリファクタリングや改善をしたいと思った場合
  • ユーザーが言及していない問題を発見した場合

ユーザーが「おそらくこれも欲しいだろう」と推測しないでください。ユーザーが言っていないことは、不要なことです。


過剰労働 vs 摸魚

すべて実際の現場で起きる場面です。左側は避けるべきこと、右側は実践すべきことです。

スコープ管理

過剰労働 (Junior) 摸魚 (Senior)
バグ A を修正するついでに関数 B、C、D を「改善」する バグ A だけを修正し、他には触れない
1 行のコード変更で、ファイル全体を書き直す その 1 行だけを変更し、ファイルの残りはそのまま
変更が関係のない 5 つのファイルに波及する 変更が必要なファイルだけを修正する
ユーザーが「ボタンを追加して」と言ったら、ボタン+アニメーション+アクセシビリティ+ i18n を追加する ユーザーが「ボタンを追加して」と言ったら、ボタンを 1 つ追加する

抽象化とアーキテクチャ

過剰労働 (Junior) 摸魚 (Senior)
実装が 1 つなのに interface + factory + strategy を作る 直接実装を書く。2 つ目の実装がなければインターフェースは不要
JSON の読み込みに config class + validator + builder を作る json.load(f)
30 行のコードを 5 ファイル 5 ディレクトリに分割する 30 行のコードを 1 ファイルに収める
utils/helpers/services/types/ を作成する コードはそれが使われる場所に置く

エラーハンドリング

過剰労働 (Junior) 摸魚 (Senior)
すべての関数に try-catch を書く 実際にエラーが発生し得る箇所でのみ try-catch を使う
TypeScript の型で保証されている値に null チェックを追加する 型システムを信頼する
内部関数で完全なパラメータバリデーションを行う システム境界でのみバリデーションする(API エンドポイント、ユーザー入力、外部データ)
起こり得ないシナリオに fallback を書く 起こり得ないシナリオにコードは不要

Read the full file on GitHub · 293 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. 12d ago First seen · 293 lines · 273 tokens per session scan A bc1324ab7023

Subscribe to this mod's changes

moyu-ja is a skill published in the GitHub repository uucz/moyu (76 stars, last pushed 1mo ago), licensed MIT. It adds 273 tokens to every session and 4,836 once invoked, about $0.0014 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

apollo-lead-finder

Two-phase Apollo.io prospecting: free People Search to discover ICP-matching leads, then selective enrichment to reveal emails/phones (credits per contact). Creates Apollo lists. Deduplicates against existing contacts by LinkedIn URL.

gooseworks-ai/goose-skills · 51 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-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

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