Extract terms
Skill feel-flow/agent-skills-examples/knowledge/extract-terms
『Agent Skills 実践ガイド』サンプルスキル集 — コピペで使えるSKILL.md 10種
npx -y skills add feel-flow/agent-skills-examples --skill extract-termsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
既存の書籍本文から用語を自動抽出し、terminology.yamlを生成するスキル。
SKILL.md
1.0 KB, as published. Nobody here has run it
用語自動抽出
手順
- 対象の書籍本文をスキャンする
- カタカナ語・固有名詞・略語・専門用語を抽出する
- 出現頻度に基づいて標準表記を決定する
terminology.yaml形式で出力する
出力形式
terms:
- correct: "プルリクエスト"
short_form: "PR"
avoid: ["Pull Request", "プルリク"]
context: "初出時は「プルリクエスト(PR)」と表記し、以降はPRを使用可"
category: "開発プロセス"
- correct: "Claude Code"
avoid: ["claude code", "ClaudeCode"]
case_sensitive: true
category: "製品名"
検出基準
- カタカナ語: 出現頻度5回以上
- 固有名詞: 出現頻度3回以上、大文字小文字の統一
- 略語: 初出の説明形式を確認
- 専門用語: 技術的に重要な用語