by Integuru-AI
The first AI agent that builds permissionless integrations through reverse engineering platforms' internal APIs.
# Add to your Claude Code skills
git clone https://github.com/Integuru-AI/InteguruFirst version of the AI agent that generates integration code by reverse-engineering platforms' internal APIs.

You use create_har.py to generate a file containing all browser network requests, a file with the cookies, and write a prompt describing the action triggered in the browser. The agent outputs runnable Python code that hits the platform's internal endpoints to perform the desired action.
Let's assume we want to download utility bills:
https://www.example.com/utility-bills?accountId=123&userId=456
accountId=123 userId=456
GET https://www.example.com/get_account_id
GET https://www.example.com/get_user_id
No comments yet. Be the first to share your thoughts!
Set up your OpenAI API Keys and add the OPENAI_API_KEY environment variable. (We recommend using an account with access to models that are at least as capable as OpenAI o1-mini. Models on par with OpenAI o1-preview are ideal.)
Install Python requirements via poetry:
poetry install
Open a poetry shell:
poetry shell
Register the Poetry virtual environment with Jupyter:
poetry run ipython kernel install --user --name=integuru
Run the following command to spawn a browser:
poetry run python create_har.py
Log into your platform and perform the desired action (such as downloading a utility bill).
Run Integuru:
poetry run integuru --prompt "download utility bills" --model <gpt-4o|o3-mini|o1|o1-mini>
You can also run it via Jupyter Notebook main.ipynb
**Recommended to use gpt-4o as the model for graph generation as it supports fun...