Blog

Notes from the Vectros team

On building secure, agent-ready AI back ends: architecture, data modeling, search, and grounded inference.

  • The agent memory loop doesn't need you in the room

    An agent caught a bad key design mid-task and fixed it before anyone reviewed the change, because nobody had to be watching for recall to fire. Here's the whole memory architecture, and the source, now available.

    • engineering
    • dogfooding
    • agent memory
    Read post →
  • Your agent's memory queue shouldn't be a folder of files

    A cheap model proposes memories and the agent commits them. That split creates a second store: a queue of unverified claims, which is real infrastructure. Ours was one file per session. Moving it needed something that holds typed, exactly-queryable rows and never indexes them, which is neither a memory API nor a vector store.

    • engineering
    • dogfooding
    • agent memory
    Read post →
  • You can build almost anything now. That's the problem.

    AI has turned "could I build this myself?" into a question that almost always answers yes, which is exactly why it stopped being useful. The better question is what a thing costs you for every year you own it, and that number has barely moved.

    • engineering
    • ai
    • strategy
    Read post →
  • Your agent's memory shouldn't be a text file

    An agent's memory is two tiers, not one: the team's shared knowledge, and the agent's own private notes. We governed the shared half. The private half was living in a text file that only grows, and that is the half most agents get wrong.

    • engineering
    • dogfooding
    • agent memory
    Read post →