Extract technical terms, acronyms, proper nouns, and domain vocabulary from text and maintain them in structured YAML format for glossary and index generation. Use when the user needs to identify important terms from documentation, books, articles, or technical content, or when building/updating glossaries, indexes, or term databases.
npx claudepluginhub darkflib/skill-marketplace --plugin term-extractor-pluginThis skill uses the workspace's default tool permissions.
Extract and manage terminology from text in YAML format for downstream processing into glossaries and indexes.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Extract and manage terminology from text in YAML format for downstream processing into glossaries and indexes.
Extract terms from a text file:
python3 scripts/extract_terms.py input.txt > terms.yaml
Merge with existing YAML:
python3 scripts/extract_terms.py input.txt existing_terms.yaml > updated_terms.yaml
The script automatically identifies:
Automated extraction produces candidates that need human review:
definition field for each termSee references/schema.md for complete schema documentation and examples.
Basic structure:
terms:
- term: "Term Name"
category: acronym | proper_noun | name | technical | concept
definition: "Brief definition or explanation"
variations: ["alt1", "alt2"]
references: ["Chapter 3", "p. 45"]
context: "optional contextual note"
acronym: Uppercase abbreviations (HTTP, JSON)proper_noun: Multi-word names (Amazon Web Services)name: Single-word names (Docker, Redis)technical: Domain-specific vocabulary (idempotency, telemetry)concept: Abstract/theoretical terms (eventual consistency)For detailed YAML schema, examples, and field descriptions, see references/schema.md.