Claude Connector
Claude conversation history used for raw-memory and persona flows.
Updated 19 March 2026
claudeconnectorllmraw-memories
Claude Connector
Claude conversation history used for raw-memory and persona flows.
Connector Metadata
| SDK connector id | claude |
| Works on | Web, React Native, Swift, Mobile sync |
| Current collection surface | Web raw memories flow, Mobile sync |
| Information density | High |
| Signal quality | High |
| Best for | Long-form reasoning, writing preferences, research patterns, and assistant interaction context. |
Activation
To show this connector in the SDK, add claude to the platform allowlist for the SDK surface you are using.
Web
<OnairosButton
webpageName="YourApp"
requestData={['preferences', 'personality']}
allowedPlatforms={['claude']}
onComplete={(result) => console.log(result)}
/>
React Native
<OnairosButton
AppName="YourApp"
allowedPlatforms={['claude']}
recommendedPlatforms={['claude']}
onComplete={(result) => console.log(result)}
/>
Swift
let config = OnairosConfig(
apiKey: "your_api_key",
platforms: [.claude],
recommendedPlatforms: [.claude],
urlScheme: "yourapp",
appName: "YourApp"
)
Connector ids are lowercase
Use claude in allowedPlatforms. Display names such as Claude may work on some SDK surfaces, but lowercase connector ids are the safest cross-platform choice.
Current SDK Surface
Web raw memories flowMobile sync
What We Collect
- Conversation IDs and titles.
- User-authored messages from each Claude conversation.
- Basic conversation metadata and timestamps used by the standardized LLM data pipeline.
Current Onairos Handling
- Stored through the generic LLM conversation pipeline.
Notes
- Uses the standard conversation import flow.
- Dedicated Claude memory exports are not part of this connector.