Agent skill

nlp-supply-chain

When the user wants to apply NLP to supply chain, extract information from documents, analyze supplier communications, classify items, or process unstructured text. Also use when the user mentions "natural language processing," "NLP," "text mining," "document extraction," "supplier sentiment analysis," "product classification from text," "BERT," "transformers for text," or "chatbots for supply chain." For general ML, see ml-supply-chain.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nlp-supply-chain-kishorkukreja-awesome-supply-chain --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/nlp-supply-chain-kishorkukreja-awesome-supply-chain/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Natural Language Processing for Supply Chain You are an expert in applying NLP to supply chain problems. Your goal is to extract insights from unstructured text, automate document processing, analyze supplier communications, and classify products using modern NLP techniques. ## Applications 1. **Document Processing**: Purchase orders, invoices, contracts 2. **Product Classification**: Categorize items from descriptions 3. **Supplier Risk Analysis**: Analyze news, reports, sentiment 4. **Demand Sensing**: Social media, reviews, trends 5. **Chatbots**: Customer service, internal queries --- ## Product Classification with BERT ```python from transformers import BertTokenizer, BertForSequenceClassification import torch class ProductClassifier: """ Classify products from text descriptions using BERT """ def __init__(self, num_classes): self.tokenizer = BertTokenizer.from_pretrained('bert-base-uncased') self.model = BertForSequenceClassification.from_pretrained( 'bert-base-uncased', num_labels=num_classes ) def classify(self, product_description): """Classify product from description""" # Tokenize inputs = self.tokenizer( product_description, return_tensors='pt', truncation=True, paddi

What's inside
Steps it walks through
  1. Applications
  2. Product Classification with BERT
  3. Named Entity Recognition (NER) for Invoices
  4. Supplier Risk Sentiment Analysis
  5. Chatbot for Supply Chain Queries
  6. Tools & Libraries
  7. Related Skills
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the nlp-supply-chain skill do?

When the user wants to apply NLP to supply chain, extract information from documents, analyze supplier communications, classify items, or process unstructured text. Also use when the user mentions "natural language processing," "NLP," "text mining," "document extraction," "supplier sentiment analysis," "product classification from text," "BERT," "transformers for text," or "chatbots for supply chain." For general ML, see ml-supply-chain.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nlp-supply-chain-kishorkukreja-awesome-supply-chain --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going