skills/43-wentorai-research-plugins/skills/tools/knowledge-graph/knowledge-graph-construction/SKILL.md
Build research knowledge graphs for literature synthesis and RAG systems
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research knowledge-graph-constructionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Knowledge graphs (KGs) organize information as networks of entities and relationships, making them powerful tools for research synthesis, literature exploration, and AI-augmented retrieval. In academic contexts, knowledge graphs can represent relationships between papers, authors, methods, datasets, findings, and concepts -- enabling queries like "Which methods have been applied to dataset X?" or "What are the common limitations reported across studies of Y?"
This guide covers building knowledge graphs for research applications: defining schemas (ontologies), extracting entities and relations from text, storing and querying graph data, and integrating knowledge graphs with Retrieval Augmented Generation (RAG) systems for AI-powered research assistants.
Whether you are building a personal research knowledge base, constructing a domain-specific literature graph, or developing a RAG system for an academic chatbot, these patterns provide a solid foundation.
| Component | Definition | Research Example | |-----------|-----------|-----------------| | Entity (Node) | A distinct concept or object | Paper, Author, Method, Dataset | | Relation (Edge) | A typed connection between entities | "cites", "uses_method", "evaluates_on" | | Property | An attribute of an entity or relation | Paper.year, Author.affiliation | | Ontology/Schema | Formal definition of entity and relation types | Research ontology defining valid types |
# research_ontology.yaml
entities:
Paper:
properties: [title, year, doi, abstract, venue]
Author:
properties: [name, affiliation, orcid]
Method:
properties: [name, description, category]
Dataset:
properties: [name, domain, size, url]
Finding:
properties: [description, metric, value, significance]
Concept:
properties: [name, definition, domain]
relations:
CITES:
from: Paper
to: Paper
AUTHORED_BY:
from: Paper
to: Author
USES_METHOD:
from: Paper
to: Method
EVALUATES_ON:
from: Paper
to: Dataset
REPORTS_FINDING:
from: Paper
to: Finding
RELATED_TO:
from: Concept
to: Concept
INTRODUCES:
from: Paper
to: Method
Using a large language model to extract structured knowledge from paper abstracts:
import json
from openai import OpenAI
client = OpenAI()
EXTRACTION_PROMPT = """Extract entities and relationships from this research paper abstract.
Return JSON with:
- entities: list of {type, name, properties}
- relations: list of {source, relation, target}
Entity types: Paper, Method, Dataset, Finding, Concept
Relation types: USES_METHOD, EVALUATES_ON, REPORTS_FINDING, RELATED_TO, INTRODUCES
Abstract: {abstract}
Respond ONLY with valid JSON."""
def extract_from_abstract(abstract, paper_title):
response = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "system", "content": "You are a research knowledge extraction system."},
{"role": "user", "content": EXTRACTION_PROMPT.format(abstract=abstract)}
],
response_format={"type": "json_object"},
temperature=0
)
result = json.loads(response.choices[0].message.content)
# Add the paper itself as an entity
result['entities'].insert(0, {
'type': 'Paper',
'name': paper_title,
'properties': {'abstract': abstract[:200]}
})
return result
import spacy
from spacy.tokens import Span
nlp = spacy.load("en_core_web_trf")
# Register custom entity types
@spacy.Language.component("research_entities")
def research_entity_component(doc):
# Pattern-based recognition for methods
method_patterns = [
"random forest", "gradient boosting", "neural network",
"transformer", "attention mechanism", "BERT", "GPT",
"convolutional", "recurrent", "GAN"
]
new_ents = list(doc.ents)
for token in doc:
for pattern in method_patterns:
if pattern.lower() in doc[token.i:token.i+3].text.lower():
span = doc.char_span(token.idx, token.idx + len(pattern),
label="METHOD")
if span and span not in new_ents:
new_ents.append(span)
doc.ents = spacy.util.filter_spans(new_ents)
return doc
nlp.add_pipe("research_entities", after="ner")
from neo4j import GraphDatabase
class ResearchGraph:
def __init__(self, uri, user, password):
self.driver = GraphDatabase.driver(uri, auth=(user, password))
def add_paper(self, paper):
with self.driver.session() as session:
session.run("""
MERGE (p:Paper {doi: $doi})
SET p.title = $title, p.year = $year, p.abstract = $abstract
""", **paper)
def add_citation(self, citing_doi, cited_doi):
with self.driver.session() as session:
session.run("""
MATCH (a:Paper {doi: $citing})
MATCH (b:Paper {doi: $cited})
MERGE (a)-[:CITES]->(b)
""", citing=citing_doi, cited=cited_doi)
def add_method_usage(self, paper_doi, method_name):
with self.driver.session() as session:
session.run("""
MATCH (p:Paper {doi: $doi})
MERGE (m:Method {name: $method})
MERGE (p)-[:USES_METHOD]->(m)
""", doi=paper_doi, method=method_name)
def find_papers_using_method(self, method_name):
with self.driver.session() as session:
result = session.run("""
MATCH (p:Paper)-[:USES_METHOD]->(m:Method {name: $method})
RETURN p.title AS title, p.year AS year, p.doi AS doi
ORDER BY p.year DESC
""", method=method_name)
return [dict(record) for record in result]
def find_common_methods(self, doi1, doi2):
with self.driver.session() as session:
result = session.run("""
MATCH (p1:Paper {doi: $doi1})-[:USES_METHOD]->(m:Method)
<-[:USES_METHOD]-(p2:Paper {doi: $doi2})
RETURN m.name AS method
""", doi1=doi1, doi2=doi2)
return [record['method'] for record in result]
import networkx as nx
import json
def build_research_graph(extracted_data_list):
"""Build a NetworkX graph from extracted paper data."""
G = nx.MultiDiGraph()
for data in extracted_data_list:
for entity in data['entities']:
G.add_node(
entity['name'],
type=entity['type'],
**entity.get('properties', {})
)
for rel in data['relations']:
G.add_edge(
rel['source'],
rel['target'],
relation=rel['relation']
)
return G
# Query the graph
def get_method_landscape(G):
"""Find which methods are most used across papers."""
methods = [n for n, d in G.nodes(data=True) if d.get('type') == 'Method']
method_usage = {}
for method in methods:
papers = [n for n in G.predecessors(method)
if G.nodes[n].get('type') == 'Paper']
method_usage[method] = len(papers)
return sorted(method_usage.items(), key=lambda x: x[1], reverse=True)
Combining knowledge graphs with retrieval augmented generation creates powerful research assistants:
def kg_rag_query(question, graph, embedding_model, llm):
"""Answer a research question using KG-enhanced RAG."""
# Step 1: Extract entities from the question
question_entities = extract_entities(question)
# Step 2: Retrieve relevant subgraph
subgraph_nodes = set()
for entity in question_entities:
if entity in graph:
# Get 2-hop neighborhood
neighbors = nx.ego_graph(graph, entity, radius=2)
subgraph_nodes.update(neighbors.nodes())
# Step 3: Format context from subgraph
context_parts = []
for node in subgraph_nodes:
node_data = graph.nodes[node]
edges = list(graph.edges(node, data=True))
context_parts.append(
f"{node} ({node_data.get('type', 'Unknown')}): "
f"{', '.join(f'{e[2].get(\"relation\", \"related_to\")} {e[1]}' for e in edges[:5])}"
)
context = '\n'.join(context_parts[:20])
# Step 4: Generate answer with LLM
prompt = f"""Based on the following knowledge graph context, answer the question.
Context:
{context}
Question: {question}
Provide a detailed answer citing specific papers, methods, and findings from the context."""
return llm.generate(prompt)
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.