<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fh="http://purl.org/syndication/history/1.0"><channel><title>VectorStep | Blog</title><description>Webhook-triggered, YAML-configured AI pipeline orchestration with confidence gating you can actually trust.</description><link>https://vectorstep.io/</link><language>en</language><fh:complete/><atom:link rel="self" href="https://vectorstep.io/blog/rss.xml"/><item><title>How I think about agent design</title><link>https://vectorstep.io/blog/how-to-think-about-agents/</link><guid isPermaLink="true">https://vectorstep.io/blog/how-to-think-about-agents/</guid><description>A capable agent with broad access is a demo. A narrow agent you can actually reason about is a production system. Here&apos;s why I keep splitting agents apart instead of making them smarter.</description><pubDate>Mon, 07 Sep 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;[PLACEHOLDER — draft skeleton, not full prose yet. Sketch below is meant to
be expanded, not published as-is.]&lt;/p&gt;
&lt;p&gt;The instinct when building an agent is to make it more capable: give it more
tools, let it handle more of the job, trust it to figure out the rest. That
instinct is right for a personal assistant — it’s basically what makes
&lt;a href=&quot;https://vectorstep.io/blog/why-i-built-vectorstep/&quot;&gt;OpenClaw&lt;/a&gt; compelling. It’s wrong for
anything you’d call production.&lt;/p&gt;
&lt;div&gt;&lt;h2 id=&quot;the-temptation&quot;&gt;The temptation&lt;/h2&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;One agent that triages, investigates, and remediates feels efficient.
It isn’t — its confidence number ends up meaning three different things
depending on which part of the job it was doing at the time.&lt;/li&gt;
&lt;li&gt;“Just give it all the tools, let it decide” feels flexible. It’s actually
the opposite: more tools is a bigger blast radius and a noisier decision
space, not more capability where it counts.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;h2 id=&quot;what-i-do-instead&quot;&gt;What I do instead&lt;/h2&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Split by responsibility, not by convenience. Each agent earns a narrow
job description and a confidence number that means one specific thing.&lt;/li&gt;
&lt;li&gt;Tools are a capability grant, not a courtesy — an agent can’t reach past
its &lt;code dir=&quot;auto&quot;&gt;tools:&lt;/code&gt; list, so keeping it short is a real security boundary, not
just tidiness.&lt;/li&gt;
&lt;li&gt;Confidence has to measure “did I do the job,” never “how scary does this
look” — the two get conflated constantly, and it quietly wrecks
calibration.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;h2 id=&quot;the-practical-version&quot;&gt;The practical version&lt;/h2&gt;&lt;/div&gt;
&lt;p&gt;The engineering checklist version of this post lives at &lt;a href=&quot;https://vectorstep.io/docs/guides/writing-good-agents/&quot;&gt;Writing good
agents&lt;/a&gt; — this post is the “why,” that
page is the “how.”&lt;/p&gt;
&lt;!-- TODO: expand each section above into real prose. Consider adding a
     concrete before/after example (a bloated do-everything agent vs the
     split version) — the samples in the repo already show this split in
     practice (first-line-triage / sre-investigation / principal-sre). --&gt;
