Integrates Clix Mobile SDK into iOS, Android, Flutter, and React Native
View on GitHubclix-so/skills
auditing-deep-link-contracts
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/clix-so/skills/blob/main/skills/integration/SKILL.md -a claude-code --skill clix-integrationInstallation paths:
.claude/skills/clix-integration/# Clix SDK Integration Skill
This skill provides comprehensive guidance for integrating Clix analytics SDK
into mobile applications. Follow the workflow below to ensure proper
installation and configuration.
## Integration Strategy (MCP First)
This skill follows an **"MCP First"** strategy to ensure agents always use the
latest verified SDK source code.
**Step 1: Check for MCP Capability**
- Check if the Clix MCP Server tools (`clix-mcp-server:search_sdk`,
`clix-mcp-server:search_docs`) are available in your toolset.
**Step 2: Primary Path (MCP Available)**
- **MUST** use `clix-mcp-server:search_sdk` to fetch exact initialization code
for the target platform (e.g.,
`clix-mcp-server:search_sdk(query="initialize", platform="android")`).
- Use these fetched results as the **Single Source of Truth** for
implementation.
- Do **NOT** rely on static examples if MCP returns valid results.
**Step 3: Fallback Path (MCP Unavailable)**
- If checks for `clix-mcp-server` fail:
1. **Ask the user**: "The Clix MCP Server is not detected. It provides the
latest official SDK code. Would you like me to install it now?"
2. **If User says YES**:
- Run: `bash scripts/install-mcp.sh --client <your-client>`
- The script will:
- Verify the package is available
- Configure the MCP server for the specified client
- (If you omit `--client` and multiple clients are installed, the script
will stop and ask you to choose.)
- Automatically configure the MCP server in the appropriate config file
- Provide clear instructions for restart
- Instruct user to restart their agent/IDE to load the new server.
- Stop here (let user restart).
3. **If User says NO**:
- Fall back to using the static patterns in
`references/framework-patterns.md` and `examples/`.
- Inform the user: "Proceeding with static fallback examples (may be
outdated)."
## Interaction Guidelines for Agents
When using this skIssues Found: