```python
from vaultak import Vaultakvt = Vaultak(api_key=“vtk_your_api_key_here”)with vt.monitor(“my-agent”):
agent.run()
```Every action your agent takes is now monitored, risk-scored, and logged in real time.Node.js:
```python
vt = Vaultak(
api_key=“vtk_your_api_key_here”,
allowed_resources=[“/tmp/”, “/data/readonly/”],
blocked_resources=[“prod.”, “.env”, “*.key”],
max_actions_per_minute=20,
)
```Policies can also be created and managed in the dashboard, no code changes needed.