jpskill.com
🛠️ 開発・MCP コミュニティ

readability

Analyze text readability with Flesch-Kincaid, Gunning Fog, SMOG, and other metrics. Returns objective scores with interpretation and recommendations.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o readability.zip https://jpskill.com/download/19221.zip && unzip -o readability.zip && rm readability.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19221.zip -OutFile "$d\readability.zip"; Expand-Archive "$d\readability.zip" -DestinationPath $d -Force; ri "$d\readability.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して readability.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → readability フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

可読性分析

提供されたテキストの可読性指標を計算し、表示します。

入力

ユーザーは $ARGUMENTS でテキストを提供します。テキストが提供されない場合は、入力を求めます。

計算する指標

主要スコア

指標 計算式 解釈
Flesch Reading Ease 206.835 - 1.015(words/sentences) - 84.6(syllables/words) 0-100、高いほど読みやすい
Flesch-Kincaid Grade 0.39(words/sentences) + 11.8(syllables/words) - 15.59 米国の学年レベル
Gunning Fog Index 0.4[(words/sentences) + 100(complex words/words)] 教育年数
SMOG Index 1.043 × √(complex words × 30/sentences) + 3.1291 学年レベル

複雑な単語 = 3音節以上

テキスト統計

  • 単語数
  • 文数
  • 平均文長(単語数)
  • 平均単語長(文字数)
  • 複雑な単語の数と割合
  • 受動態の文(推定)

出力形式

## 可読性分析

### スコア
| 指標 | スコア | 意味 |
|--------|-------|---------|
| Flesch Reading Ease | [X] | [interpretation] |
| Flesch-Kincaid Grade | [X] | [grade level] |
| Gunning Fog | [X] | [years education] |
| SMOG | [X] | [grade level] |

### 統計
- 単語数: [X]
- 文数: [X]
- 平均文長: [X] 単語
- 複雑な単語: [X] ([Y]%)

### ターゲット読者
[スコアに基づいて、誰が容易に読めるか]

### 推奨事項
1. [具体的な提案]
2. [具体的な提案]
3. [具体的な提案]

解釈ガイド

Flesch スコア 学年 読者層
90-100 5年生 非常に簡単
80-89 6年生 簡単
70-79 7年生 かなり簡単
60-69 8-9年生 標準
50-59 10-12年生 やや難しい
30-49 大学 難しい
0-29 大学院 非常に難しい

推奨事項

スコアに基づいて、以下を提案します。

  • 短縮すべき文(平均が20単語を超える場合)
  • 簡素化すべき複雑な単語
  • 能動態に変換すべき受動態
  • 修正すべき具体的な例
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Analyze Readability

Calculate and display readability metrics for the provided text.

Input

The user provides text in $ARGUMENTS. If no text provided, ask for it.

Metrics to Calculate

Core Scores

Metric Formula Interpretation
Flesch Reading Ease 206.835 - 1.015(words/sentences) - 84.6(syllables/words) 0-100, higher = easier
Flesch-Kincaid Grade 0.39(words/sentences) + 11.8(syllables/words) - 15.59 US grade level
Gunning Fog Index 0.4[(words/sentences) + 100(complex words/words)] Years of education
SMOG Index 1.043 × √(complex words × 30/sentences) + 3.1291 Grade level

Complex words = 3+ syllables

Text Statistics

  • Word count
  • Sentence count
  • Average sentence length (words)
  • Average word length (characters)
  • Complex words count and %
  • Passive voice sentences (estimate)

Output Format

## Readability Analysis

### Scores
| Metric | Score | Meaning |
|--------|-------|---------|
| Flesch Reading Ease | [X] | [interpretation] |
| Flesch-Kincaid Grade | [X] | [grade level] |
| Gunning Fog | [X] | [years education] |
| SMOG | [X] | [grade level] |

### Statistics
- Words: [X]
- Sentences: [X]
- Avg sentence length: [X] words
- Complex words: [X] ([Y]%)

### Target Audience
[Who can easily read this based on scores]

### Recommendations
1. [Specific suggestion]
2. [Specific suggestion]
3. [Specific suggestion]

Interpretation Guide

Flesch Score Grade Audience
90-100 5th Very easy
80-89 6th Easy
70-79 7th Fairly easy
60-69 8-9th Standard
50-59 10-12th Fairly difficult
30-49 College Difficult
0-29 Graduate Very difficult

Recommendations

Based on scores, suggest:

  • Sentences to shorten (if avg > 20 words)
  • Complex words to simplify
  • Passive voice to convert to active
  • Specific examples of what to fix