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.
npx skills add uucz/moyu --skill moyu-jagit clone --depth 1 https://github.com/uucz/moyuWrote 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.
[](https://agentmods.dev/skills/uucz/moyu/moyu-ja)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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 を書く | 起こり得ないシナリオにコードは不要 |
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.
- 12d ago First seen · 293 lines · 273 tokens per session scan A bc1324ab7023
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.
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.
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.
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.
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.
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…
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…