Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Linux support is coming to Snapdragon X2 Series(qualcomm.com)
    64comments
  2. Claude discovers a novel enzyme system with CRISPR-like repeats(anthropic.com)
    530comments
  3. Meta VR Glasses(meta.com)
    164comments
  4. VSCode's SSH Agent Is Bananas (2025)(fly.io)
    86comments
  5. ArXiv receives multiyear commitments to support it as an independent nonprofit(arxiv.org)
    8comments
  6. Mercury 2.5 LLM hits 770 tokens per second(artificialanalysis.ai)
    22comments
  7. The "Windows XP Box" (2003)(mini-itx.com)
    7comments
  8. Fixing the Portobello Police Station Clock(pointinthecloud.com)
    88comments
  9. FLAWED's Flaws and What This Means for Industry Research(suhacker.ai)
    discuss
  10. We just shipped support for the ugliest part of HTTP: Vary(cloudflare.com)
    9comments
  11. LensVLM: Compressing long context as images, expanding only relevant pages(huggingface.co)
    6comments
  12. The mystery animal on an ancient god's head(signoregalilei.com)
    16comments
  13. Italian parliament votes for return to nuclear energy(apnews.com)
    383comments
  14. Show HN: An open-source manufacturing ERP/MES/QMS(carbon.ms)
    1comments
  15. A brief history of Windows scroll bar shortcuts(devblogs.microsoft.com/oldnewthing)
    50comments
  16. Making Tailscale Faster(tailscale.com)
    32comments
  17. Augustofaces: Pareidolia Fine Art(augusto.at)
    1comments
  18. Gemini 3.8 text-to-speech(blog.google)
    124comments
  19. Radicle: Disclosure of Vulnerability in the Network Protocol(radicle.dev)
    48comments
  20. Tokens too cheap to meter(jyn.dev)
    179comments
  21. The Curious Power of Punctuation(newyorker.com)
    3comments
  22. Swap, ZRAM, Zswap and Hibernate on NixOS(matthewbrunelle.com)
    7comments
  23. A refined phylochronology of the second plague pandemic in Western Eurasia(pnas.org)
    discuss
  24. I don't want the details(michaelheap.com)
    197comments
  25. Z80 REPL (2018)(abagames.github.io)
    18comments
  26. Claude Code reads AGENTS.md only when telemetry is on [fixed](szypowi.cz)
    257comments
  27. Once Claude can measure something, it can make it faster(claude.dev)
    105comments
  28. Show HN: I built a post-mortem debugger for native Windows x64/x86 crashes(forensicdbg.com)
    5comments
  29. QuestDB (YC S20) Is Hiring a Sales Engineer(questdb.com)
    discuss
  30. 28% of job postings on company career sites have been open over 90 days(unlisted.careers)
    298comments

Stripe's Knowledge AI Platform

174 pointsby 12h agostripe.dev
108 comments
11h agoHN ↗

TIL people still fall for eh I mean use Langchain. Sorry, low value comment; I don’t know how to do that differently; it is such bad garbage since day one and strangely it did not improve. Sorry anyway for the comment, at least it was not LLM generated?

11h agoHN ↗

Yes, I also thought it's crap the moment I saw they need langchain to develop a harness.

10h agoHN ↗

The fact that Stripe are touting a production product that (at face value) benefits their business seems to suggest that maybe crap is subjective and as ever, being overly opinionated in an emerging space might actually be a blocking mindset rather than a positive one.

10h agoHN ↗

It might also suggest they went with the first LLM recommendation, like Anthropic choosing React for Claude Code.

11h agoHN ↗

To make your comment more high value, could you explain why you think langchain is bad?

10h agoHN ↗

It (and most other systems) abstract the wrong concepts when you want to create an agent. They promote what was likely never a great strategy but even parsimoniously what are strategies that were good ideas months or a year back.

For example how langchain or whatever else handles subagents and deep research is laughable even today.

So whats the recommendation? Just use pydantic and code everything up yourself. Maybe strands I dont know.

10h agoHN ↗

Which specific strategies do you think are outdated, and what would you recommend instead? This sounds more like a criticism of older versions of LangChain than its current APIs. The post also uses deepagents, a separate package in the same ecosystem. Is there something in the current implementation of either that you’re referring to?

1h agoHN ↗

Creating deep research multiagent systems without explicitly handing it a file system is a terrible idea. The only successful way we have found to reliably hand off context in multiagent systems is using a file system. Langchain even today doesnt make that default or even encourage it.

