用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/luckiday/maestro-skills --skill english-reading-difficulty命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | english-reading-difficulty |
| description | 英文阅读材料多维度难度自动化分析工具;当用户需要评估英文试卷、文章或阅读材料的难度等级,或需要量化对比不同文本的难易程度时使用 |
| dependency | {"python":["spacy>=3.4.0","nltk>=3.8.0"],"system":["python -m spacy download en_core_web_sm"]} |
spacy>=3.4.0
nltk>=3.8.0
# 方法1: 使用 uv (推荐)
cd ~/.agents/skills/english-reading-difficulty
uv venv .venv --python 3.12
source .venv/bin/activate
uv pip install spacy nltk
curl -sS https://bootstrap.pypa.io/get-pip.py | python
python -m spacy download en_core_web_sm
# 方法2: 使用系统Python 3.12
python3.12 -m venv .venv
source .venv/bin/activate
pip install spacy nltk
python -m spacy download en_core_web_sm
scripts/analyze_difficulty.py 执行分析teaching-docs/reading/ 目录[年][月][日]-[考试名称].[pdf/md], [年][月][日]-[考试名称]-analyze.[md]--text文本路径或--text-content文本内容,--questions题目路径可选)lemmaheadword, pos, CEFRscripts/analyze_difficulty.py 直接从上述两个 CSV 加载词汇数据。
workspace/
├── skills/
│ └── english-reading-difficulty/ # 技能所在目录
├── teaching-docs/
│ └── reading/ # 分析文档存放目录
│ ├── 2026-0312-taichung-edu-vocab.pdf
│ └── 2026-0312-taichung-edu-vocab-analyze.md
└── memory/
└── YYYY-MM-DD.md # 工作日志
cd ~/.agents/skills/english-reading-difficulty
source .venv/bin/activate
python scripts/analyze_difficulty.py --text content.txt --output report.md
python scripts/analyze_difficulty.py --text reading.txt --questions questions.txt --output full_report.md
python scripts/analyze_difficulty.py --text-content "The quick brown fox..." --output result.json