AI agents and orchestration
I build agents that call your systems as registered tools, and the workflows that trigger and sequence them.
Try it
Ask a question and the agent decides which of its three tools to call, and in what order, within a four-step limit. The page prints every call, its arguments and its result, then the final answer.
How it works
- Scope the jobI write down the task, the systems it touches, and the actions the agent may take. That list becomes the tool catalog the tool bridge serves at GET /tools.
- Wire the toolsI register each action in the tool bridge with a JSON schema and a permission list. Calls run through POST /tools/:name/execute, which checks the caller's permissions and refuses a gated tool the caller does not hold.
- Stand up the agentI open the session through POST /agents/create in the agent runtime. The runtime records each session, tool call and token count in Postgres, so a session reloads after a restart.
- Set the guardrailsI turn on the policy engine, which matches each command against a risk list and blocks a fixed destructive set. A dangerous command is held as an approval request and does not run until a person approves it. Every decision, approved or rejected, is written to the audit trail. This part is built but not yet generally available.
Tools
| Tool | What it does here | Status |
|---|---|---|
| Agent runtime (/agents/*) | Creates agent sessions, runs the tool-calling loop, and records every tool call and token count. | Available |
| Tool bridge (/tools/*) | Registers each action as a tool with a schema and permissions, then executes calls against it. | Available |
| CRM sales automation engine | Fires event-triggered workflows whose ordered steps run with conditions and persisted results. | Available |
| Policy engine with Luca Gatekeeper | Classifies command risk, holds dangerous actions for human approval, applies role checks, and writes the audit trail. | Early access |
| Cloudflare Workers AI (Llama) demo agent | Runs the public tool-calling loop behind the demo on this page. | Demo only |
Available means shipped and in use. Early access means built but not generally available. Roadmap means designed, not built. Demo only means it powers this public demo, not customer deployments.
The full write-up covers access control, evaluation and how this runs inside a customer environment.
Read it on gusit.deThe other answers
Gus IT LLC. Contact gus@gusit.de. Claude is a product of Anthropic PBC. Cloudflare and Workers AI are trademarks of Cloudflare, Inc. Llama is a trademark of Meta Platforms, Inc. Other names are trademarks of their respective owners. Gus IT LLC is an independent engineering firm and is not affiliated with or endorsed by these companies.