@observe - free agent debugging before you need security
by•
We just shipped v0.4.0 with @observe, a free, lightweight way to
see what your agents are doing.
from aip_protocol import passport, observe
agent = passport(name="my-bot", domain="korven.cc")
@observe(agent)
def process_payment(to, amount):
return stripe.charge(to, amount)
Every call logs: agent DID, action, parameters, latency, success/failure.
Zero enforcement, your function always executes.
When you need security later: change @observe to @shield. Same passport.
One-line change.
Would love feedback, is this the right entry point for agent debugging?
1 view


Replies