7h agoHN ↗

my biggest code smell is debugging. Trying to step through the code is slow because of how much the debugger has to keep track off and it's a lot of step into / jumps until you get to the piece you actually care about. Then you also see stuff like "if langchain_v2: <branch> elif langchain_v3: <branch> else ...." ... breaking changes are ok! I feel like at this point they're hopelessly spaghettied and need a more opinionated approach to clean up a lot of the mess.

Since others are asking: My current goto is pydantic ai and it's been doing pretty well for my use cases.

11h agoHN ↗

Instead of spending half the comment reflecting on your post why not point out what you don’t like about it or some better alternatives?

11h agoHN ↗

I have a hard time keeping up with the space. Is langchain old news? Is there a page that kind of shows what the status quo for tooling is?

10h agoHN ↗

+1 would love to know as well. I have generally found the open source space to be lacking in this area and hoping it catches up!

10h agoHN ↗

There's like 1000 langchain alternatives and none are good, they're all vibe-coded unstable projects.

I use Apache Burr but it's not as good as LangChain. I just don't want to use software whose website has a pricing page if it's not a SAAS.

10h agoHN ↗

Totally, I find LangChain is the Vercel of ML

9h agoHN ↗

It's a lot of sugar and high level abstractions on top of existing things, I find using the existing things not that complicated or difficult and I struggle to see the value on using the framework as it doesn't sit well with my way of abstracting the stack.

11h agoHN ↗

Ahhh I built an internal set of agents to run our company (finances, all info in the karpathy-style LLMWiki and a database of clients, contracts, billing, time tracking, all managed by MCPs, etc) and it's also called Kai (company name is Kaizen)

Happy to be in such good company!

10h agoHN ↗

All hand written or did you have any underlying libraries that you used?

9h agoHN ↗

Mostly custom. Full data model and full web and mobile app to help run day to day operations.

The agent has switched a few times, initially NanoClaw, then Hermes, and now Vercel's Eve (maximum customizability).

NextJS/Shadcn web app, postgres db, eve agent layer, MCP tools (over 100 so every single thing can be done by an agent), SwiftUI mobile app, etc.

Integrations with gmail, gcal, gdrive, quickbooks, using mdx for the wiki displays (so we have rich diagrams, 3d models, etc).

We write about it here: https://kznconsulting.com/work/how-we-run-kaizen

10h agoHN ↗

I read a buzz word "Knowledge AI Platform" but I did not see any specific feature helpful for knowledge management like verification or transparency. It is more like any generic Agent builder. Maybe it meant to justify building something internally.

10h agoHN ↗

None of these have been especially impressive.

I think that’s because none of them go past “I’ve set up agents to be orchestrated this way” and that’s about as impressive as “look at my cloudformation template”.

10h agoHN ↗

This site could use a bit more line height, more paragraphs, or less text overall.

10h agoHN ↗

Somebody probably mentioned this already or maybe its just me but: The "endless scroll" this page does is neat, to say the least.-

10h agoHN ↗

There's quite a bit of cool stuff in the console too! The one in the top right corner

10h agoHN ↗

Size and scale, I would think. An out of the box solution probably doesn't quite have the same capabilities as something they can (and now have to) manage in it's entirety.

Stripe probably WANTS to be opinionated about how their company works with the tools.

10h agoHN ↗

In the first paragraph:

No existing tool could handle the data security requirements and specific workflows Stripe needed

8h agoHN ↗

Almost as if distributed safe compute for autonomous workloads suddenly came into focus for many orgs!

10h agoHN ↗

Very cool demonstration of managed agents built for the needs of their own business.

I think this is where a lot of companies are going to go: on-prem platforms that give various teams access to agents that are as powerful as coding agents, but much more managed and governed.

I'm betting on this with my open source project, Lightspeed: https://github.com/smartcomputer-ai/lightspeed

10h agoHN ↗

Your project seems way better than the stuff they built, nice work.

9h agoHN ↗

You wrote your readme yourself. It shows. So refreshing and i was able to finish it too.

9h agoHN ↗

Thank you. Yes, I did. There might be some AI-isms in there, because agents just can’t help themselves to dump their arcanae in there.

8h agoHN ↗

The readme was very clearly AI-written (or at least heavily AI-assisted)... not saying that's a bad thing, and I agree it's fairly well written... but it is very obviously AI