</content:encoded><category>agents</category><category>design</category><category>philosophy</category></item><item><title>Why I built VectorStep</title><link>https://vectorstep.io/blog/why-i-built-vectorstep/</link><guid isPermaLink="true">https://vectorstep.io/blog/why-i-built-vectorstep/</guid><description>OpenClaw is a brilliant personal AI assistant. Using it for real work made it obvious why &quot;brilliant personal assistant&quot; and &quot;safe to run against production&quot; are two different design problems - and that the second one didn&apos;t have an open-source answer yet.</description><pubDate>Mon, 24 Aug 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I arrived unfashionably late to the &lt;a href=&quot;https://myclaw.ai/&quot;&gt;OpenClaw&lt;/a&gt; party around March this year. When I started reading about implementing a personal AI assistant I couldn’t necessarily see what I might need a fleet of agents for in my personal life. I have no interest in having AI check-in for flights (I don’t go on many flights these days) or produce a morning briefing (what would AI brief me on?) but I have for many years tried to find ingenious ways to try and make my weekend hobby of sports betting profitable by delving into stats using tools such as Splunk and streaming odds into grafana cloud and analysing from there.&lt;/p&gt;
&lt;p&gt;What interested me wasn’t really the betting itself, but the idea of building a system that could continuously watch a bunch of data, spot something interesting and then help me decide what to do with it.&lt;/p&gt;
&lt;p&gt;So it was this use-case that got me tinkering with Openclaw. I liked the idea of agents just continually keeping context and essentially getting to know you and keeping a memory. But in practice, in my opinion, memory management and the idea that your personal agents just “remember” and “know” stuff about you is still some way off.&lt;/p&gt;
&lt;p&gt;But what tinkering with these tools and features did do is cement my thinking on how AI could be useful in my working life.&lt;/p&gt;
&lt;p&gt;I have worked in observability for an awfully long time and I have heard the term AIOps used so often and for so long i’ve almost become immune to anything an article says after it. Quite frankly, AIOps used to mean some sort of automation and at best some machine learning. At a stretch you could tag that “Artificial Intelligence”, but not as we know it today with LLMs.&lt;/p&gt;
&lt;p&gt;Things have moved on though, and genuine alert triage and remediation is possible today. There are loads of tools already out there that do just that.&lt;/p&gt;
&lt;p&gt;Most of my career has been spent in highly regulated industries like banking, insurance and medicine. Using AI is becoming more prevalent for engineers in their every day workflow (copilot etc.) but is still fairly scarce when moving into production and asking AI to work completely autonomously.&lt;/p&gt;
&lt;p&gt;That got me thinking about something slightly broader than observability. If AI agents were going to become genuinely useful at work, I didn’t think they should necessarily be limited to one particular use case. An incident response workflow is one example, but there are potentially thousands of workflows across a company where you might want an agent to gather information, make a decision, take an action and then move on to the next step.&lt;/p&gt;
&lt;p&gt;At the time, I was also a bit naive about what tooling already existed. I knew there were plenty of workflow engines and orchestrators, and obviously there were already tools for building AI agents, but I wasn’t really seeing the combination I was thinking about. Something that treated an AI workflow as a series of explicit steps, where each step could have its own inputs, outputs, checks and rules around whether the workflow should be allowed to continue.&lt;/p&gt;
&lt;p&gt;I also wanted it to feel like something an engineer would actually want to use. I’m a big fan of configuration and infrastructure as code, so I didn’t want to build something where the important parts of the workflow lived inside a visual editor that was difficult to version, review, reproduce or understand.&lt;/p&gt;
&lt;p&gt;I wanted to be able to look at a pipeline in a repository, understand what it was going to do, see the decisions it could make and check it into source control like any other piece of software.&lt;/p&gt;
&lt;p&gt;And that got me thinking about (yes, I do a lot of thinking about this sort of thing!) a more fundamental question.&lt;/p&gt;
&lt;p&gt;If we are going to break an AI-driven workflow down into explicit steps, what should determine whether it is allowed to move from one step to the next?&lt;/p&gt;
&lt;div&gt;&lt;h2 id=&quot;so-how-do-we-gate-those-steps&quot;&gt;So, how do we gate those steps?&lt;/h2&gt;&lt;/div&gt;
&lt;p&gt;This is essentially the question that led me to VectorStep.&lt;/p&gt;
&lt;p&gt;Disclaimer: the original tool was called “PORK”, for Prompt Orchestrator. I still love that name, but sensible me thought VectorStep sounded more professional!&lt;/p&gt;
&lt;p&gt;I started thinking about each step in an AI workflow as something that shouldn’t automatically be trusted just because an LLM had produced an answer. If a step is going to trigger another step, call an API, make a recommendation or ultimately take some action, there should be some way of deciding whether the output is good enough to proceed.&lt;/p&gt;
&lt;p&gt;I originally just asked the LLM to report back its own confidence on a task and, in my initial testing, that worked surprisingly well, but I should add here, I think that’s because I was very deliberate about the scope of the step and the very specific instructions for the agent (prompt) and its very limited soul (essentially what you tell your agent it can/can’t do).&lt;/p&gt;
&lt;p&gt;For now, i’ll leave that subject there but I do have some further articles and guides on this subject in the docs site so please have a look if you want to know more about writing good agents and prompts.&lt;/p&gt;
&lt;p&gt;But asking an LLM to mark its own homework is fraught with risk, as you can imagine, so this mechanism evolved. In some cases you might want independent verification. In others you might need evidence from a known source, a deterministic check, or some understanding of how well the agent has performed historically.&lt;/p&gt;
&lt;p&gt;I layered all these checks and balances into what I call the “Truth Vector” (is that woefully corny?).&lt;/p&gt;
&lt;p&gt;So VectorStep is my attempt to build all of that into the workflow itself.&lt;/p&gt;
&lt;div&gt;&lt;h2 id=&quot;what-actually-makes-up-the-truth-vector&quot;&gt;What actually makes up the Truth Vector?&lt;/h2&gt;&lt;/div&gt;
&lt;p&gt;The first version was very simple. The agent did a piece of work and told me how confident it was in the result. That was useful, but I didn’t want to rely on the agent marking its own homework, so I started looking at what other signals I could use.&lt;/p&gt;
&lt;p&gt;The Truth Vector is currently made up of five signals. They each answer a slightly different question about the output of a step.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Confidence&lt;/strong&gt; - how confident is the agent in the result it has produced?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Verification&lt;/strong&gt; - can another process independently check the result?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Grounding&lt;/strong&gt; - can the important claims in the result be backed up by actual evidence?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Deterministic checks&lt;/strong&gt; - does the output pass rules that don’t require another LLM to make a judgement?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Calibration&lt;/strong&gt; - does this particular agent’s confidence actually bear any relationship to how often it is right?&lt;/p&gt;
&lt;p&gt;In my opinion, I don’t think any one of these is necessarily enough on its own.&lt;/p&gt;
&lt;p&gt;&lt;img alt=&quot;The Truth Vector — five independent signals feeding into a gate&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; width=&quot;2108&quot; height=&quot;1132&quot; src=&quot;https://vectorstep.io/_astro/truth-vector.DQxICpAk_akNTn.webp&quot; srcset=&quot;&quot;&gt;&lt;/p&gt;
&lt;p&gt;An agent can be highly confident and wrong. A verifier can be wrong. Evidence can be incomplete or misleading. A deterministic check can tell you that something meets a particular rule without telling you whether the overall answer makes sense.&lt;/p&gt;
&lt;p&gt;The idea is that these signals give me different ways of looking at the same decision.&lt;/p&gt;
&lt;p&gt;And importantly, I’m not trying to turn all of this into one magic number that says “the AI is 87% trustworthy”. That would just move the problem somewhere else.&lt;/p&gt;
&lt;div&gt;&lt;h3 id=&quot;you-are-the-weakest-link-goodbye&quot;&gt;You are the weakest link. Goodbye!&lt;/h3&gt;&lt;/div&gt;
&lt;p&gt;One of the decisions I made fairly early on was that I didn’t want to simply average these signals.&lt;/p&gt;
&lt;p&gt;Imagine an agent reports 95% confidence. The verifier is happy. The grounding looks good. But a deterministic check that is critical to the particular action fails.&lt;/p&gt;
&lt;p&gt;I don’t think it makes sense to say that the first three signals were good enough to outweigh the one that failed.&lt;/p&gt;
&lt;p&gt;If that check is important enough to be a requirement for the next step, the workflow should stop.&lt;/p&gt;
&lt;p&gt;This is why I tend to think of the Truth Vector less as a score and more as a collection of evidence about whether a step has earned the right to continue.&lt;/p&gt;
&lt;p&gt;And that last bit is important because the answer isn’t always the same.&lt;/p&gt;
&lt;div&gt;&lt;h3 id=&quot;not-every-action-deserves-the-same-level-of-trust&quot;&gt;Not every action deserves the same level of trust&lt;/h3&gt;&lt;/div&gt;
&lt;p&gt;I don’t think there is a single threshold at which an AI becomes “trusted”.&lt;/p&gt;
&lt;p&gt;If an agent is writing a draft for me to review, I’m happy to accept a very different level of uncertainty than I would if it was about to make a change to a production system.&lt;/p&gt;
&lt;p&gt;The same is true across pretty much any business.&lt;/p&gt;
&lt;p&gt;An agent might be allowed to categorise an incoming support ticket with relatively little scrutiny. Asking it to send a customer an email without human approval is a different proposition. Asking it to change something in production is different again.&lt;/p&gt;
&lt;p&gt;So rather than asking:&lt;/p&gt;
&lt;p&gt;“Is this AI trustworthy?”&lt;/p&gt;
&lt;p&gt;it’s probably better to ask:&lt;/p&gt;
&lt;p&gt;“Has this particular step produced enough evidence for the action we are about to take?”&lt;/p&gt;
&lt;p&gt;It belongs to the step, the evidence available to that step and the consequences of allowing it to continue.&lt;/p&gt;
&lt;p&gt;And this is where I think treating an AI workflow as a series of explicit steps becomes particularly useful.&lt;/p&gt;
&lt;div&gt;&lt;h3 id=&quot;an-example&quot;&gt;An example&lt;/h3&gt;&lt;/div&gt;
&lt;p&gt;Take a fairly simple example from the sort of work I’ve spent most of my career around: an agent investigating a production alert.&lt;/p&gt;
&lt;p&gt;The first step might gather information from several sources and produce a triage report.&lt;/p&gt;
&lt;p&gt;Without any gating, that’s all we’re doing. The agent investigates and gives us an answer.&lt;/p&gt;
&lt;p&gt;Now we can start adding some gates.&lt;/p&gt;
&lt;p&gt;Perhaps the agent needs to have a confidence above a certain level.&lt;/p&gt;
&lt;p&gt;Then we might independently verify some of its conclusions.&lt;/p&gt;
&lt;p&gt;We might require the important claims in the report to be backed by evidence from the systems it has queried.&lt;/p&gt;
&lt;p&gt;We might have a deterministic check that says the proposed remediation is only valid for a particular type of alert.&lt;/p&gt;
&lt;p&gt;And, once we’ve accumulated enough historical runs, we can start asking whether the confidence the agent reports is actually useful.&lt;/p&gt;
&lt;p&gt;At each point, the workflow has more information available when deciding whether to continue.&lt;/p&gt;
&lt;p&gt;And if one of the things we’ve decided is essential fails, the workflow doesn’t need to pretend everything is fine. It can stop, retry, or escalate to a human.&lt;/p&gt;
&lt;p&gt;That, to me, is much more interesting than simply asking an LLM to give me an answer and then deciding whether I happen to like the answer.&lt;/p&gt;
&lt;div&gt;&lt;h2 id=&quot;so-what-actually-is-vectorstep&quot;&gt;So what actually is VectorStep?&lt;/h2&gt;&lt;/div&gt;
&lt;p&gt;This is where VectorStep started to take shape.&lt;/p&gt;
&lt;p&gt;I wanted a way to describe an AI workflow as a series of explicit, version-controlled steps, while also making the conditions for progressing between those steps explicit.&lt;/p&gt;
&lt;p&gt;The AI can do the work. It can use tools, gather information, reason over it and produce an output. But the workflow gets to decide what happens next.&lt;/p&gt;
&lt;p&gt;Sometimes that will be another automated step.&lt;/p&gt;
&lt;p&gt;Sometimes it will be a retry.&lt;/p&gt;
&lt;p&gt;Sometimes it will be a human.&lt;/p&gt;
&lt;p&gt;And sometimes the correct decision is simply to stop.&lt;/p&gt;
&lt;p&gt;VectorStep is my attempt to make those decisions a first-class part of the workflow rather than something that gets bolted on afterwards.&lt;/p&gt;
&lt;p&gt;It’s free to use, it’s designed to be engineer-friendly and the workflows are defined as code. I’m deliberately trying to make the whole thing inspectable and reproducible rather than hiding the important decisions inside a visual workflow builder.&lt;/p&gt;
&lt;p&gt;I don’t think this solves “AI trust”, i’m not sure that’s possible right now.&lt;/p&gt;
&lt;p&gt;I don’t think VectorStep can tell you whether an AI agent is telling the truth with absolute certainty, that’s a much harder problem because a verifier can be wrong, a source can be wrong. An agent can find convincing evidence for the wrong conclusion. And no amount of configuration can remove uncertainty from a system that is ultimately making decisions in a changing environment.&lt;/p&gt;
&lt;p&gt;What I think we can try and do though, is make that uncertainty much more explicit.&lt;/p&gt;
&lt;p&gt;Instead of an agent simply producing an answer and the system assuming it is good enough, we can ask what evidence we have for that answer, what checks it has passed, how the agent has performed historically and whether that is sufficient for the action we are about to allow.&lt;/p&gt;
&lt;p&gt;That’s the idea behind VectorStep.&lt;/p&gt;
&lt;p&gt;Don’t blindly trust the agent. Give it a way to earn the right to take the next step.&lt;/p&gt;
&lt;p&gt;I’m going to be exploring that idea through the project, and I’m sure some of my assumptions will turn out to be wrong along the way.&lt;/p&gt;
&lt;p&gt;I’m particularly interested in hearing from people who are trying to put agents into real production workflows, especially where the consequences of getting the decision wrong actually matter.&lt;/p&gt;
&lt;p&gt;If that’s the kind of project you’d want to poke at and try to break, it’s free to install and the docs are at
&lt;a href=&quot;https://vectorstep.io&quot;&gt;vectorstep.io&lt;/a&gt;.&lt;/p&gt;
</content:encoded><category>origin-story</category><category>agentic-ai</category><category>gateway</category></item></channel></rss>