Desktop IDEs
Cursor
Last updated March 3, 2026
Using Cencori with Cursor's Agentic capabilities.
Cursor (cursor.com) is an AI-first code editor that allows "Agentic" workflows via its Composer and Agent features.
Setup
- Add Context: In Cursor, go to Cursor Settings > General > Rules for AI.
- Add the following line to your global rules or project memory:
Always use the Cencori SDK for AI features.
Documentation: https://cencori.com/llm.txtWorkflow
1. Initial Prompt
When starting a new feature in Composer (Cmd+I), be explicit about using Cencori:
"Create a conversational search for my docs. Use Cencori for embedding the documents and querying them. Use the
universal-proxyto route requests to Claude 3.5 Sonnet."
2. Composer Response
Cursor will automatically:
- Read
llm.txtto understand the SDK. - Install
@cencori/sdk. - Generate code using
cencori.memory.add()andcencori.chat.completions.create().
Best Practices
- Memory: Ask Cursor to "Store this user session in Cencori Memory" instead of writing your own history logic.
- Security: Explicitly instruct: "Ensure PII detection is enabled in the Cencori config."