# Start with AI agents With AI agents, you can quickly generate a connector for an application and get a **prototype** in minutes. 1. Clone the Krenalis repository: ```bash git clone https://github.com/krenalis/krenalis.git ``` 2. From the command line, start your preferred AI agent CLI (for example `claude` or `codex`). 3. Provide the following prompt to the agent: ``` Read the skill located in the "connectors/skills" directory that explains how to create a connector for an application, and generate a connector for Brand. ``` Replace **Brand** with the name of the platform you want to integrate with, such as **Shopify**, **Salesforce**, or any other service. The agent reads the connector creation skill and uses it as guidance to generate the connector structure, configuration, and implementation. The result is a **connector prototype** in the "connectors" directory. It's designed to run and interact with the target application right away, giving you a solid starting point that you can review, refine, and extend for production use. ### Use with Claude Code For Claude Code, create a `.claude` directory in your repository and copy `connectors/skills` to `.claude/skills`. Claude Code discovers skills from that location and can invoke them when relevant. ### Use with Codex For Codex, create an `.agents` directory in your repository and copy `connectors/skills` to `.agents/skills`. Codex discovers skills from that location and can invoke them when relevant.