7h agoHN ↗

how so? which model? because it’s def not claudish.

the author commented otherwise.

7h agoHN ↗

The author literally said:

There might be some AI-isms in there, because agents just can’t help themselves to dump their arcanae in there.

7h agoHN ↗

k, I just looked through it for where the latest is. First of all, the earliest version were fully written by me, and then lightly edited with AI. The current state are as follows: intro sentences written by me, "why lightspeed" section too. Quickstart AI written, Features mostly written by me, but AI keeps interfering there. Design was also written by me several times, it also used to be much longer, but I just noticed AI put one a few paragraph of slop in there, I think that's the most egregious--shame on me for not caching it. So, if I look at the readme right now, I would say it's about 60% me. It can be better, I'll make the effort because it really bothers me if readmes are not (mostly) written by humans.

7h agoHN ↗

I really don't have a problem with you using AI, as long as you review and validate/test what it writes, and seems like you did that. Great project btw!

9h agoHN ↗

Wow, where do you work? Can we talk? Looking for smart people!

10h agoHN ↗

Dang it, I just named my newborn son Kai. At least I didn’t go with Alexa..

9h agoHN ↗

It’s a cool name! Don’t let Stripe make you doubt that haha

9h agoHN ↗

Don't worry, thanks to nominative determinism, you've secured your kids employment years in advance

7h agoHN ↗

Wonderful name. You may know this, but Kai means food in Maori. Many words and many, many place names also embed it, e.g Moana == sea, so Kaimoana is seafood.

9h agoHN ↗

It's very close to the direction we're taking for windmill.dev, we call it "operator builders" rather than focus on "knowledge graph" which the article is very light on details of.

What I'm mostly reading is a developer platform and runtime where users can build agents that can run tools and for that you need a secure code runtime, ACL/permissions, easy way to build apps or what cloudflare OS call gadgets. We're betting on this too at https://github.com/windmill-labs/windmill, very curious to see if that's the future for most enterprise and if a model where everyone vibe-code/fork cloudflare OS to their enterprise need is the future, or a more exhaustive/enterprise platform like ours does.

9h agoHN ↗

haha stripe's example prompt is "Create an event"

9h agoHN ↗

Stripe is the company I usually hold up as the exemplar of polished internal tools. Hopefully this is taken the right way and I don't want to be negative towards the teams working on this, but I see a distinct lack of polish in these tools and presentations. Some examples:

- Unnecessary AI copy throughout the interfaces like "Browse, discover, and manage skils for your agents", "No favorites yet — hover a card and click the star to pin it here", "One execution environment, shared across agents". These instantly read as AI copy and decrease my enthusiasm.

- Inconsistent, AI-sloppy look-and-feel with different typefaces spattered across the interface.

- The session metrics slide looks busy and AI-generated. It repeats 360,014 sessions in one of the cells at the top, but also has a "360K sessions" in the heading.

I don't know if I'm the only one that notices this stuff, or whether others see it too.

9h agoHN ↗

Stripe is the company I usually hold up as the exemplar of polished internal tools.

unless you work there how would you know this?

9h agoHN ↗

They have published a bunch of stuff about their internal tools in the past. Look up https://stripe.com/blog/stripe-home and compare it to this, as an example.

It's always possible that in reality they were always a bit less polished behind the scenes though.

8h agoHN ↗

Its always more likely the company pushing the PR is less polished than they present themselves.

8h agoHN ↗

It's possibly a cost benefit thing. Moving quickly with AI leaves blood splatter, but if you get enough in return you decide it's worth it anyway.

8h agoHN ↗

I worked there. All the internal tools are amazingly polished. I’ve never seen anything like it.

8h agoHN ↗

As someone who has worked there as well, this is just funny to me.

6h agoHN ↗

