agentsclimarketplace

Extract terms

Skill feel-flow/agent-skills-examples/knowledge/extract-terms

既存の書籍本文から用語を自動抽出し、terminology.yamlを生成するスキル。From its SKILL.md

Install
npx -y skills add feel-flow/agent-skills-examples --skill extract-terms

Assembled 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.

SKILL.md

1.0 KB, 344 tokens by cl100k_base, as published. Nobody here has run it

用語自動抽出

手順

  1. 対象の書籍本文をスキャンする
  2. カタカナ語・固有名詞・略語・専門用語を抽出する
  3. 出現頻度に基づいて標準表記を決定する
  4. 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回以上、大文字小文字の統一
  • 略語: 初出の説明形式を確認
  • 専門用語: 技術的に重要な用語

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.