AI agents and automation, SEO and GEO, ROI-focused websites, and custom software built around your business.
Manuel Technologies
HomeFree toolsAI readiness
( Free tool / Scale )

Automation, feature, or a real agent?

Three different answers with three different costs, and the wrong one is expensive. Describe the workflow and get a recommendation, the risks, a minimum architecture, and the approval points it would need.

AI agent readiness

Decide whether a workflow needs an agent.

Describe the process, its inputs, and the cost of failure. Get a conservative architecture recommendation before you build.

Do not submit confidential personal data. Results are planning guidance, not a substitute for professional review.

Output

Your brief, triage, or architecture recommendation will appear here.

The output is designed to be copied into a planning document and reviewed by a person before implementation.

( How the decision is made )

Three questions, in this order.

A.01

Classify the workflow

How much the input varies decides everything downstream. Enumerable inputs want deterministic code, which is cheaper, faster and easier to debug.

A.02

Cost of a wrong answer

A misfiled document and a mispriced invoice are not the same risk. The harder an action is to reverse, the more approval it needs.

A.03

What production actually needs

Typed tool contracts, retrieval you can inspect, human approval points, evaluation cases and cost logging. Agents fail in production for want of these, not for want of a better model.

The order matters. Classify the workflow before pricing the technology, because a workflow with enumerable inputs does not need a model at all, and discovering that after the build is the expensive way to learn it.

( Questions )

What people ask before building agents.

When is an agent the wrong answer?

Most of the time, and that is not a fashionable thing to say. If the inputs can be enumerated, deterministic code is cheaper to run, faster, easier to debug and does not fail in novel ways. An agent earns its cost when the input varies too much to write rules for.

What is the difference between an AI feature and an agent?

A feature makes one call and returns a result: classify this, summarise that. An agent decides which steps to take and calls tools in a loop to get there. The loop is the expensive part, in cost and in failure modes, so it should be justified rather than assumed.

How do I stop it doing something expensive?

Keep permissions outside the model. The agent should not hold credentials or be able to take a consequential action directly. Give it typed tools with narrow scopes, put a human approval step in front of anything hard to reverse, and log every call with its cost.

What does an evaluation set actually look like?

Real anonymised cases with known correct outcomes, including the awkward ones. Twenty realistic examples catch more than a hundred synthetic ones, and without them you cannot tell whether a change improved the system or just changed it.

Should I run it in shadow mode first?

Yes, if the workflow allows it. Let the system produce its answer alongside the human doing the work, and compare. It costs one sprint and it is the cheapest way to find out whether the thing works before anyone depends on it.