Cognee
Use this skill for Cognee-specific Python API help and for mapping user goals to the right Cognee workflow.
When to apply this skill
Apply this skill whenever the user wants to do any of the following with Cognee:
- ingest text, files, URLs, repos, or datasets
- build or rebuild a knowledge graph
- search documents, chunks, summaries, triplets, or graph context
- choose a
SearchType - enrich an existing graph with
memify - define custom graph extraction models or
DataPointtypes - run custom task pipelines
- configure LLM, graph DB, vector DB, or storage settings
- tag and scope memory with
node_set/ NodeSets - build persistent memory for agents across sessions
- create feedback loops or self-improving agent workflows
- work with temporal extraction, ontologies, Cypher, or natural-language graph queries
- manage datasets, sessions, feedback, pruning, updates, or visualization
If the user’s intent is “store information in memory and query it later,” prefer Cognee’s core flow: add -> cognify -> search
Core workflow
import cognee
from cognee import SearchType
await cognee.add(
"Your text, file path, URL, or list of inputs",
dat…