Settings
Configure alerting channels for dependency change notifications
💬
Slack Integration
Get real-time alerts in your Slack workspace when dependencies change
How to get a Slack webhook:
- Go to api.slack.com/apps → Create App → From scratch
- Enable Incoming Webhooks, add a new webhook to your workspace
- Copy the webhook URL and paste it above
📧
Email Alerts
Receive alerts via email when dependencies change
🔧
SDK Integration
Add the DepIntel SDK to your AI agent to auto-discover dependencies
Step 1: Install the SDK
pip install depintel-sdk
Step 2: Initialize the SDK
import depintel_sdk
depintel_sdk.init(
api_url="http://localhost:8899",
api_key="di_your_sdk_key_here",
agent_id="your-agent-uuid"
)
# Auto-trace all HTTP calls
depintel_sdk.patch_httpx()Step 3: All HTTP calls are now traced automatically
async with httpx.AsyncClient() as client:
response = await client.get("https://api.example.com/data")
# Automatically discovered and monitored by DepIntel