npcpy-research-guide
All-in-one Python library for NLP, agents, and knowledge graphs
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill npcpy-research-guide --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# npcpy Research Guide ## Overview npcpy is an all-in-one Python library that combines NLP, agent orchestration, and knowledge graph capabilities in a single package. It provides tools for text processing, entity extraction, agent creation, graph-based reasoning, and research automation. Designed as a Swiss Army knife for AI researchers who need quick access to diverse NLP and agent capabilities without juggling many dependencies. ## Installation ```bash pip install npcpy ``` ## Core Modules ### NLP Processing ```python from npcpy import NLP nlp = NLP() # Text processing pipeline doc = nlp.process( "Transformers have revolutionized NLP since Vaswani et al. " "introduced the attention mechanism in 2017." ) # Named entities for entity in doc.entities: print(f"[{entity.type}] {entity.text}") # [METHOD] Transformers # [PERSON] Vaswani # [CONCEPT] attention mechanism # [DATE] 2017 # Key phrases print(doc.key_phrases) # ["attention mechanism", "Transformers", "NLP"] # Sentiment / stance print(doc.sentiment) # positive ``` ### Agent Creation ```python from npcpy import Agent, Tool # Create a research agent agent = Agent( name="research_assistant", llm_provider="anthropic", tools=[ Tool("w
- Overview
- Installation
- Core Modules
- NLP Processing
- Agent Creation
- Knowledge Graphs
- Research Workflows
- Use Cases
- References
pip install npcpy
What does the npcpy-research-guide skill do?
All-in-one Python library for NLP, agents, and knowledge graphs
How do I install it?
Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill npcpy-research-guide --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 brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 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.