5-Minute Tutorials

Get productive with AIM immediately. Each tutorial includes copy-paste code that works out of the box.

60-second demo

Run the interactive demo agent

The SDK includes an interactive demo agent. Download it, run it, and watch the dashboard update.

# 1. Download SDK from AIM dashboard (Settings → SDK Download)

# 2. Extract and install:
cd ~/projects  # or ~/dev, ~/Desktop, etc.
unzip ~/Downloads/aim-sdk-python.zip
cd aim-sdk-python
pip install -e .

# 3. Run the interactive demo!
python demo_agent.py
Open your AIM Dashboard side-by-side and watch it update as you trigger actions!

Zero Config - Just 3 Lines of Code

Want to build your own agent? Here's how simple it is:

from aim_sdk import secure

# That's it - your agent is now secured!
agent = secure("my-agent")

# Every action is now verified, logged, and monitored
@agent.perform_action(capability="greeting:say", risk_level="low")
def my_function():
    return "Hello, secured world!"

Choose Your Path

Not sure where to start?

Using Python? → Start with Python SDK Quickstart

Using Java? → Start with Java SDK Quickstart

Building a custom integration? → Check out API Quickstart

Want to explore the platform first? → Try the Dashboard Walkthrough