SDK & CLI
The aip-protocol package now includes a powerful CLI and a zero-config @shield decorator to protect your agents automatically.
CLI Commands
bash
pip install aip-protocolbash
# Start a new agent project
aip init
# Login to AIP Cloud
aip login
# Watch live verifications
aip watchShield Decorator
Auto-protect your classes or functions with a single line of code. No setup required. Agent name is auto-detected.
python
from aip import shield
# Auto-detects agent_name as "AnalystAgent"
@shield(actions=["read_db", "send_email"], limit=50)
class AnalystAgent:
def execute(self):
pass # Protected automatically