create-rule
Create Cursor rules for persistent AI guidance. Use when the user wants to create a rule, add coding standards, set up project conventions, configure…
Use when the user says 'cognee recall', 'search memory', 'what do we know about', 'find related', or 'graph search'. Runs semantic, graph, and lexical search across the Cognee knowledge graph and injects results as agent context.
$ npx -y skills add coco-research/coco --skill cognee-recall --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/cognee-recallContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user says 'cognee recall', 'search memory', 'what do we know about', 'find related', or 'graph search'. Runs semantic, graph, and lexical search across the Cognee knowledge graph and injects results as agent context.
name: cognee:recall description: "Use when the user says 'cognee recall', 'search memory', 'what do we know about', 'find related', or 'graph search'. Runs semantic, graph, and lexical search across the Cognee knowledge graph and injects results as agent context."
Semantic, graph-traversal, and lexical search across Cognee's knowledge graph. Finds entities, decisions, events, and their relationships — then injects relevant results as agent context for informed decision-making.
COGNEE="${COGNEE_BASE_URL:-http://localhost:8000}"
DATASET="my-project"
# Semantic search (auto-selects best strategy)
curl -s -X POST "$COGNEE/api/v1/search" \
-H "Content-Type: application/json" \
-d '{"query": "authentication decisions", "datasets": ["my-project"], "search_type": "FEELING_LUCKY", "top_k": 10}' | jq .
# Graph completion search (relationship-aware)
curl -s -X POST "$COGNEE/api/v1/search" \
-H "Content-Type: application/json" \
-d '{"query": "who reports to Alice", "datasets": ["my-project"], "search_type": "GRAPH_COMPLETION", "top_k": 10}' | jq .
# Recall with context injection (adds system prompt)
curl -s -X POST "$COGNEE/api/v1/recall" \
-H "Content-Type: application/json" \
-d '{"query": "rate limiting", "datasets": ["my-project"], "top_k": 10, "only_context": true}' | jq .
# Cross-project search
curl -s -X POST "$COGNEE/api/v1/search" \
-H "Content-Type: application/json" \
-d '{"query": "auth decisions", "datasets": ["project-a", "project-b", "project-c"], "search_type": "FEELING_LUCKY"}' | jq .Cognee supports multiple search strategies. Use `FEELING_LUCKY` for auto-selection (recommended), or specify one:
| Type | Best for | |------|---------| | `FEELING_LUCKY` | Auto-selects best strategy (default, recommended) | | `GRAPH_COMPLETION` | Relationship-heavy queries ("who owns X", "what depends on Y") | | `GRAPH_COMPLETION_COT` | Complex reasoning with chain-of-thought | | `GRAPH_COMPLETION_CONTEXT_EXTENSION` | Expanding context around a node | | `GRAPH_SUMMARY_COMPLETION` | Summarization of graph neighborhood | | `RAG_COMPLETION` | Retrieval-augmented generation | | `TRIPLET_COMPLETION` | Entity-relationship-entity patterns | | `CHUNKS` | Raw chunk retrieval | | `CHUNKS_LEXICAL` | Keyword/lexical matching | | `SUMMARIES` | Pre-computed summaries | | `NATURAL_LANGUAGE` | Free-form natural language queries | | `TEMPORAL` | Time-based queries | | `CODING_RULES` | Code-specific patterns |
**Procedure:**
1. Ask the user what they're looking for (or use the provided query). 2. Determine the best search type based on the query:
3. Detect which datasets to search:
4. Execute search:
COGNEE="${COGNEE_BASE_URL:-http://localhost:8000}"
curl -s -X POST "$COGNEE/api/v1/search" \
-H "Content-Type: application/json" \
-d "{
\"query\": \"$QUERY\",
\"datasets\": $DATASETS_JSON,
\"search_type\": \"$SEARCH_TYPE\",
\"top_k\": $TOP_K
}" | jq .5. Present results:
COGNEE RECALL — "$QUERY"
==================================================
Found N results across M datasets
[1] DECISION: Use JWT for API auth (2026-06-30)
Context: Stateless, works with existing infra
Dataset: my-project | Score: 0.94
[2] ENTITY: Auth Service — depends_on → PlatformHub
Description: Authentication and authorization service
Dataset: my-project | Score: 0.87
[3] TASK: Set up JWT middleware (open, priority 1)
Assigned to: Alice Chen
Dataset: my-project | Score: 0.82
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━Same as search, but formats results for direct injection into the agent's context window. Use this before making architectural decisions or when context from past sessions is needed.
**Procedure:**
1. Run search as above. 2. Format results as a compact context block:
[COGNEE CONTEXT INJECTION — {timestamp}]
Query: "{original_query}"
Dataset(s): {dataset_names}
Relevant knowledge:
• DECISION ({date}): {text} — {context} [relevance: {score}]
• ENTITY: {name} ({type}) — {description} [relevance: {score}]
• TASK: {text} ({status}) — assigned to {assignee} [relevance: {score}]
• EVENT: {title} ({date}, {type}) — {summary} [relevance: {score}]
Use this context to inform your response. Cite specific decisions and entities where relevant.3. The agent then uses this context transparently in its reasoning.
Explore the graph around a specific entity to understand its relationships.
COGNEE="${COGNEE_BASE_URL:-http://localhost:8000}"
# First, get the dataset ID
DATASET_ID=$(curl -s "$COGNEE/api/v1/datasets" | jq -r '.[] | select(.name=="my-project") | .id')
# Get the full graph
curl -s "$COGNEE/api/v1/datasets/$DATASET_ID/graph" | jq .Present as a relationship map:
ENTITY GRAPH — "Auth Service" (my-project)
==================================================
┌──────────────────┐
│ Auth Service │
│ (system) │
└───┬──────────┬───┘
│ │
depends_on │ │ owns
│ │
┌──────▼──┐ ┌───▼──────────┐
│Platform │ │ JWT Middleware│
│Hub │ │ (module) │
│(module) │ └───────────────┘CoCo Super Intelligence is the orchestration layer that turns Claude Code, Cursor, or Codex into an engineering department: a routed advisory board, 226 skills, 386 commands, persistent state. Local. Open-core — MIT core; Super Intelligence is proprietary, own-use.
Repo: coco-research/coco
Create Cursor rules for persistent AI guidance. Use when the user wants to create a rule, add coding standards, set up project conventions, configure…
Guides users through creating effective Agent Skills for Cursor. Use when the user wants to create, write, or author a new skill, or asks about skill…
Create custom subagents for specialized AI tasks. Use when the user wants to create a new type of subagent, set up task-specific agents, configure code…
Convert 'Applied intelligently' Cursor rules (.cursor/rules/*.mdc) and slash commands (.cursor/commands/*.md) to Agent Skills format (.cursor/skills/). Use…
Modify Cursor/VSCode user settings in settings.json. Use when the user wants to change editor settings, preferences, configuration, themes, font size, tab…
Train and optimize AI agents using Microsoft's Agent Lightning framework with reinforcement learning. Use when setting up agent training, instrumenting agents…