Getting Started
Quick Start
Get up and running with Agent Integration Kit in 5 minutes
1. Open the Chat Window
Go to Tools > Agent Chat or use the keyboard shortcut to open the chat window.
2. Connect to an Agent
Option A: OpenRouter (Recommended for Quick Start)
- Get an API key from openrouter.ai
- In Project Settings, paste your key in OpenRouter API Key
- Select OpenRouter from the agent dropdown in the chat window
- Click Connect
Option B: Claude Code
- Install Claude Code CLI:
npm install -g @anthropic-ai/claude-code - Set the path in Project Settings (or leave blank if in PATH)
- Select Claude Code from the agent dropdown
- Click Connect
3. Start Prompting
Once connected, type a prompt and press Enter:
Create a Blueprint Actor called BP_Coin with:
- A StaticMeshComponent called Mesh
- A SphereComponent called CollisionSphere
- A float variable called PointValue set to 104. Review Tool Calls
The AI will execute tools to create your Blueprint. You'll see:
- Tool calls with their arguments
- Permission requests for destructive operations
- Results showing what was created
5. Attach Context
For more accurate results, attach context to your prompts:
- Right-click a Blueprint node in the graph editor
- Select Attach to Agent Prompt
- The node context will be included in your next message
Example Workflows
Create a Health System
Create a Blueprint Component called BPC_HealthComponent with:
- Float variable MaxHealth = 100
- Float variable CurrentHealth = 100
- Event dispatcher OnHealthChanged
- Event dispatcher OnDeath
- Function TakeDamage(float Amount) that reduces CurrentHealth and broadcasts eventsModify Existing Blueprint
Open BP_PlayerCharacter and:
- Add a SpringArm component attached to root
- Add a Camera component attached to the spring arm
- Set SpringArmLength to 300Create AI Behavior
Create a Behavior Tree called BT_PatrolAndChase with:
- Selector at root
- Sequence for chasing (check if player visible, move to player)
- Sequence for patrolling (move to random point, wait 2 seconds)