DEV Community

Prateek Chaudhary
Prateek Chaudhary

Posted on

Kakveda v1.0.3 – One-Line AI Agent Governance Integration

Just released Kakveda v1.0.3.

Big change: SDK-first integration.

Before:

  • Manual warn calls
  • Manual event publishing
  • Separate registration scripts

Now:
from kakveda_sdk import KakvedaAgent

agent = KakvedaAgent()

agent.execute(
prompt="export data",
tool_name="data_exporter",
execute_fn=my_func
)

That’s it.

SDK handles:

  • Preflight policy checks
  • Trace ingestion
  • Dashboard registration
  • Heartbeat
  • Retry & circuit breaker
  • Strict mode enforcement Removed legacy helpers to simplify developer experience.

If you're building AI agents in production, especially multi-agent systems, feedback is welcome.

Top comments (0)