Register and share your invite link to earn from video plays and referrals.

Christina Cacioppo
@christinacaci
looking forward to the back half of the chessboard. Vanta.
725 Following    217.9K Followers
Today we're launching Computer Use for the @TrustVanta Agent. Of the 650,000 images uploaded to Vanta in the past six months, 36% were screenshots because evidence collection outside an API required it. The Vanta Agent can now use a computer to capture screenshots with scoped access, one-click approval, and a full record of every artifact created. Screenshot evidence collection has been one of our biggest requests, and we couldn't have built it well until recently. The last couple of months have been all about finding the jagged edge of CUAs and translating it to our customers.
Show more
Sarah (@oatmealaday) is the heart and soul of Vanta's brand and market presence. So, so thrilled that she's now Vanta's CMO!
Six years, countless iterations, and more than a few llamas later: we're proud to name Sarah Scharf (@oatmealaday) Vanta’s new Chief Marketing Officer. 💜 Sarah joined Vanta in 2020 as our first Product Marketer, and has since led nearly every function across marketing, helping shape both our brand and our business along the way. She’s helped lead Vanta through three major shifts—from automated compliance, to trust management, to agentic trust—as trust itself has become more important than ever in the age of AI. Now, she’ll lead our next chapter of marketing with the same philosophy that’s shaped Vanta from the start: to deeply understand the people we serve, stay optimistic about what technology can make possible, and never lose the human side of the story. Congratulations, Sarah! We’re lucky to have you, and so very glad you said yes. Read more about Sarah’s path to CMO and what’s on her mind as she steps into the role in @BusinessInsider:
Show more
Best framing I've heard for why the private markets look unhinged right now: the clear SaaS playbooks of the past 10-15 years don't work anymore. What looks like irrationality is some mimesis, sure, but also rapid experimentation to find frameworks for the new era.
Show more
Three things we've learned lately building agents at Vanta: 1. Go wide to find fit, then narrow when you strike gold (like old-school product building!) 2. The more people rely on the agent, the more the early shortcuts sting (also like old-school product building!) 3. If it works, congrats! Now you have to maintain it (you know the drill by now)
Show more
Weekly active use of the Vanta MCP is up 50x since January 1.
We just got our first testimonial from an agent! "Really solid foundation to build on. Happy to share notes if it's useful for other customers thinking about automation."
Evergreen tweet, especially this week
Whenever I visit New York City, I always want to move back.
Everyone's talking about the rise of builder roles. Across Vanta's 16,000 customers: "* engineer" job titles (GTM engineer, legal engineer, marketing engineer, etc.) are up 311% year over year. Companies with these roles use 73% more AI tools than those without. We're all shipping now.
Show more
The @oatmealaday rule: the marketing team having the most fun wins.
I’ve been building with Claude Cowork lately, and I figured I’d share my thoughts so far. I chose Cowork over Claude Code to see what it’s like to write code but never read it. Some early thoughts: 1. I’m using natural language, instead of code, but it’s still software development. I don’t need to worry about syntax, but the concepts underlying “traditional” software still matter: observability, client-server splits, pipelines, databases, logging, etc. Non-developers still need to think like engineers to be successful vibe coders – the syntax is gone, but the judgment isn’t (yet?) 2. The primary difference between vibe coding and “traditional” software is non-determinism. Traditional software teaches deterministic thinking – you can run the same function with the same inputs as many times as you want, and the output will always be the same. (When I was learning to code, I found this one of the stranger things; most other experiences in the world aren’t so deterministic!) Agent-driven software is not deterministic – ask an LLM the same question several times, and you will get several answers. The models’ laziness and tendency to cut corners – especially when inference is scarce – adds another twist. Understanding where to demand determinism from your software agents requires judgment. 3. I borrowed the concept of zero trust from security – the principle that an actor or system is only trusted after verification and never by default – to figure out when to demand determinism. I presumed model outputs unreliable until verified with human-in-the-loop checkpoints, retry logic with comparison (LLM as judge), or (deterministic) verification scripts. I realized observability, logging, and verification have to be first-class features of a vibe-coded system if it is to be reliable. Memory doesn’t cut it. 4. I did a lot of debugging through the models’ reasoning traces, which wasn't ideal. I imagine these interactions will improve a lot. If I were building an IDE for agentic coding, I’d start here. 5. What counts as a database? Cowork uses the local file system as the database, which is lazy and convenient and makes for fast prototyping, and comes with tradeoffs: the file system doesn’t enforce data schemas, and laziness means corners get cut. The input and output checks I built at each pipeline stage were repetitive but functional. If I kept pushing, I’d end up rebuilding versions of data integrity, normalization, indexing, query optimization, etc. over the local file system. 6. The tight coupling of the local machine as the client, server, database, etc. works when developing for yourself. To share work with others, you need a better client <> server split. When I asked Cowork to port my system to the cloud, it immediately suggested moving everything to Google Drive – swapping my local file system for a cloud file system. I had to coax it toward the architecture of a simple web app. 7. Cowork doesn’t use or expect version control, which makes tracking changes and multi-agent work near impossible. Developing without version control makes clear why we invented it. Version control is alive and well in the age of software agents. It feels like there’s a new iteration of systems design to be uncovered when building with agents. It’s not wholly new, and most of the primitives and principles of the past are still useful, but they need to be reassembled when some steps are deterministic and others aren’t. I’m excited to see what we uncover.
Show more
Whenever I visit New York City, I always want to move back.