Agent User Manuals
Detailed guides on how to use and configure your AI agents.
Leonard (FinOps Advisor)
Your personal FinOps analyst. Leonard helps you understand your bill and find savings.
- Analyze Spend: "Leonard, why did my bill go up yesterday?"
- Forecast: "Leonard, predict next month's EC2 spend."
- Rightsizing: "Leonard, show me idle instances."
Stuart (Cleanup)
The janitor for your cloud. Stuart finds and removes waste.
- Orphan Detection: Finds unattached EBS volumes.
- Old Snapshots: Identifies snapshots > 90 days old.
- Unused IPs: Lists unassociated Elastic IPs.
Howard (Automation)
The automation engineer. Howard executes changes safely.
- Auto-Stop: Schedules dev instances to stop at night.
- Tag Enforcement: Automatically tags resources based on rules.
- Rightsizing: Applies instance type changes via Terraform.
Common Commands
You can interact with agents via the Dashboard or the Python SDK.
Python SDK Example
from neurals import NeuralsClient
client = NeuralsClient()
# Ask Leonard to analyze spend
analysis = client.agents.leonard.analyze_spend(period="last_30_days")
print(analysis.recommendations)