Stripe has already existed for a while, and has gone through ups and downs. There was a period where customer experience was first, and the systems inside were built fast and in rather cavalier ways (See Greg Brockman famously telling everyone in a MongoDB convention about using Mongo's oplog as a queue). There were times where internal tools teams could spend all the time they needed to get about as much shine internally as the external facing websites were. Huge investments in everything. But there's just so much churn, as some staff burns out, and others realize that they have so much vested stock that continuing in such a high intensity environment is pointless, that whatever Stripe might have been during your tenure might be very different from other people's, and you can both be right.

5h agoHN ↗

I worked at stripe too. Sail design system at time was exemplary. A ton of effort got invested in little details. They spent an insane effort in making ruby fast with their own jit, formatter and type checker they built.

Post AI, I think the bar hasn’t been the same.

8h agoHN ↗

I think there’s been somewhat of a mask-off moment post-AI in which we’ve realized that a lot of the careful and considered output we’ve come to expect of some companies wasn’t out of a respect for the craft or desire to produce “good work”.

Pre-AI the attitude was: if we are going to do something, it is going to use up our precious resources, so we should do it well, because our staff are capable and the marginal cost of doing it well vs. doing it at all is negligible.

Post-AI: we can churn out things quickly, we don’t have to worry about resource allocation, churn churn churn!

Ultimately, it is pragmatic for businesses to behave this way, but it is a shame for those who love the craft. I think we took for granted the beautiful ornate hand carved furniture era of software engineering. We are now in the ikea era.

8h agoHN ↗

Ultimately, it is pragmatic for businesses to behave this way, but it is a shame for those who love the craft. I think we took for granted the beautiful ornate hand carved furniture era of software engineering. We are now in the ikea era.

I feel this so much. I thought AI would make it easier to get lots of hand-carved ornate furniture; but right now what we are getting looks like the typical Ikea product line -- a bunch of mismatched pieces by a host of different designers with no common underlying design theme or continuity (I'm talking specifically about the looks and design, not the materials).

6h agoHN ↗

If your output is based on best next result, it will tend toward the mode, not even the median.

I have to assume the most common [insert thing] is going to be bad, because more people are amateurs at [insert thing] than are experts. Right?

I have never expected excellence from chatbot generated anything. I have always expected just good enough.

8h agoHN ↗

Have any companies mastered high craft at scale (like 1000s of engineers)?

7h agoHN ↗

Apple’s hardware side seems pretty great at it. Software maybe less so.

7h agoHN ↗

In the classic "the mythical man month", Brooks describes 5000 man years effort in delivering OS/360.

I think by any measure that OS/360 would be "high craft".

6h agoHN ↗

Consistently, at scale, and in a durable way: I doubt it. However, I have seen many localized cases of extreme excellence in the places where the company knows it really matters.

5h agoHN ↗

Yeah. Small groups within it can definitely maintain it

7h agoHN ↗

I don't think the beautiful ornate hand carved furniture era of software engineering has existed for many decades now.

What's happening right now is more like, we're moving from a hyper-optimized era of just-in-time manufacturing (in software, this is called "Agile", "scrum", "sprints", etc.) to getting our manufacturing outsourced to another country. In software, the "other country" is AI.

6h agoHN ↗

love this idea. the question then is: who has made the Toyota 22R-E of software?

4h agoHN ↗

My Toyota is a pre office 365 Microsoft Excel

6h agoHN ↗

We are now in the ikea era

If Ikea furniture were lopsided, ugly, not-quite-properly functional and traded their minimalist design for a Frankenstein hodgepodge of redundant parts.

3h agoHN ↗

I'm thinking more of the design language and lack of modular functionality part here. Ikea stuff is perfectly fine and minimalist, but the FORSBOGG shelf and the GLOMBOR lamp never seem to be built with any kind of underlying design language in mind and may or may not go together. The BLOKKE box sticks out when you put it in the FORSBOGG. Yes there are notable exceptions (KALLAX inserts, etc.)

This is the same problem I see with these Stripe tools. This may not actually be a problem for real users at Stripe.

4h agoHN ↗

> Ultimately, it is pragmatic for businesses to behave this way,

This is how I realized we truly are in an AI arms race. Literally every app or website or tool I use now forcibly pushes their "AI features" or "AI assistant" on you instead of just letting you use their products the way it makes sense for you. Stripe just confirmed what OP was saying. Poorly built, poorly thought out software is now the norm not the exception any more.

2h agoHN ↗

If you don't win at AI, you will die.

That is the reality for most (software) businesses.

1h agoHN ↗

Counterpoint, maybe you don’t die? When I step outside the bubble, I hear many of the same concerns people have always had: they just want the thing to work.

8h agoHN ↗

Maybe they have jobs to do so they offloaded a lot of the presentation work to AI, assuming reasonable people would not judge based on surface level copy style.

7h agoHN ↗

The issue is not that that the presentation work has been offloaded to AI. It's that the result is sloppy.

People are always going to judge based on what seems "surface-level". Stuff like legibility also matters just for data comprehension, the AI tic of constantly repeating key numbers all over a presentation or webpage actively hurts legibility.

7h agoHN ↗

A company that handles money should absolutely not be cavalier about the details, especially in the parts of the business that are public facing.

8h agoHN ↗

That's funny, because I recall in 2015 hitting their endpoint for a large-ish customer, and if you added a boolean to get the total result count, it would 500 every time, presumably because it was doing some kind of "SELECT count(1)" over a postgres table. IIRC, Stripe was ruby internally for a long time, no?

Also their documentation was frequently just straight up incorrect (as in the described json schema for a response was violated. keys missing, different field names, etc.).

But it's been over 10 years, has it improved since then? I'm still in my impression of their stack from back then, although they were decently mature by then as well.

8h agoHN ↗

I recently had to implement a stripe payment system for a client (having never used it before) and found their documentation to be accurate and excellent (at least for the Java SDK and relatively basic use case).

No love for Stripe but IMO their documentation feels like a first-class product.

8h agoHN ↗

I think the specific cases where it failed was when the customer was one of their earlier ones. My guess is that some data schema migration happened, and older data was being served which didn't quite match. So perhaps recency wouldn't potentially even surface those problems either.

7h agoHN ↗

It sure feels like companies have lost their way now. It's no longer about high polish and quality, and all about volume of features. I don't think users want to be overwhelmed with features, they want things that work nicely, and consistently.

7h agoHN ↗

Working in b2b SaaS, there’s a real gravity toward checkbox-driven development. Any time we lose a deal because a competitor had feature A, the immediate response is “we need to build feature A.”

And from a sales perspective, that’s probably not wrong.

I think a new (or newly critical) engineering challenge is how to build in a way that keeps a codebase that’s churning out features from crumbling under the weight.

6h agoHN ↗

from a sales perspective, that’s probably not wrong.

Possibly not wrong. One scenario that happens over and over again is that we lose a deal because we didn't have feature A. So we build feature A, and we still don't win deals with it. One way this happens is when the competitor has a focus on one part of the market, and we have a focus on another.

Example: We go after SMB, the competitor owns "The Enterprise." Just building A will never break us into the Enterprise part of the market. We have to build an entire strategy around seizing part of the Enterprise market from our competitor. That strategy may or may not include A, but it is definitely more involved than "Build A and customers will come."

if we aren't going to build an entire strategy around "The Enterprise," not only can building A fail to win the business, it may cost us some of our existing SMB business. Every feature our core market doesn't want or need is additional complexity and feature surface area for our customers to absorb. They stop thinking of our product as "tailored for their needs" as it begins to bloat with features they don't need.

And worst of all, the investment in feature A means some other feature—B—that our existing customers have asked for gets punted down-calendar because we're suddenly tearing up our road map and building A because the VP Sales threw a temper tantrum about being unable to close deals without A. This is another way that chasing feature A means sacrificing value for our existing customers who are asking for feature B.

3h agoHN ↗

> I don't think users want to be overwhelmed with features, they want things that work nicely, and consistently.

In the case of Stripe, users want one thing, which is to receive correct answers to their questions nearly instantly. And from the sounds of it, that is indeed the case.

6h agoHN ↗

I am really interested in this topic, but man I had to give up reading the document because there were too many paragraphs that contained lots of words but no additional detail that I could actually use. It could be AI-generated or human-generated with too many buzzwords. Doesn't really matter, still gave up.

5h agoHN ↗

It's not just you. Let's take a small paragraph and break it down.

Surface-agnostic APIs: Kai ships with an opinionated web application and a Slack integration, but the main primitive is the underlying API that powers them both. The agent is a service, not an application, and surfaces are simply customized views into it.

I...kinda get that they built an API that the agent polls. And then Slack or the webapp both invoke the agent? If so, the above paragraph is obscuring the point. Also, why isn't there a diagram showing it? There is a diagram below showing "Execution Environment" below, but that one doesn't show the API. And Kai and "Stripe Product Agents" are parallel paths on it. Does it not call out to this API anywhere?

I doubt if most people these days actually try to understand any of this, or just go "Agents? Cool! Here's some product that's vaguely similar that I like or have worked on!".

2h agoHN ↗

Hi, I'm Drew, Stripe's new engineering blog editor. Thanks for sharing your experience! I didn't edit this one, but this is helpful for future posts.

9h agoHN ↗

Somewhat interesting how the design of Stripe's developer-focused landing pages used to be the "cream of the crop," so to speak, but now they just look like Claude run amok. I wonder if the web design "skills" for Claude, and other LLMs, were overly trained on Stripe.

9h agoHN ↗

Within two weeks of our April launch, most of Stripe was using Stripe's Knowledge AI Platform, also known as Kai.

By force or by choice?

9h agoHN ↗

By choice. I currently work at Stripe (opinions my own, I'm just some guy) and was here when it released. It's a genuinely useful tool, which explains the widespread adoption.

9h agoHN ↗

Hope this comes over as constructive criticism:

  1. The whole interface feels way too vibe coded with tons of unneeded stuff. Why does it have a console and snake game built in? Why does it have annoying sounds? Why is it full of AI slop writing? The latter is especially confusing because the first person listed under authors is a "Technical Writer". I guess the interface is the general stripe.dev page not exactly related to Kai but the post definitely is pure AI slop writing.
  2. It seems to claim things that might not be substantiated like the following: "When Account Executives use Kai, they produce 2x the sales activity, create 17% more opportunities, generate 26% more revenue opportunities, and close 39% more deals when compared to the same sellers in weeks they don't use it." Correlation is not causation. If sales people have less activity (vacations or sick days etc) then they also wont use this tool much, it doesn't mean all the increase in sales is because of the tool.
  3. the post talks a lot about how great this tool is but it describes nearly nothing of value to the outsider who can't access it. What were the valuable lessons learned? What's neat about it? There is not much meat imho.

It doesn't live up to my usual expectations from Stripe.

2h agoHN ↗

Hi, I'm Drew, Stripe's engineering blog editor. I wasn't editing back when this post was written, but #2 and #3 will help us shape future posts. Thanks for taking the time to give thoughtful feedback!

9h agoHN ↗

I want to read this, but the ever-changing linear gradient of the background is too visually distracting. I tried to get around it by highlighting text I want to read, but since the background is changing underneath it, so is the highlight. My eyes hurt.

9h agoHN ↗

Does your browser have a reader mode? Looks quite decent in Safari and Brave

9h agoHN ↗

Building a standalone agent product wouldn't work. Instead, it would force users out of their natural workflows and into a new app.

I am finding the opposite to be true with one of my clients. They explicitly want a new channel. The chat-style UI/UX is vastly preferred over their poorly maintained internal tooling.

I suppose if you are Stripe actual, most things would be well designed and more difficult to abandon. Most places aren't like Stripe.

The hard part is bringing everything that matters to the new channel, but it's certainly feasible to do this. I am doing it right now. We will soon be able to delete hundreds of wildly inconsistent cshtml views and related controllers in favor of a single agent tool that applies json patches. This will easily cover 99.9% of use cases. A manual json editor is retained for the rare case where we need some multi-megabyte merge operation.

8h agoHN ↗

I love the design, I'm sure there will be more knowledge framework coming in the near future.

7h agoHN ↗

Cool to see, but wondering what the upside of this is vs what notion is building with their own agents. I can imagine notion agents can do something very similar to this (and with the same amount of control / security) and at what point would it make sense for a company to build their own vs buying into one..

7h agoHN ↗

Has tl;dr been replaced by ai;dr?

The whole piece is mostly AI slop.

"Sharing the substrate forces discipline and creates a flywheel: improvements to the execution environment benefit both internal and product agents simultaneously."

No human would write that.

2h agoHN ↗

Hi, I'm Drew, Stripe's new engineering blog editor. Thanks for the feedback! I wasn't editing back when this post was written, so I don't know whether or to what extent what you say is true, but the important thing is that I solemnly vow to avoid AI slop in the future.

7h agoHN ↗

This is the same as AWS's new quickSuite platform?

5h agoHN ↗

Can anyone recommend something self-hosted that does this?

2h agoHN ↗

The results have been striking. New hires on GTM are Kai-native: they use it 2.7x more, and power users close 80% more value than low users within the same cohort. When Account Executives use Kai, they produce 2x the sales activity, create 17% more opportunities, generate 26% more revenue opportunities, and close 39% more deals when compared to the same sellers in weeks they don't use it. In aggregate, Kai has helped shift 25,000 hours per year from administrative work, to revenue generating work.

These numbers feel suspicious. How can the increase closed deals be so much larger than the increase in opportunities? Why is twice the sales activity only generating 17% more opportunities?