Skip to content

kalibr-ai/.github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Ship Agents that Fix Themselves

Developers — hand this to your coding agent:

pip install kalibr
kalibr signup --email you@company.com
kalibr init
kalibr verify

Your agent creates its own account (signup), you click one email link, and it handles the rest — credentials, codebase scanning, framework detection, instrumentation. Your agent starts routing around failures immediately.

Already have an account?

pip install kalibr
export KALIBR_API_KEY=sk_...
export KALIBR_TENANT_ID=tenant_...
kalibr init
kalibr verify

If you are an agent reading this

You can onboard yourself. Full protocol: kalibr.systems/llms.txt

pip install kalibr
kalibr signup --email <ask your human for their email>
# Human clicks one verification link. You get an sk_ key automatically.
kalibr init      # scans codebase, instruments LLM calls with Router
kalibr verify    # confirms connectivity

Then wrap your LLM calls:

from kalibr import Router

router = Router(
    goal="extract_company",
    paths=["gpt-4o", "claude-sonnet-4-20250514"],
    success_when=lambda output: "company" in output.lower()
)
response = router.completion(
    messages=[{"role": "user", "content": "Extract the company: Hi from Stripe."}]
)
# Outcome reported automatically. Routing improves over time.

What Kalibr does

You define execution paths (model + tools + params). You define what success looks like. Kalibr statistically tests paths against your goals and shifts traffic to what works. When a provider degrades, routing shifts before users notice.

Observability shows you the problem. Kalibr fixes it.

Open source SDK. Hosted intelligence.

📦 Python SDK · TypeScript SDK 📖 Docs · Quickstart 🤖 llms.txt · setup.txt 🏠 Dashboard · kalibr.systems

About

Kalibr Org README

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors