AI workflow orchestration
I design the steps, contracts, and data flows, then ship them as running workflows on customer systems.
Try it
The demo turns your request into an ordered plan, then walks the steps one at a time and times each one. It runs on public demo infrastructure and reads or writes nothing outside this page.
How it works
- Trace one real requestI sit with the operators and follow one live request through their systems, recording every hop and its owner. That written trace becomes the step list, so we agree scope before I write any code.
- Fix the API contractI publish the versioned HTTP contract first, the way the public API at api.onluca.ai/v1 serves integrations behind bearer keys. Each endpoint names the scope it requires, and the OpenAPI document at /v1/schema is generated from that contract.
- Encode the planI encode the flow as ordered steps in the job engine: API call, condition, loop, wait, log, notify, set variable, and abort. A set-variable step names the variable it writes, and an API call step stores its result in the shared response variable that later steps read.
- Bind tools and dataI expose each action as an agent tool on the tool bridge, and every tool declares the permissions it needs and its own timeout. A caller without those permissions is refused before the tool runs, and retrieval checks the session and the caller's document access before any search.
Tools
| Tool | What it does here | Status |
|---|---|---|
| Agent runtime and tool bridge | Runs the agent loop and refuses any tool call that lacks the required permission, under a per-tool timeout. | Available |
| Public API, api.onluca.ai/v1 | Gives integrations a versioned HTTP surface with bearer keys, per-endpoint scopes, and a limit of 120 requests per minute. | Available |
| Multi-provider model gateway | Routes every model call through one gateway that holds the provider keys, applies per-user caps, and logs usage per call. | Available |
| Job engine and approval holds | Runs ordered multi-step plans with per-job retries, timeouts, and an approval hold; registered cron entries are not yet ticked by a scheduler. | Early access |
| Cloudflare Workers AI (Llama) | Plans and walks the steps behind the demo on this page, on public demo infrastructure. | 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.