Rendered at 15:06:24 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
wxw 19 hours ago [-]
> Kimi Work is a Local Agent designed for deep workflows. It mounts your local folders, navigates the web autonomously via WebBridge, runs Python code in the background, and executes scheduled tasks.
It's clearly a dupe of Claude/Codex products (Codex especially, styling-wise), but I think Kimi's goal here is simply to appear on feature-parity with bigger labs. I doubt they'd want to invest much into designing a UI for "the future of agentic work" from the ground up.
Their bread and butter and claim-to-fame will continue to be low-cost, near-frontier models, for which they need to at least appear to have some app layer to plug into.
And, in some ways, duping is a great way to show people that even the app layer can be commoditized.
zkmon 11 hours ago [-]
I think we need to stop using the term "dupe" as if there was some originality somewhere that was not built upon or copied what already existed.
QuantumGood 3 hours ago [-]
"Good artists copy, great artists steal, the best artists make lies seem true."
– Steve Jobs.
Actually, Jobs self-servingly refactored then misattributed to Picasso the line,
"Good artists copy, great artists steal."
Jobs did seem to properly remarket Picasso's intent, though, as Picasso had said:
"When there's anything to steal, I steal."
"What does it mean, an artist copies? It is normal. The important thing is to do it better."
"Art is a series of masterly thefts."
Some paradigms are simply ergonomic. Sometimes there's only one UX people will accept.
No one would buy a car steered with pedals; even if that is better (hey planes do it!) - every car maker is "copying" steering wheels and putting them on their cars. Is it controversial? If not why not?
mh- 18 minutes ago [-]
It wasn't controversial because there was about 200 years of prior art from sailing ships.
(Before the wheel, ships were steered with tillers - which early cars also tried, interface-wise.)
thomasahle 17 hours ago [-]
> duping is a great way to show people that even the app layer can be commoditized
Everyone is already cloning the app layer. There are 30+ claude-code clone, and codex work already cloned cowork, grok and gemini is doing the same.
CookieCrisp 16 hours ago [-]
I highly recommend to anyone that uses them a lot - try to clone your own. I’ve got mine fully formed into how I want it, with features I haven’t seen anywhere else yet and with integration into everything I work with. We’ve lived in a world where every app had to fit enough people well enough - but now we live in a world where an app can be molded to be absolutely perfect for just you!
Gigachad 8 hours ago [-]
Most people don’t want to play product manager and just want to pay someone to make the decisions for them.
We used to have a time where every small business had its own custom accounting software, and discovered that these businesses aren’t actually special snowflakes and are better off just using the generic software and conforming to whatever it does
cdrini 10 hours ago [-]
Out of curiosity, what are your favourite features that are unique to your implementation?
embedding-shape 7 hours ago [-]
Not parent, but favorite feature of my own harness I haven't seen somewhere else, is the ability for the agent to execute code on different hosts in a transparent and easy way. Fairly simple and probably could prompt the agent + set things up with ssh, but was doing other stuff related to a server<>client model, so figured why not add it as a couple of tools. Now the agent can build cross-platform applications while I'm mostly on Linux and actually verify it works, without me manually switching between three OSes.
mosselman 7 hours ago [-]
When I tell Claude or open code using Kimi or codex to fix something on my raspberry pi, they all go to ssh right away.
I found that most things that are “features” in harnesses and tools that don’t relate to UI and UX in those harnesses themselves can be done through skills or just prompts.
A nice features of Claude’s is the remote control through the mobile app. That isn’t just a skill.
theplumber 16 hours ago [-]
This is the way. Guess what am I working right now? My own “Work” app that will be better than anything else available today!
Looks like the thing I am building but of course mine will be slightly different. It would be great if we could all meet to show off and discuss our AI stuff.
jascha_eng 16 hours ago [-]
How did you build your own coding agent? What language/framework did you use?
crystal_revenge 15 hours ago [-]
This comment is a great example of how large and strange the skills gap in AI is right now.
Curious why your first impulse is not simply to point your favorite agent at a few examples and start brainstorming/planning from there?
Multiple times I’ve built a purpose specific bespoke tool starting this way. In fact, it’s a great way to learn how specialized tools are built.
godwinson__4-8 14 hours ago [-]
The problem of the sota models clamping down on third party harnesses should be stated upfront. Getting a SOTA model in a custom harness requires API pricing or risking an account ban, correct?
This preliminary change in cost may not make it worth it for people depending on which is their "favorite agent". Especially as the default harnesses for said agents continue to improve...
nl 14 hours ago [-]
> Getting a SOTA model in a custom harness requires API pricing or risking an account ban, correct?
OpenAI, Kimi, Qwen, GLM and Deepseek all allow it.
I'm not sure about Gemini.
embedding-shape 7 hours ago [-]
> The problem of the sota models clamping down on third party harnesses should be stated upfront. Getting a SOTA model in a custom harness requires API pricing or risking an account ban, correct?
The opposite, how easy it is nowadays should be clarified. Codex's app-server quite literally is built to be integrated with, authentication is a breeze and it's quite stable, compared to the TUIs that are around.
It's a real shame Codex is moving in the direction of hiding stuff on local disks from users, hopefully they're revert the decision of encrypting the agent>sub-agent prompts so we get back introspection again...
wasfgwp 9 hours ago [-]
Presumably people want to hear the opinions of other people and still believe that they might learn more from the their experience than by exclusively interacting with AI models?
The alternative of that first impulse should be what exactly? Telling AI to research Medium AI drivel articles (since nobody seems to be posting long/medium form content anywhere else these days) to figure out what’s the best approach to building an AI harness?
BTW just my personal observation but I generally find AI notoriously bad at building any AI applications compared to standard software (which is not surprising given the scarcity of high quality training data)
taytus 59 minutes ago [-]
This was my first thought as well. I can read online review about a product but I rather ask my friends their experience with it. Same thing here.
gf000 3 hours ago [-]
Not the parent commenter, but most of it is surprisingly simple. You basically start with a "chat app" where you have a list of messages, send the whole conversation to an LLM and it replies back, which also gets added to the same list.
And you add a small twist, that instead of a 1-to-1 back and forth, you instead put it into a loop, where the LLM reply can itself "have a turn", e.g. a tool invocation, where your system is the one that replies (e.g. with the tool invocation's result). That's pretty much it, you have a 1 to potentially many "chat".
The harder part is getting all the "soft" parts right, like how to have well-behaving tool calls, timeouts, prevent huge cycles eating up tokens, but there are no one way to solve these, it's a fundamentally heuristic-heavy area.
behohippy 13 hours ago [-]
It's pretty simple nowadays if you know conceptually how they work. Running the LLM calls in a loop with tools is an agent. You only need 10 or so basic tools to accomplish nearly anything, and you can build a dynamic skill system from that. Look at https://github.com/patw/pengy, ignore the app look at the spec.md file, feed that to your current agent of choice and make your own version. Use whatever tech stack or UI you're comfortable with. Change some of the choices in how it works, so it fits what you want to work.
johndough 6 hours ago [-]
Implementing your own agent is very easy. Here is a minimal agent in 60 lines of Python without dependencies:
You only need a single tool to start with. All recent LLMs know how to use bash for reading/writing/editing/executing.
chillfox 14 hours ago [-]
Why would the language matter? Just use your favorite.
twobitshifter 15 hours ago [-]
Look at pi coding agent.
nujabe 16 hours ago [-]
It would have been much easier to clone six months ago but today Codex/Claude desktop apps are so feature packed it seems it wouldn’t be worth it.
For example, the mobile/remote control feature I find very useful but not sure it would be worth cloning. If you aren’t replicating every feature you aren’t exactly “cloning” it, you’ll just end up with a crappier version with a fraction of the features of the real thing.
dominotw 15 hours ago [-]
But dont you have to be faithful to rl environment in which it model was trained in the harness?
only labs knows what the rl enviroment was so they will always be one step ahead.
w4yai 15 hours ago [-]
> It's clearly a dupe of Claude/Codex products
Have you seen Kimi Code ?
It's hard to believe it's a different code than Claude Code.
piker 19 hours ago [-]
In that case is there not some open harness that demand can coalesce around?
Maxatar 19 hours ago [-]
There are but then you're required to pay API prices for them which can end up costing significant multiples of the price of the subscription.
jaggederest 18 hours ago [-]
I am confused why they don't just offer a subscription with bring-your-own-harness, that would be a differentiator from claude/codex I think.
bglusman 18 hours ago [-]
Actually unless they’ve changed substantially Kimi kind of does this? It’s not as advertised/focused on and the API is a little nonstandard making it hard to plug some things into, but, unlike Claude they’ll actually give you an API key you can use directly as part of your unmetered subscription. I played with it for a month or two out of curiosity, it ls not a bad value though a bit brittle and stuff
john01dav 17 hours ago [-]
The Chinese api prices are already so cheap that that is arguably not needed.
You can also get $10/month opencode go (which officially can be used with any harness) with basically every major open weight model running inference in a place that I deem more trustworthy than the subject-to-Chinese-law inference options (but research this for yourself, there are some asterisks). This is what I use (in opencode) when I want an agent for personal use. Even if I'm being fairly intense with my usage by my standards anyway), I haven't managed to run out (yet), although I usually use the cheaper models (deepseek v4 is my favorite, and I've used both flash and pro).
From the FAQ:
> The plan is designed primarily for international users, with models hosted in the US, EU, and Singapore for stable global access. Our providers follow a zero-retention policy and do not use your data for model training.
And:
> Yes, you can use Go with any agent. Follow the setup instructions in your preferred coding agent.
wasfgwp 9 hours ago [-]
Isn’t OpenCode just reselling Deepseek’s tokens over the same API? For v4-pro the prices from other providers on OpenRouter are way higher so what else could it be?
Opencode Go already seems extremely unprofitable if people use up at least 30% of their monthly tokens so its hard to imagine they’d go with several times more expensive inference provider yet show Deepseek pricing on their page.
wasfgwp 9 hours ago [-]
I think that pretty much all Chinese providers do that?
And Codex obviously allows that as well. Anthropic is pretty the main exception.
sroussey 18 hours ago [-]
Negative margins to have you hooked on someone else’s software?
jaggederest 14 hours ago [-]
I am gently presuming that they are not selling tokens at a loss in their all-you-can-eat plans like the frontier models are, but maybe I'm wrong.
Gigachad 7 hours ago [-]
Vs code copilot lets you bring your own api key for services like open router. But it usually only makes sense to do this with the Chinese models because OpenAI/Google/Anthropic heavily punish you for not using their proprietary lock in harness.
fttt 19 hours ago [-]
Yup they have a cost advantage.
They just need to be good enough and just copy.
Sorry american labs - it’s the beginning of the end.
OutOfHere 16 hours ago [-]
American labs will do fine with monthly subscriptions costing $20-300/month. They will not do fine for heavy basic LLM API calls -- it is for this that the cheap API produces substantial savings. Specialized niche provisions, e.g. excellent tool use, reliable structured output, reliable long context, cached and uncached web search, document reads, computer use, integrations, etc. also will take time for the foreign services to be good at.
PunchTornado 7 hours ago [-]
you are not a trillion company if you just get 20$ a month. if that's the case, the valuation will drop 10x
OutOfHere 1 hours ago [-]
I did note $20-300. In particular, domestic employers would surely still spend the upper end of it for each of their engineer staff. If there are 4 million software developers in the US of any job title, and if the employer of each spends $200 per month for the developer, that's $800M per month in revenue.
deepvibrations 43 minutes ago [-]
[dead]
the-mitr 7 hours ago [-]
Copying and reinterpreting/reimplementing successful technologies and processes is the bedrock of human civilization
asdaqopqkq 7 hours ago [-]
weird to all it a dupe, these are new paradigms, it's like saying BMW duped Mercedes Benz cause they both make stuff on 4 wheels
micromacrofoot 18 hours ago [-]
So much is invested in the huge American AI companies that China undercutting them with clones that work almost as well can actually hurt the US economy.
They're at the point where copying can get people 90% of what they want anyway, the moat is drying up.
stusmall 17 hours ago [-]
If you remove the word "AI" from your post it also describes the last 20 or so years of US/Chinese economic competition. They are real, serious competitor but also there is a lot of value in that last 10%. Some buyers need the best and you can charge a premium for it.
The speed in which a copier can catch up to a leader is faster than every before, but everything is faster these days. I think the threat is if can these labs catch up and pass American labs while keeping costs low, but I don't see that happening.
bergen 9 hours ago [-]
>Some buyers need the best and you can charge a premium for it.
Yes, and that is how you get a top-heavy k-shaped economy I believe. It is harder and harder to sell premium A+ products, because most people can only afford what works. If my old ice cream vendor charges me 25% more but puts chocolate sprinkles on it i'm going for the non-sprinkle version.
ajross 17 hours ago [-]
> the last 20 or so years of US/Chinese economic competition
Only with some industries, mostly electronics and light manufacturing. The rest of the history of software products doesn't look like this at all. China cloned Amazon and Meta fairly well (but only within their local/captured markets) but not Microsoft or Google and absolutely not Apple. Entertainment and culture exports are still effectively zero (like, what, three blockbuster films?) where the US, Japan and Korea define pop across the globe. Heavy industry is mixed, with decent success in consumer vehicles now but little purchase in stuff like heavy equipment or shipbuilding.
Basically it's complicated, and not really a point well suited to that kind of generalism.
wtfHN26 16 hours ago [-]
> China cloned Amazon and Meta fairly well (but only within their local/captured markets)
Americans order Chinese products from SHEIN and Aliexpress type websites.
So China did penetrate the US ecommerce market, but they are not taking on Amazon directly.
People are buying from the Chinese and reselling on Amazon, which has a good logistics network that Chinese companies can't possibly build in the USA.
> absolutely not Apple
You need to look up Oneplus to see how many people were using their devices till they announced exit from Western markets.
The Chinese Android phones are essentially replacement for a big chunk of Apple ecosystem.
If these cheap mobile devices didn't exist - Apple could possibly be selling many more devices.
> China cloned .... Meta fairly well
TikTok is giving Meta a run for their money in USA.
They had to be restricted via threat of regulation to offload stake in TikTok USA.
> Microsoft
They didn't compete with Microsoft directly as entering Western Enterprise market is hard for the Chinese.
Even Google can't beat Microsoft there till now.
massysett 15 hours ago [-]
“You need to look up Oneplus to see how many people were using their devices till they announced exit from Western markets.”
The final part of this sentence shows why there is absolutely no need to look up Oneplus.
microtonal 8 hours ago [-]
Oneplus is owned/backed by Oppo. Their other phone brands like Oppo, Realme, etc. are really popular worldwide. They removed Oneplus from some regions (e.g. EU) where some of their other brands are more popular.
I'm not sure if you are from the US, but if you are, it really gives you a distorted image of what the worldwide smarphone market is like.
E.g. in many European countries, it is 1/3 iPhone, 1/3 Samsung, 1/3 others (which are mostly Chinese brands).
cgio 17 hours ago [-]
Not British, but taking UK out of the definition of pop, is a bit too rough a cut. Also France. Look at the queues outside pop-glamorous stores. And was pop-art a pop artefact? Is TikTok redefining pop? Movies is an old measure, and even US has fallen with just franchise dominating. I think as a globe we are much more integrated and co-dependent, occasionally also in bad ways, than we appreciate.
ajross 16 hours ago [-]
I'm talking about economic activity more than the passports of the individual artists. And no, TikTok is a software product (a social media platform), not popular culture. There's absolutely popular culture being created and driven there but it's 100% NOT coming out of China. Are you high, as it were?
TikTok competes with Meta, not Olivia Rodrigo or BTS.
cgio 10 hours ago [-]
I am not high, I have kids, and can tell you they barely care about Olivia Rodrigo or BTS. You dispel passports as irrelevant for one leg but base your argument on them for the other. The contradiction is sufficient.
nerdsniper 13 hours ago [-]
> Heavy industry is mixed, with decent success in consumer vehicles now but little purchase in stuff like heavy equipment or shipbuilding
Uhh, China does over half of the world’s shipbuilding.
China is also responsible for 25% [1] of the world’s heavy equipment manufacturing and is considered to have double[2] the CAGR of the global average for heavy equipment manufacturing.
> Entertainment and culture exports are still effectively zero (like, what, three blockbuster films?) where the US, Japan and Korea define pop across the globe.
And this is really sad, because they have thousands of years of cultural heritage and also plenty of great films. Somehow, they've failed at exporting this completely.
gf000 3 hours ago [-]
Well, another way to put it is that the western markets managed to keep it out via propaganda and other soft influences on people.
vrganj 16 hours ago [-]
Xiaomi did a quite good job copying (and surpassing!) Apple.
They even got the car Apple always wanted, but never managed to build.
micromacrofoot 16 hours ago [-]
the difference is that the US economy is currently over-investing in AI to the point where it's a significant portion of the economy, it's the biggest competitive opportunity in quite a while
adventured 17 hours ago [-]
China isn't undercutting anything. Kimi has to be hosted somewhere and is extraordinarily expensive to operate at Fable-levels of capabilities. The moat is (and will always be) the cost to actually operate these models, and that cost will continue to soar, it will not reverse, and the hardware will never keep up such that at-home use somehow becomes economical.
It's like releasing a cutting edge search engine, proclaimed to be on par with Google. Oh yeah, I forgot to mention, you need to actually run it somewhere. One of the core moats for Google has been the cost to scale and compete globally with a search engine, which only a few entities on earth could even attempt. Somehow the HN crowd forgets this every single time. The same claims were endlessly made regarding Uber, as though the app was the hardest part of competing with Uber. Here's a hint: the model isn't the only super hard part of the total process at this point. Try running something akin to GPT 5.6 for a billion users, see how much that costs.
The winners will be the owners of the subscriptions and API usage. That's going to be OpenAI and Anthropic as of now, possibly Google will stay in the fight with their scale advantage focused on the consumer. It will never be the open weight models out of China. Who is going to invest the trillion dollars into infrastructure needed to run the latest version of Kimi 3-5 years out, for a billion users? There's only one entity that would ever consider it, and that's China domestic.
And the real money (for a sustainable business model allowing for constant massive reinvestment & infrastructure maintenance) is in pairing up advertising, which is another spot where the open weight models from China will never compete. It doesn't matter if the HN crowd hates this outcome, nothing will stop it from being the future core of mass consumer usage. And the business use will stay with subscription + API use as well: the best option for that today is OpenAI and Anthropic.
bergen 9 hours ago [-]
>Who is going to invest the trillion dollars into infrastructure needed to run the latest version of Kimi 3-5 years out
Everybody that is concerned about their data ownership and residency, and how the US political system is behaving right now. There is a huge incentive to cut off ties with API and subscription providers, especially those based in the US.
micromacrofoot 16 hours ago [-]
If you think Open AI can make hundreds of billions of dollars selling subscriptions for a chatbot I have a bridge you may be interested in.
aiisdoomed 17 hours ago [-]
[dead]
reilly3000 17 hours ago [-]
[flagged]
micromacrofoot 16 hours ago [-]
As a random consumer why would I trust an American company more than a Chinese company? either company would throw me into a wood chipper for money if they could get away with it.
lorecore 16 hours ago [-]
There are no entities on earth I trust less than US corporations and the US government (well, Israel but you’d have to literally be suicidal to willing use Israeli tech). I’ll happily give China my data. As far as I’m concerned, they’ve proven themselves to be a force for good, or at least neutral.
TacticalCoder 17 hours ago [-]
> Their bread and butter and claim-to-fame will continue to be low-cost, near-frontier models, ...
K3 is beating Fable on several benchmarks. So I take it you don't consider Fable 5 to be frontier.
What are the frontier models?
adventured 17 hours ago [-]
People endlessly claimed the same thing about DeepSeek upon its release. they claim it every single time a very large cutting edge model is released out of China. It's a combination of propaganda, some truth, and the faux open culture desperation to see big tech get destroyed (somehow better if big China takes its place instead).
(that's just one, there are others... and several are claiming that those saying "yes sure it's just as good, but it uses more tokens" ain't really true either).
And I don't think anyone is excited about China releasing anything: I think people like the idea of open-weights.
9 hours ago [-]
Havoc 19 hours ago [-]
People saying copy aren't wrong...but if you can offer a copy at 1/5th of the price then you've got a winning product not a copy
palata 19 hours ago [-]
All bikes look the same, all cars look the same, all cameras look the same, all bridges, all dams, hell all smartphones look exactly the same! The whole goddamn point of UX is that you make something that is usable, and hence familiar to your users.
People who say "I was making GPUs before them, and they built their own GPUs that behave like GPUs so they copied me" don't understand how stuff is built. The hard part in engineering is not "imagining the high-level concept", it's actually making it work. Even if you can open electronics and study it to design and build your own, it requires a lot of expertise. And if you manage to do it, then you are an expert, period.
I'm sure many people find comfort in saying stuff like "You know what? I was a bit of a visionary because when I saw the first personal computer, I imagined that it would be cool if it could be orders of magnitudes faster and smaller such that it fits in a pocket". As if that was the hard part.
Typically, too many people spend a lot of time talking about UI and stuff like "unpacking" as if that was the most important part. But usually that's because they have no idea about how it works under the hood, so the only thing to discuss is whether the round edges are great or not.
xboxnolifes 18 hours ago [-]
A good UI/UX is noticed and appreciated by many. A great UI/UX goes completely unnoticed by most.
fttt 18 hours ago [-]
This is false.
Apple’s UI/UX is the reason why they are adored from a physical attraction perspective.
saylisteins 18 hours ago [-]
Apple UI/UX sucks though, but all the other alternatives also suck.
hypercube33 7 hours ago [-]
BeOS didn't suck. It's UX stood out and was utilitarian.
ykonstant 5 hours ago [-]
BeOS was an absolute gem.
davidpapermill 7 hours ago [-]
Keynote has probably the best UX of any software I’ve ever used.
bogdan 7 hours ago [-]
Powerusers be damned.
theK 18 hours ago [-]
I think it can safely be argued that (only) good UX but also great marketing are the reason of that.
xboxnolifes 18 hours ago [-]
They have good UI, it's noticed and appreciated by many.
ChrisClark 17 hours ago [-]
Yes, Apple's UI/UX is good, not great. Like far from great. So he's still correct
JacobAsmuth 19 hours ago [-]
Is Kimi 1/5th the price? Artificial analysis has it at the same price as GPT 5.6 Sol while performing worse.
vardalab 18 hours ago [-]
Yeah, but maybe Kimi doesn't pretend to know better than I do. Like, I just had a task today where I had a silly form where I wanted to copy in a signature from one document to another document. And, you know, I could have just used some other dumb tools, but I decided, hey, let me us ask Codex to do it. But it started lecturing me on how we can't do this kind of stuff. And it was just pure silliness. So hopefully Kimi Work doesn't try to pretend that it knows better and lets me decide on ethics.
This blog post here summed it up the best. These are tools, so let them be tools.
Gmail won on price dumping and commoditising the complements, as did Facebook and Instagram and all of American Tech for two decades. They've just met an opponent able to beat their economics because their shareholders are less greedy. There's only one answer to this, same as for Facebook vs TikTok: Lobby for protection
sixtyj 18 hours ago [-]
Winning product that can’t answer a simple question regarding Uyghurs or Tiananmen Square… it is a vulnerable product…
shepherdjerred 16 hours ago [-]
As opposed to Claude which has flagged:
- anything related to piracy
- legit security work (audit my infra, pentest it)
- disabling a safety mechanism on my food processor
- reverse engineering
- creating style guides inspired by other games/companies (for fan projects)
- questions about how nerve agents work and how they can be treated (for a layman)
nozzlegear 16 hours ago [-]
It's an open model, abliterated versions will appear on HF in the fullness of time.
Havoc 18 hours ago [-]
I'd prefer it uncensored too but this objection was insightful in 2023. Everyone and their dog knows they're censored on topics sensitive to their country, much like western models are censored for western woke sensitivities. Nobody cares anymore as long as the reasoning is good and the price is low
sixtyj 17 hours ago [-]
Yes, “Nobody cares” is what scares me.
If we don't care about the other person than who we are?
On the other side, I am not a woke optimist that everything on Earth is lit by Sun…
cindyllm 16 hours ago [-]
[dead]
fuglede_ 6 hours ago [-]
[flagged]
A1kmm 16 hours ago [-]
[flagged]
AyanamiKaine 7 hours ago [-]
You know what, all of the computer power and so. They still can’t vibe develop a Linux client.
nunodonato 6 hours ago [-]
this was my first thought...
postalcoder 20 hours ago [-]
kimi has been particularly shameless in copying codex 1:1, wow.
Like, I get it, before condex there was conductor and a ton of other guis but this looks like they just copied the code.
Also, their privacy disclosure is incredibly misleading:
> How does Kimi Work protect my privacy when accessing local files?
You have absolute control over your files. The built-in Ask before acting safeguard means Kimi will prompt you for explicit authorization before it modifies, overwrites, or runs code within your local directories. Nothing happens without your consent.
They fail to mention that is has unfettered read access to your files. ie, without your consent.
gruez 20 hours ago [-]
>They fail to mention that is has unfettered read access to your files.
Isn't that totally expected of a coding agent? Otherwise it's like complaining dropbox "has unfettered access to your files".
postalcoder 20 hours ago [-]
Yes, but the answer is an indirection.
“How does Kimi Work protect my privacy when accessing local files?”
It doesn’t protect your privacy. It’s like asking, “how do I know you’re not spying on me?” And getting the reply “we cannot physically enter your house.”
gruez 20 hours ago [-]
>It doesn’t protect your privacy. It’s like asking, “how do I know you’re not spying on me?” And getting the reply “we cannot physically enter your house.”
In light of the recent grok build snafu, "Nothing happens without your consent" seems like an upgrade. Moreover what are they supposed to do here? By that logic should any sort of non e2e email/storage provider not be able to put "How does [product] protect my privacy" in their faq?
Looking through their privacy policy, it looks like the bigger issue is that they are (or refuse to refute) training on your data/prompts. That's probably what people should be complaining about rather than complaining about how it "has unfettered access to your files", when that describes all coding harnesses.
postalcoder 19 hours ago [-]
Yes I’m saying a question answered deceptively should not be one of the four featured questions on your product page.
> Looking through their privacy policy, it looks like the bigger issue is that they are (or refuse to refute) training on your data/prompts.
You’re making my entire point. They’ve designed an ingestion engine that is not private by design. Any sort of privacy posturing is wrong.
abdullahkhalids 18 hours ago [-]
"How does Kimi Work protect my privacy" can be interpreted in two ways. The first is "How does Kimi Work protect my privacy from Moonshot?" They did not answer this question. The second is "How does Kimi Work protect my privacy from other third parties?" They are answering this question by saying, we won't upload your files to some third party server without your consent.
3 hours ago [-]
preg_match 37 minutes ago [-]
This is why I run CC under podman.
anon373839 13 hours ago [-]
It is, but I really think this project would be better as open source. They are already all-in on open for the most valuable part (the frontier model)! They might as well make the harness fully transparent so that questions about what's being accessed and transmitted can be avoided.
I personally wouldn't use any agentic harness from any company, American, Chinese, or otherwise, that is closed source. The Grok fiasco shows why.
questionableans 20 hours ago [-]
The repo you’re working on, sure. But all files?
ashishb 20 hours ago [-]
> The repo you’re working on, sure. But all files?
Yes, any tool, including any coding agent, has access to all files $USER has access to.
Sorry, I meant that’s not desirable behavior that the user might expect. I understand that coding agent tools tend to play fast and loose with access because it’s not their own privacy/security at stake.
ashishb 13 hours ago [-]
This is true for all CLI tools on Mac and Linux (and other operating systems from that era).
Historically, everything you ran was trustworthy.
Android and iOS were invented in an era that does not allow this because the risks became evident by then.
gruez 20 hours ago [-]
Not sure what that's about, I was just copying the wording from OP. Their harness probably has the same restrictions as most other coding harnesses. That is, the read tool gives all project files by default without prompting, and everything else requires manual approval (or opting into auto-run all). If you decide to run it from your home directory however, then your "project" is all your files.
20 hours ago [-]
20 hours ago [-]
supriyo-biswas 20 hours ago [-]
Everyone’s saying that it looks like Codex but TBH it just looks like all the AI chat websites on the side and some frequent actions on the top.
Lio 8 hours ago [-]
You have almost no control with Codex or Claude in that you have to trust them not to break their own rules.
You have almost no control with Kimi either, they can also say one thing and do another. You will not be able to sue a Chinese company if it breaks the law.
I can think of no faster way to hand over your trade secrets or intellectual property than to run something like this.
I think success and dominance for agent providers will eventually come to which ever is able to best guarantee that they don't damage their customers businesses not the cheapest to run.
disiplus 4 hours ago [-]
They all are pretty similar. And if it was copying anything, I would say more inspiration from claude desktop then codex. The Zcode is more like codex.
Do we still fall for the China = must be spying, US = wouldn't spy unless it's disclosed?
It's fair to say whatever software you run from any country of origin is hoovering up as much data about you that it can get away with.
If you haven't compiled open source, audited code and are running on that, all bets are already off.
Danox 19 hours ago [-]
Sharing among AI friends what’s the problem, scraping the Internet or hiring new employees between companies who like to share? It’s a tradition among the AI model makers…
homarp 19 hours ago [-]
>kimi has been particularly shameless in copying codex 1:1, wow.
No, you need to apply the sandbox to the codex process itself. Codex does not do this.
questionableans 18 hours ago [-]
It gets tricky when you want to say “allow this particular tool to have a little more access.” Like allow the codex client to access the GPT API but not some random other site the LLM learned about. Or like letting git write to .git to commit changes but don’t let something install git hooks. Or allow downloading certain packages/versions from a site like PyPI, or allow certain operations on certain GitHub repos in a way that doesn’t line up with how you can configure an access token.
codemog 20 hours ago [-]
How dare they copy the largest plagiarism machine ever created.
FooBarWidget 16 hours ago [-]
The Dutch have a saying: it's better to have stolen something well than to have invented something bad.
grg0 14 hours ago [-]
Words to live by.
18 hours ago [-]
dyauspitr 20 hours ago [-]
[flagged]
victorbjorklund 20 hours ago [-]
As if American companies don’t copy each other or copy what Chinese firms does.
austinthetaco 20 hours ago [-]
there is a pretty stark difference between independent US companies copying each other and a state backed chinese company taking data and IP from american citizens.
JoshTriplett 20 hours ago [-]
As opposed to all the shameless copying of all the training data without any respect for its licenses or attribution?
"You're trying to kidnap what I've rightfully stolen!"
arjie 20 hours ago [-]
The UIs of these systems are pretty natural to come up with. I had a prior program that was not dissimilar. Any IP system that disallows this will likely consider almost all GUI free software to be in violation as well.
In fact, it would be pretty hard to come up with non-infringing software. Did ChatGPT infringe on MSN Messenger? Or Arc Browser?
No, this kind of trivial UI element is not an acceptable use of intellectual property protection. As much as I believe China’s dominance is a threat to the present world order I cannot imagine that attempting this style of IP regime will make us more competitive.
0xbadcafebee 20 hours ago [-]
As opposed to the "state backed" OpenAI and Anthropic that were caught stealing IP in order to develop their products, that also take data and IP from American citizens? Does being less-state-backed make the theft more okay? Or is it okay because they're not Chinese?
Yes China has companies that compete with existing companies, to the point they are copying. Our companies do the same thing (you're gonna tell me no American AI company has stolen the interface of another? or "borrowed" code?). Yes some of China's companies break laws. Our companies also break laws. YCombinator's funded companies have repeatedly bent and broken laws for over 15 years, to the point it's surprising when they don't break a law to gain unfair advantage.
The anti-Chinese rhetoric needs to be reigned in a bit. Yes the Chinese government is culpable in crimes against humanity and abuses of power - but so is the US government and US corporations. People in glass houses shouldn't throw stones. You wanna call out Chinese companies/government? Fine, but don't pretend it's just China.
bnfcl 20 hours ago [-]
Pretty shameless copy, but also shows how easy it is to do so. OpenAI and Anthropic had first-mover advantage, but easy come, easy go.
fbrncci 17 hours ago [-]
Safe to say there is no moat.
adventured 16 hours ago [-]
You mean other than the zillion dollars of infrastructure you need to run these systems for a billion users. And the extreme cost to sustain that operation day to day. And the cost to upgrade the infrastructure forever.
Remind me which entities (govt or corporate) are going to subsidize that forever. Remind me which entities are going to front the cost just to scale up.
By that premise - wherein you forget everything other than the first ingredient (the model) - Google has no moat either (got $100 billion dollars lying around?). Nor does Uber (have tens of billions in your bank account to clone their business?).
I'm certain building an app (Uber), or building a search engine (Google), is the super duper hard part.
Slapping a GUI on Linux will kill Windows, any day now.
fbrncci 15 hours ago [-]
Sure if you want to bake a cake you also need to invent the universe first…
As long open weight models get released; no moats are going to exist. Both windows and Linux are weak comparisons.
wasfgwp 9 hours ago [-]
Hyperscalers would generally be expected to sell compute to anyone who is willing to pay assuming that supply/demand for datacenter hardware evens out at some point that should become true again.
blackoil 12 hours ago [-]
If money is the only moat, you'll see race to bottom till ROCE goes down to gsec returns.
jkwang 4 hours ago [-]
The local-first approach for agent workflows is compelling — keeping context on-device addresses real privacy concerns in enterprise settings. Curious how it handles long-running task state persistence.
BetterThanSober 1 hours ago [-]
I wonder how those AI company can snatch a very good domains and how much did they pay, z.ai is just peak
kvisner 20 hours ago [-]
I wish they had some kind of US hosted option, NDR policy, or something like that. I love the price and power, but I have concerns around data sovereignty and leaking IP to an overseas company.
mrinterweb 20 hours ago [-]
As soon as the K3 weights are published on July 27th, there will be many US providers hosting the model. I realize model hosting doesn't really apply to kimi work specifically, but in terms of accessing K3, there will be US options likely in 7 days. Just look at OpenRouter to see the providers hosting K2.6 https://openrouter.ai/moonshotai/kimi-k2.6.
ericpauley 12 hours ago [-]
Looking at these pages reminds me of browsing jellybean components on DigiKey. Amazing for the consumer, but one does wonder: What are all these DotAI infra companies’ plans to justify any of their valuations if they’re just selling commodity compute on OpenRouter?
simlevesque 20 hours ago [-]
It'll most likely land on Bedrock when the K3 weights are released.
nickthegreek 19 hours ago [-]
Will it? Bedrock doesnt have deepseek v4, GLM 5.2, Qwen 3.6, minimax m3.
HarHarVeryFunny 17 hours ago [-]
Fireworks AI has all of those, and is cheaper than Bedrock.
oh_no 18 hours ago [-]
it has kimi 2.5, which isn't to say this will show up but who knows
fbrncci 17 hours ago [-]
Azure should have those.
ilamont 20 hours ago [-]
Same. No way I am uploading data to a PRC company. It's not just an IP issue ... there's a very high likelihood such companies will be restricted in the United States, even if they try "Chinawashing" stunts like Bytedance.
windsignaling 9 hours ago [-]
I never really understood this sentiment. Some foreign company / government cannot do anything to me. My own government, on the other hand...
wepple 3 hours ago [-]
A foreign company can’t steal your IP to build out competing products?
Or use source code to find novel vulnerabilities and deeply compromise your company?
dwedge 5 hours ago [-]
Often it's the law. I don't trust the EU more than I trust the US or China, but I also cannot transfer data outside of the EU
stiltzkin 15 hours ago [-]
[dead]
nunodonato 6 hours ago [-]
For anyone looking for truly open alternatives to desktop agent apps (like claude cowork), I suggest taking a peak at Goose: https://goose-docs.ai
gandalfgeek 20 hours ago [-]
wow -- "Let's take something off your plate" just copied word-for-word from the Claude Cowork UI.
And it is above the fold in their hero image!
dpacmittal 9 hours ago [-]
Good. Anthropic, OpenAI, Google built their models by shameless training on works of millions of people without any compensation.
matesz 7 hours ago [-]
That is an awful take. Although Silicon Valley's tech bros are shameless in their own way, there's no justification for symmetrizing the two.
viktorcode 6 hours ago [-]
For all intents and purposes this is legal. As is distillation. No justification is needed.
kakacik 4 hours ago [-]
No its pretty realistic. Nobody is losing their sleep when ultra-wealthy thief gets robbed for their stolen possessions or money made out of those, do they.
ben8bit 5 hours ago [-]
I'm surprised by the negative its-a-copy sentiment.
Of course it is. Just like Linear/Mailchimp/etc. (almost everything) are copies of other things. These harness+work apps are becoming a product category and I'm excited about this from the Kimi/Moonshot team. In the end, more competition in this space can only be good for the user.
ZackMomily 4 hours ago [-]
The potential for local agents to handle the heavy lifting is incredible. When I'm deep in complex technical work, I rely on Taskai on my Android to capture all those small, distracting tasks that pop up so I can stay in the zone.
jmacd 3 hours ago [-]
Everyone calling this a copy is willfully overlooking that the major labs are nakedly copying each other AND smaller vendors constantly. Codex and Claude Code didn't just materialize at the same time. And frankly, they both copied Aider in the beginning.
Then there is reasoning itself.
Agent SDKs.
On and on.
This isn't a game of hide and seek. It's a race. The fact that Kimi is Chinese doesn't make their stride any more a copy than 90% of what the major labs are outputting these days.
JSR_FDED 2 hours ago [-]
To me all these coding tools look indistinguishable from each other. If you changed the logo on one I wouldn’t notice.
airstrike 21 hours ago [-]
Still a chat interface, so definitely not an "AI Desktop".
Aren’t there all chat interfaces? Same goes for Claude Work, ChatGPT Work, etc
airstrike 21 hours ago [-]
That's precisely the problem.
People are building UI/UX for a paradigm that is so utterly new that they miss the mark entirely.
Everyone defaults to a big chat input because that's all they know. It's the expectation, so it's safer, faster, and cheaper to not deviate.
It's also wrong and bad for work.
datakan 20 hours ago [-]
> It's also wrong and bad for work.
Say's who? Why? I honestly don't get the problem. OpenAI just did what you said with the Mac app and were forced to roll it back because of the uproar. A chat box is simple, relatable, easy to use. K.I.S.S. is a thing
airstrike 20 hours ago [-]
> Says who.
Says everyone who's not using this stuff. It's an empirical argument. Is anyone actually using this for work? How long has it been since Cowork was released?
It's such an inadequate tool for work it reeks of SF hubris to think you can just slap a chat input box onto a PC and replace 90% of white collar jobs.
cortesoft 19 hours ago [-]
A CLI interface has been perfect for my coding work, why is it bad?
airstrike 17 hours ago [-]
it's pretty great for coding because the CLI provides the model with all the context it needs and with a way to verify the result of its actions via linting, compiler messages and program output
the rest of "work" doesn't have that luxury
dymk 19 hours ago [-]
Copying a block of multi-line text out of the agent doesn't work over ssh, for instance.
o0-0o 21 hours ago [-]
How would you fix it?
airstrike 20 hours ago [-]
Models need richer context to do well. They also generally need a verifier, but better context is already an improvement. So to fix it, you need to rethink UIs to be agent-first.
I'm not saying Kimi Work and its peers are entirely useless. I'm just saying they're a hack that puts a pretty low upper limit on agent capabilities and speed.
throwaway613746 20 hours ago [-]
[dead]
replete 6 hours ago [-]
Amusingly, the WebBridge video demo[0] shows the model incorrectly including the answers into the question field
Though it's ever so slightly broken (the sub-agent tracking stop button does nothing, some toggles in the Settings are not toggleable and so on, really slows down with long conversations to the point where keyboard input lags by seconds, think 600+ turns).
Personally, I still liked ZCode better and will probably write a blog post about my experience with K3 too, the harness might need some more work, but the model is really, really good.
grandimam 19 hours ago [-]
Is there an opensource version of such a tool. I would really like a desktop app and use different models instead of a CLI.
> Over the past 48 hours, demand has pushed close to the limits of our current capacity. To protect the experience of existing subscribers, we're temporarily pausing new subscriptions and prioritizing compute for current members. Existing subscribed users are not affected.
> We're adding capacity as fast as we can and will reopen new subscription spots in batches.
9dev 20 hours ago [-]
That might even be a beneficial move, creating (well, actual, not artificial) scarcity works well to draw interest usually. Curious how this one plays out.
First time I've ever seen something like this. Fascinating.
OsrsNeedsf2P 21 hours ago [-]
Gotta generate that FOMO
EchooAI 6 hours ago [-]
Someone knows how I can use Kimi from Pi Code Agent?
nunodonato 6 hours ago [-]
if you have an API key, its as easy as configuring any other model/provider
sara011 12 hours ago [-]
I feel that Kimi’s overall design is quite similar to Codex, and I hope it can excel over Codex in certain functional aspects.
dvduval 20 hours ago [-]
The Chinese marketing blitz is on! Ha ha
Guess where the models are gonna be hosted? Hint, not China.
fhub 14 hours ago [-]
The most astonishing thing to me about the AI boom is that nobody really has managed to establish vendor lock-in. Switching is so easy.
N_Lens 9 hours ago [-]
It's like this in the early days of any technology. It reminds me of the early days of the internet before everything became hyper optimised algorithms.
It's like the late stages of a monopoly game - it's not fun for anyone except the main winner.
ingvay7 20 hours ago [-]
Looks like this can use webBridge, run Python and shell code in the background. Cowork can take over application UI as well which is still a differentiator (and a higher security risk) unless kimi offers it elsewhere.
2001zhaozhao 15 hours ago [-]
I wonder when they are going to start realizing that on-premises self-hosted is the solution over local
wild_egg 21 hours ago [-]
Is there a link anywhere for a docs site for this? Really curious to know what "deep data sources" they have set up for the Native Global Market Data feature.
while it's true the model layer is getting commoditized, there is absolutely no way we are migrating any serious enterprise workflows to Kimi work. i think chinese models will continue to have an adoption problem.
bilsbie 21 hours ago [-]
Could I use the browsing feature to search for land to buy? Or is there an easier way I’m overlooking?
Hoping to find something on a creek with a Mountain View and fairly remote.
bogometer 11 hours ago [-]
Am i the only one that is wary of connecting kimi to my desktop and filesystem. Very different beast than using its API via OpenRouter.
18 hours ago [-]
aussieguy1234 14 hours ago [-]
If history is anything to go by, in the next week we'll see a distill of GPT 5.6 or Mythos that is not as powerful as either, but pokes its head just in front of Kimi K3.
aliasxneo 18 hours ago [-]
Has anyone cancelled their $200 ChatGPT subscription and started using Kimi? It'd be an interesting metric to measure. I for one have no motivation to use this model. Nonetheless, I'm always happy to see more competition.
sixtyj 18 hours ago [-]
There should be a benchmark re Tiananmen Square and Uyghurs among LLMs.
Grok answered, ChatGPT answered, Claude answered.
Chinese Z.ai replied “Content Security Warning: The input text data may contain inappropriate content“.
So it is nice that Kimi is cheaper but for what price?
literallywho 13 hours ago [-]
I've been subbing to Claude for 2 years and somehow the questions of whatever happened in Tiananmen (I know already anyway) have never once came up, but Claude (especially Fable) is now famous for refusing to work on things people want. And even pushed back against me when I was doing asking to research some people famous (infamous) in Israel-Palestine conflict. I really don't get why these "chinese gotchas" are keep coming up in every thread, they are mostly entirely inconsequential to getting actual work stuff done while same can't be said about Fable or others. Once, Gemini refused to help me make an infographic about women in STEM because the specific woman I was doing research about has died a few years ago, other models had no such qualms. All these "gotchas" are quite arbitrary.
mempko 10 hours ago [-]
I can second this. I was using Fable for some research and fable said it wasn't going to do it and downgraded to opus. Switched to K3 and continued my work. And it worked really well for what I was doing. You can easily switch claude code to use K3, it took like 30 seconds.
HarHarVeryFunny 17 hours ago [-]
So for your Tiananmen questions go to Fable, and for the Fable-nerfed subject matter go to Kimi (or GLM, as Hugging Face were forced to do when they were recently hacked and the nerfed US models refused to analyze it).
gizmodo59 19 hours ago [-]
that looks exactly like the recent codex!
aussieguy1234 15 hours ago [-]
Agents are quite capable for any work involving CLI (not TUI) applications.
Seems to work for me to manage my emails. I have Proton Mail bridge and `mbsync` dumping all mail to a local folder, with an inotify watch script to react to new emails and classify them as either needing my attention (ignore) or something that does need my attention (send me a notification).
I've been looking for a good CLI spreadsheet editor
FooBarWidget 16 hours ago [-]
I'm kinda confused given that they're from China. The Chinese Internet is very different from the western Internet. The web is way smaller, and a lot of useful content is behind app-based walled ecosystems such as Wechat, Douyin and Xiaohongshu. This makes web automation much less useful. And I don't see them marketing something like Wechat automation?
dmix 17 hours ago [-]
When they release Kimi Design and I'll consider moving over
bofadeez 18 hours ago [-]
They're running like 10 tokens per second, constantly timing out, and launching new products?
How about deploy some inference GPUs first
LAH0009 18 hours ago [-]
Read the privacy policy.
m3kw9 20 hours ago [-]
It rubs me the wrong way that they have to copy everything, the UI is almost exact copy of Codex. The entire mind set of just copy the best is holding them back.
Paradigm2020 10 hours ago [-]
It's not about copy the best, it's about reducing friction for someone coming from a competing product.
Hence why everyone uses the same play, stop etc "buttons" / signs on "mediaplayers" whether virtual or real. [1]
Unless your user really trusts you / doesn't have an alternative reducing friction is better than being subjectively better [2]
[1] triangle, square etc...
[2] bottom placement versus top placement of browserbar on mobile phones... From an ergonomics perspective way better but from a UX experience worse... Hence chrome changed top to bottom but was forced to change it back on android, while apple forced their users from top to bottom and didn't have to move it back
timothyduong 16 hours ago [-]
Give them time, they'll work out their (Chinese UI/UX) groove just like they're working out EVs in the Chinese market. Copy first, improve and adjust later.
Loocid 13 hours ago [-]
I hope they don't bring Chinese UI/UX to it. Native Chinese apps are a mess from a western perspective.
bluerooibos 15 hours ago [-]
> It rubs me the wrong way that they have to copy everything, the UI is almost exact copy of Codex
I'm sure OpenAI haven't copied or stolen anything without permission - oh wait a sec..
The US loves capitalism because it pRomOtEs cOmpEtiTion. Well, here's the competition you asked for, lads - suck it up.
fellowniusmonk 21 hours ago [-]
I have a UI I developed from first principles about 10 years ago, I use it to replace my os, its like my personal do everything emacs os but not at all emacs, and its funny to see other Uis iteratively convergence on it as context finally gets its due.
nubg 21 hours ago [-]
What's your UI like?
dools 10 hours ago [-]
Kimi Work apparently
fabiofzero 20 hours ago [-]
If this is what pops this bubble, I'll take it!
iJohnDoe 19 hours ago [-]
Will be cool until the AI goes ape shit and starts deleting all your files, wipes out your corporate file share, but not before uploading it all online.
Not saying Kimi will do this, but it's perfectly reasonable to expect this to happen, because there is really nothing anyone can do to prevent it. No, this is not meant to go in an isolated VM on a Linux box in a cheap VPS somehwere. This is meant for regular home users and corporate users to install on their primary system where all their personal and corporate data is available.
The above is a PSA (public service announcement) not just for Kimi, but also for GPT and Claude. If you don't understand how it's impossible to prevent the above from happening, then you should never use one of these tools.
dakolli 18 hours ago [-]
Nobody actually producing hard goods, real world value and actual software are using these cute tools. Its completely worthless to people actually doing things.
bogdan 18 hours ago [-]
It's worthless until it isn't.
fttt 18 hours ago [-]
[dead]
cute_boi 20 hours ago [-]
No linux? They should ask k3 to add linux feature lol.
senectus1 15 hours ago [-]
Not available for linux...
thats pretty disappointing.
fHr 19 hours ago [-]
China copying shit blatantly haha but winning surely
m_bashirzadeh 7 hours ago [-]
[flagged]
strathmeyer 20 hours ago [-]
[dead]
19 hours ago [-]
rvz 21 hours ago [-]
For the past 3 years, many software engineers were coping that AI (particularly LLMs) was only going after juniors. Given the documented history of mass layoffs related to AI from 2024 to today, it is clear that everyone including seniors and staff level folks are just as affected.
So let's just say, if your whole identity is for being a typical software engineer no matter the seniority and nothing else, perhaps it is time for you to reconsider options as of course 100% avoiding AI is futile at this point.
There will still be new jobs, but there will be no need for more excess people, even under Jevon's paradox. Software engineers were just the test bed for this and now there is an oversupply of SWEs without jobs in the market and will have to use AI tools like Kimi Work and Claude Cowork to be employable.
rootusrootus 19 hours ago [-]
I have never been more sure about the viable future of software engineering as a career than I am after experiencing everything all the way up to and including Fable.
slopinthebag 21 hours ago [-]
Do you actually believe this and are concerned about it?
rvz 21 hours ago [-]
First of all to reply to your deleted comment, yes this is completely relevant to the article.
As token costs drop significantly (thanks to local models and hosted Chinese models.) employers will consider using cheaper models like Kimi Work and others, even if they are already using expensive ones like Claude Cowork. They won't be able to operate without it.
Secondly, do I actually believe this? Of course, I already said that there will be more mass layoffs because of AI years ago. [0]
Who cares. Competition is good for the user even if it's built on plagiarism. The other site was probably designed using an LLM anyway. LLMs can in some aspects converge wrt their outputs.
crypto_is_king 15 hours ago [-]
Also known as the "Xi Jinpeng learns about your business" app.
mrmiraclebr 15 hours ago [-]
I surely hope so!
piker 19 hours ago [-]
It's a mistake to make this such an obvious copy. It will feed the narrative that Chinese entities cannot be trusted by the West. They could have varied it even slightly. It's one thing with hardware because customers don't need to trust suppliers any further than they can throw the box. But these labs seem to be battling for enterprise knowledge work-share. Trust is paramount, and they're already behind on that front. Own goal.
prmoustache 19 hours ago [-]
Copying is not frowned upon in the LLM ecosystem. This is its very reason of existence.
bko 19 hours ago [-]
How to make an apple pie from scratch with no copying:
Step 1: invent the universe
abdullahkhalids 18 hours ago [-]
Funnily enough, you will have to pretty accurately copy the laws of our universe to make an Apple pie. Even small changes will change the properties of atoms, and hence all of chemistry and biology. And there won't be any apples or wheat.
piker 19 hours ago [-]
The baker is not asking you to trust them with your entire knowledge base in exchange for an apple pie.
ForHackernews 18 hours ago [-]
Why do you trust Sam Altman?
piker 17 hours ago [-]
I don't trust him or Dario frankly, but I don't run a Fortune 500 company. They obviously do.
piker 19 hours ago [-]
Perhaps, but "we run the exact same business as Anthropic and OpenAI to the pixel at 0.1% the price" is going to raise eyebrows.
dymk 19 hours ago [-]
Eyebrows will raise at Anthropic / OpenAI, perhaps. Why are they charging 1000x more for the exact same business?
The 'distillation is theft!' shtick won't last long. In fact, unlike Anthropic/OpenAI, these Chinese labs actually had to pay for that 'stolen' training data.
piker 19 hours ago [-]
> Why are they charging 1000x more for the exact same business?
The implication they want to avoid, I'm suggesting, is because the CCP isn't plugged into and funding those entities' activities at a loss. Or they're lying about ZDR, etc. etc.
oh_no 18 hours ago [-]
GLM 5.2 and Kimi 3 both had huge API pricing jumps (GLM most expensive chinese model, by a lot, then then Kimi 3 a lot higher than that). the cost advantage is rapidly decaying. the oft-cited cost per task makes Kimi look good vs Anthropic but even, or slightly vs OpenAI
Daishiman 19 hours ago [-]
Once the OpenAI/Anthropic-driven hype dies down people with decision-making power will be taking a look at the numbers and look at real productivity metrics. And they'll see it makes little sense to pay so much when competition is around and similarly good.
fttt 18 hours ago [-]
This is already happening.
Firms aren’t going to wait - their valuations are driven by it. So too is the compensation of those running them.
fortylove 19 hours ago [-]
Why?
piker 19 hours ago [-]
For fear that the data they're entrusted with will be copied or that there is some nefarious reason like state sponsorship that makes the activity economical?
kalcode 19 hours ago [-]
Meh, we should just ignore that kind of propaganda. We copy things too, we use a system to protect IP because copying is such a normal and strong human thing to do.
In fact, when we don't discuss China, most find modern software patents and copyright to be abusive.
Finally, copying UX standards has been done for ages, it gives users a comfortable way to start using a product and instead of fighting that to be unique, some rather embrace it.
It can be jarring using so many different apps if each one tries too hard to be unique.
And this is my two cents, here it makes sense to have a similar interface, it's ultimately an app with chat sessions.
piker 19 hours ago [-]
I do agree with the UX idea of familiarity, but copying the exact salutations, etc. just seems egregious.
Why not let the model speak for itself and contribute to an open harness?
catigula 19 hours ago [-]
Narrative?
Kind of like the sphere Earth narrative.
BowBun 19 hours ago [-]
Pedantic.
> A narrative is a structured account of connected events, experiences, or ideas, commonly referred to as a story
Regardless of intent, it is how you tell your story.
piker 19 hours ago [-]
I don't think the comment was intended to be pedantic, but rather to reframe the message as scientific fact.
catigula 19 hours ago [-]
I think you misunderstood. “Narrative” typically frames something as polemic or open to interpretation, which this is about equally so to the whole “spherical Earth” story.
It's clearly a dupe of Claude/Codex products (Codex especially, styling-wise), but I think Kimi's goal here is simply to appear on feature-parity with bigger labs. I doubt they'd want to invest much into designing a UI for "the future of agentic work" from the ground up.
Their bread and butter and claim-to-fame will continue to be low-cost, near-frontier models, for which they need to at least appear to have some app layer to plug into.
And, in some ways, duping is a great way to show people that even the app layer can be commoditized.
Actually, Jobs self-servingly refactored then misattributed to Picasso the line,
Jobs did seem to properly remarket Picasso's intent, though, as Picasso had said:No one would buy a car steered with pedals; even if that is better (hey planes do it!) - every car maker is "copying" steering wheels and putting them on their cars. Is it controversial? If not why not?
(Before the wheel, ships were steered with tillers - which early cars also tried, interface-wise.)
Everyone is already cloning the app layer. There are 30+ claude-code clone, and codex work already cloned cowork, grok and gemini is doing the same.
We used to have a time where every small business had its own custom accounting software, and discovered that these businesses aren’t actually special snowflakes and are better off just using the generic software and conforming to whatever it does
I found that most things that are “features” in harnesses and tools that don’t relate to UI and UX in those harnesses themselves can be done through skills or just prompts.
A nice features of Claude’s is the remote control through the mobile app. That isn’t just a skill.
Curious why your first impulse is not simply to point your favorite agent at a few examples and start brainstorming/planning from there?
Multiple times I’ve built a purpose specific bespoke tool starting this way. In fact, it’s a great way to learn how specialized tools are built.
This preliminary change in cost may not make it worth it for people depending on which is their "favorite agent". Especially as the default harnesses for said agents continue to improve...
No, only Anthropic has that policy (and I think even that is relaxed for an unknown period if you use the Claude Agent SDK: https://support.claude.com/en/articles/15036540-use-the-clau...).
OpenAI, Kimi, Qwen, GLM and Deepseek all allow it.
I'm not sure about Gemini.
The opposite, how easy it is nowadays should be clarified. Codex's app-server quite literally is built to be integrated with, authentication is a breeze and it's quite stable, compared to the TUIs that are around.
It's a real shame Codex is moving in the direction of hiding stuff on local disks from users, hopefully they're revert the decision of encrypting the agent>sub-agent prompts so we get back introspection again...
The alternative of that first impulse should be what exactly? Telling AI to research Medium AI drivel articles (since nobody seems to be posting long/medium form content anywhere else these days) to figure out what’s the best approach to building an AI harness?
BTW just my personal observation but I generally find AI notoriously bad at building any AI applications compared to standard software (which is not surprising given the scarcity of high quality training data)
And you add a small twist, that instead of a 1-to-1 back and forth, you instead put it into a loop, where the LLM reply can itself "have a turn", e.g. a tool invocation, where your system is the one that replies (e.g. with the tool invocation's result). That's pretty much it, you have a 1 to potentially many "chat".
The harder part is getting all the "soft" parts right, like how to have well-behaving tool calls, timeouts, prevent huge cycles eating up tokens, but there are no one way to solve these, it's a fundamentally heuristic-heavy area.
https://github.com/99991/MinimalAgent
You only need a single tool to start with. All recent LLMs know how to use bash for reading/writing/editing/executing.
For example, the mobile/remote control feature I find very useful but not sure it would be worth cloning. If you aren’t replicating every feature you aren’t exactly “cloning” it, you’ll just end up with a crappier version with a fraction of the features of the real thing.
only labs knows what the rl enviroment was so they will always be one step ahead.
Have you seen Kimi Code ?
It's hard to believe it's a different code than Claude Code.
You can also get $10/month opencode go (which officially can be used with any harness) with basically every major open weight model running inference in a place that I deem more trustworthy than the subject-to-Chinese-law inference options (but research this for yourself, there are some asterisks). This is what I use (in opencode) when I want an agent for personal use. Even if I'm being fairly intense with my usage by my standards anyway), I haven't managed to run out (yet), although I usually use the cheaper models (deepseek v4 is my favorite, and I've used both flash and pro).
From the FAQ:
> The plan is designed primarily for international users, with models hosted in the US, EU, and Singapore for stable global access. Our providers follow a zero-retention policy and do not use your data for model training.
And:
> Yes, you can use Go with any agent. Follow the setup instructions in your preferred coding agent.
Opencode Go already seems extremely unprofitable if people use up at least 30% of their monthly tokens so its hard to imagine they’d go with several times more expensive inference provider yet show Deepseek pricing on their page.
And Codex obviously allows that as well. Anthropic is pretty the main exception.
They just need to be good enough and just copy.
Sorry american labs - it’s the beginning of the end.
They're at the point where copying can get people 90% of what they want anyway, the moat is drying up.
The speed in which a copier can catch up to a leader is faster than every before, but everything is faster these days. I think the threat is if can these labs catch up and pass American labs while keeping costs low, but I don't see that happening.
Yes, and that is how you get a top-heavy k-shaped economy I believe. It is harder and harder to sell premium A+ products, because most people can only afford what works. If my old ice cream vendor charges me 25% more but puts chocolate sprinkles on it i'm going for the non-sprinkle version.
Only with some industries, mostly electronics and light manufacturing. The rest of the history of software products doesn't look like this at all. China cloned Amazon and Meta fairly well (but only within their local/captured markets) but not Microsoft or Google and absolutely not Apple. Entertainment and culture exports are still effectively zero (like, what, three blockbuster films?) where the US, Japan and Korea define pop across the globe. Heavy industry is mixed, with decent success in consumer vehicles now but little purchase in stuff like heavy equipment or shipbuilding.
Basically it's complicated, and not really a point well suited to that kind of generalism.
Americans order Chinese products from SHEIN and Aliexpress type websites.
So China did penetrate the US ecommerce market, but they are not taking on Amazon directly.
People are buying from the Chinese and reselling on Amazon, which has a good logistics network that Chinese companies can't possibly build in the USA.
> absolutely not Apple
You need to look up Oneplus to see how many people were using their devices till they announced exit from Western markets.
The Chinese Android phones are essentially replacement for a big chunk of Apple ecosystem.
If these cheap mobile devices didn't exist - Apple could possibly be selling many more devices.
> China cloned .... Meta fairly well
TikTok is giving Meta a run for their money in USA.
They had to be restricted via threat of regulation to offload stake in TikTok USA.
> Microsoft
They didn't compete with Microsoft directly as entering Western Enterprise market is hard for the Chinese. Even Google can't beat Microsoft there till now.
The final part of this sentence shows why there is absolutely no need to look up Oneplus.
I'm not sure if you are from the US, but if you are, it really gives you a distorted image of what the worldwide smarphone market is like.
E.g. in many European countries, it is 1/3 iPhone, 1/3 Samsung, 1/3 others (which are mostly Chinese brands).
TikTok competes with Meta, not Olivia Rodrigo or BTS.
Uhh, China does over half of the world’s shipbuilding.
China is also responsible for 25% [1] of the world’s heavy equipment manufacturing and is considered to have double[2] the CAGR of the global average for heavy equipment manufacturing.
0: https://www.csis.org/analysis/china-dominates-shipbuilding-i...
1: https://www.grandviewresearch.com/horizon/outlook/constructi...
2: https://www.grandviewresearch.com/industry-analysis/heavy-co...
And this is really sad, because they have thousands of years of cultural heritage and also plenty of great films. Somehow, they've failed at exporting this completely.
They even got the car Apple always wanted, but never managed to build.
It's like releasing a cutting edge search engine, proclaimed to be on par with Google. Oh yeah, I forgot to mention, you need to actually run it somewhere. One of the core moats for Google has been the cost to scale and compete globally with a search engine, which only a few entities on earth could even attempt. Somehow the HN crowd forgets this every single time. The same claims were endlessly made regarding Uber, as though the app was the hardest part of competing with Uber. Here's a hint: the model isn't the only super hard part of the total process at this point. Try running something akin to GPT 5.6 for a billion users, see how much that costs.
The winners will be the owners of the subscriptions and API usage. That's going to be OpenAI and Anthropic as of now, possibly Google will stay in the fight with their scale advantage focused on the consumer. It will never be the open weight models out of China. Who is going to invest the trillion dollars into infrastructure needed to run the latest version of Kimi 3-5 years out, for a billion users? There's only one entity that would ever consider it, and that's China domestic.
And the real money (for a sustainable business model allowing for constant massive reinvestment & infrastructure maintenance) is in pairing up advertising, which is another spot where the open weight models from China will never compete. It doesn't matter if the HN crowd hates this outcome, nothing will stop it from being the future core of mass consumer usage. And the business use will stay with subscription + API use as well: the best option for that today is OpenAI and Anthropic.
Everybody that is concerned about their data ownership and residency, and how the US political system is behaving right now. There is a huge incentive to cut off ties with API and subscription providers, especially those based in the US.
K3 is beating Fable on several benchmarks. So I take it you don't consider Fable 5 to be frontier.
What are the frontier models?
(that's just one, there are others... and several are claiming that those saying "yes sure it's just as good, but it uses more tokens" ain't really true either).
And I don't think anyone is excited about China releasing anything: I think people like the idea of open-weights.
People who say "I was making GPUs before them, and they built their own GPUs that behave like GPUs so they copied me" don't understand how stuff is built. The hard part in engineering is not "imagining the high-level concept", it's actually making it work. Even if you can open electronics and study it to design and build your own, it requires a lot of expertise. And if you manage to do it, then you are an expert, period.
I'm sure many people find comfort in saying stuff like "You know what? I was a bit of a visionary because when I saw the first personal computer, I imagined that it would be cool if it could be orders of magnitudes faster and smaller such that it fits in a pocket". As if that was the hard part.
Typically, too many people spend a lot of time talking about UI and stuff like "unpacking" as if that was the most important part. But usually that's because they have no idea about how it works under the hood, so the only thing to discuss is whether the round edges are great or not.
Apple’s UI/UX is the reason why they are adored from a physical attraction perspective.
This blog post here summed it up the best. These are tools, so let them be tools.
https://geohot.github.io/blog/jekyll/update/2026/07/11/ai-20...
- anything related to piracy
- legit security work (audit my infra, pentest it)
- disabling a safety mechanism on my food processor
- reverse engineering
- creating style guides inspired by other games/companies (for fan projects)
- questions about how nerve agents work and how they can be treated (for a layman)
If we don't care about the other person than who we are?
On the other side, I am not a woke optimist that everything on Earth is lit by Sun…
Like, I get it, before condex there was conductor and a ton of other guis but this looks like they just copied the code.
Also, their privacy disclosure is incredibly misleading:
> How does Kimi Work protect my privacy when accessing local files? You have absolute control over your files. The built-in Ask before acting safeguard means Kimi will prompt you for explicit authorization before it modifies, overwrites, or runs code within your local directories. Nothing happens without your consent.
They fail to mention that is has unfettered read access to your files. ie, without your consent.
Isn't that totally expected of a coding agent? Otherwise it's like complaining dropbox "has unfettered access to your files".
“How does Kimi Work protect my privacy when accessing local files?”
It doesn’t protect your privacy. It’s like asking, “how do I know you’re not spying on me?” And getting the reply “we cannot physically enter your house.”
In light of the recent grok build snafu, "Nothing happens without your consent" seems like an upgrade. Moreover what are they supposed to do here? By that logic should any sort of non e2e email/storage provider not be able to put "How does [product] protect my privacy" in their faq?
Looking through their privacy policy, it looks like the bigger issue is that they are (or refuse to refute) training on your data/prompts. That's probably what people should be complaining about rather than complaining about how it "has unfettered access to your files", when that describes all coding harnesses.
> Looking through their privacy policy, it looks like the bigger issue is that they are (or refuse to refute) training on your data/prompts.
You’re making my entire point. They’ve designed an ingestion engine that is not private by design. Any sort of privacy posturing is wrong.
I personally wouldn't use any agentic harness from any company, American, Chinese, or otherwise, that is closed source. The Grok fiasco shows why.
Yes, any tool, including any coding agent, has access to all files $USER has access to.
Sandbox it explicitly to give access to only the current directory - https://github.com/ashishb/amazing-sandbox
Historically, everything you ran was trustworthy.
Android and iOS were invented in an era that does not allow this because the risks became evident by then.
You have almost no control with Kimi either, they can also say one thing and do another. You will not be able to sue a Chinese company if it breaks the law.
I can think of no faster way to hand over your trade secrets or intellectual property than to run something like this.
I think success and dominance for agent providers will eventually come to which ever is able to best guarantee that they don't damage their customers businesses not the cheapest to run.
https://drive.google.com/file/d/1JFfgfMO0nO7HR0WHwEqEEjXIIQj...
It's fair to say whatever software you run from any country of origin is hoovering up as much data about you that it can get away with.
If you haven't compiled open source, audited code and are running on that, all bets are already off.
Isn´t codex (edited) Apache 2.0 (thanks @Shank)
https://github.com/openai/codex ?
OpenAI's pigeons come home to roost
so ????
LLMs by definition are copyright infringers. so this is nothing compared to that.
Opensource and local are seeming like the only way.
https://learn.chatgpt.com/docs/sandboxing?surface=cli
https://github.com/openai/codex/issues/5237
"You're trying to kidnap what I've rightfully stolen!"
In fact, it would be pretty hard to come up with non-infringing software. Did ChatGPT infringe on MSN Messenger? Or Arc Browser?
No, this kind of trivial UI element is not an acceptable use of intellectual property protection. As much as I believe China’s dominance is a threat to the present world order I cannot imagine that attempting this style of IP regime will make us more competitive.
Yes China has companies that compete with existing companies, to the point they are copying. Our companies do the same thing (you're gonna tell me no American AI company has stolen the interface of another? or "borrowed" code?). Yes some of China's companies break laws. Our companies also break laws. YCombinator's funded companies have repeatedly bent and broken laws for over 15 years, to the point it's surprising when they don't break a law to gain unfair advantage.
The anti-Chinese rhetoric needs to be reigned in a bit. Yes the Chinese government is culpable in crimes against humanity and abuses of power - but so is the US government and US corporations. People in glass houses shouldn't throw stones. You wanna call out Chinese companies/government? Fine, but don't pretend it's just China.
Remind me which entities (govt or corporate) are going to subsidize that forever. Remind me which entities are going to front the cost just to scale up.
By that premise - wherein you forget everything other than the first ingredient (the model) - Google has no moat either (got $100 billion dollars lying around?). Nor does Uber (have tens of billions in your bank account to clone their business?).
I'm certain building an app (Uber), or building a search engine (Google), is the super duper hard part.
Slapping a GUI on Linux will kill Windows, any day now.
As long open weight models get released; no moats are going to exist. Both windows and Linux are weak comparisons.
Or use source code to find novel vulnerabilities and deeply compromise your company?
And it is above the fold in their hero image!
Of course it is. Just like Linear/Mailchimp/etc. (almost everything) are copies of other things. These harness+work apps are becoming a product category and I'm excited about this from the Kimi/Moonshot team. In the end, more competition in this space can only be good for the user.
Then there is reasoning itself.
Agent SDKs.
On and on.
This isn't a game of hide and seek. It's a race. The fact that Kimi is Chinese doesn't make their stride any more a copy than 90% of what the major labs are outputting these days.
Also this was released about a month ago
https://tech.yahoo.com/ai/meta-ai/articles/moonshot-ais-kimi...
People are building UI/UX for a paradigm that is so utterly new that they miss the mark entirely.
Everyone defaults to a big chat input because that's all they know. It's the expectation, so it's safer, faster, and cheaper to not deviate.
It's also wrong and bad for work.
Say's who? Why? I honestly don't get the problem. OpenAI just did what you said with the Mac app and were forced to roll it back because of the uproar. A chat box is simple, relatable, easy to use. K.I.S.S. is a thing
Says everyone who's not using this stuff. It's an empirical argument. Is anyone actually using this for work? How long has it been since Cowork was released?
It's such an inadequate tool for work it reeks of SF hubris to think you can just slap a chat input box onto a PC and replace 90% of white collar jobs.
the rest of "work" doesn't have that luxury
I'm not saying Kimi Work and its peers are entirely useless. I'm just saying they're a hack that puts a pretty low upper limit on agent capabilities and speed.
[0]: https://www.kimi.com/features/webbridge
There's really no real reason for those tools to be separate and for them not to give me something a bit nicer than just a TUI in the terminal.
They already have a locally runnable web UI when you have Kimi (the CLI) installed: https://www.kimi.com/help/kimi-code/cli-getting-started
Though it's ever so slightly broken (the sub-agent tracking stop button does nothing, some toggles in the Settings are not toggleable and so on, really slows down with long conversations to the point where keyboard input lags by seconds, think 600+ turns).Personally, I still liked ZCode better and will probably write a blog post about my experience with K3 too, the harness might need some more work, but the model is really, really good.
What could go wrong?
> Over the past 48 hours, demand has pushed close to the limits of our current capacity. To protect the experience of existing subscribers, we're temporarily pausing new subscriptions and prioritizing compute for current members. Existing subscribed users are not affected.
> We're adding capacity as fast as we can and will reopen new subscription spots in batches.
Guess where the models are gonna be hosted? Hint, not China.
It's like the late stages of a monopoly game - it's not fun for anyone except the main winner.
Not sure about the feature you mentioned but one can see in their app that they use IMF, World Bank, SEC EDGAR, and Yahoo Finance.
https://www.kimi.com › bot
https://github.com/MoonshotAI/kimi-code
Hoping to find something on a creek with a Mountain View and fairly remote.
Grok answered, ChatGPT answered, Claude answered.
Chinese Z.ai replied “Content Security Warning: The input text data may contain inappropriate content“.
So it is nice that Kimi is cheaper but for what price?
Seems to work for me to manage my emails. I have Proton Mail bridge and `mbsync` dumping all mail to a local folder, with an inotify watch script to react to new emails and classify them as either needing my attention (ignore) or something that does need my attention (send me a notification).
I've been looking for a good CLI spreadsheet editor
How about deploy some inference GPUs first
Hence why everyone uses the same play, stop etc "buttons" / signs on "mediaplayers" whether virtual or real. [1]
Unless your user really trusts you / doesn't have an alternative reducing friction is better than being subjectively better [2]
[1] triangle, square etc...
[2] bottom placement versus top placement of browserbar on mobile phones... From an ergonomics perspective way better but from a UX experience worse... Hence chrome changed top to bottom but was forced to change it back on android, while apple forced their users from top to bottom and didn't have to move it back
I'm sure OpenAI haven't copied or stolen anything without permission - oh wait a sec..
The US loves capitalism because it pRomOtEs cOmpEtiTion. Well, here's the competition you asked for, lads - suck it up.
Not saying Kimi will do this, but it's perfectly reasonable to expect this to happen, because there is really nothing anyone can do to prevent it. No, this is not meant to go in an isolated VM on a Linux box in a cheap VPS somehwere. This is meant for regular home users and corporate users to install on their primary system where all their personal and corporate data is available.
The above is a PSA (public service announcement) not just for Kimi, but also for GPT and Claude. If you don't understand how it's impossible to prevent the above from happening, then you should never use one of these tools.
thats pretty disappointing.
So let's just say, if your whole identity is for being a typical software engineer no matter the seniority and nothing else, perhaps it is time for you to reconsider options as of course 100% avoiding AI is futile at this point.
There will still be new jobs, but there will be no need for more excess people, even under Jevon's paradox. Software engineers were just the test bed for this and now there is an oversupply of SWEs without jobs in the market and will have to use AI tools like Kimi Work and Claude Cowork to be employable.
As token costs drop significantly (thanks to local models and hosted Chinese models.) employers will consider using cheaper models like Kimi Work and others, even if they are already using expensive ones like Claude Cowork. They won't be able to operate without it.
Secondly, do I actually believe this? Of course, I already said that there will be more mass layoffs because of AI years ago. [0]
So this outcome was expected.
[0] https://news.ycombinator.com/item?id=42490692
Step 1: invent the universe
The 'distillation is theft!' shtick won't last long. In fact, unlike Anthropic/OpenAI, these Chinese labs actually had to pay for that 'stolen' training data.
The implication they want to avoid, I'm suggesting, is because the CCP isn't plugged into and funding those entities' activities at a loss. Or they're lying about ZDR, etc. etc.
Firms aren’t going to wait - their valuations are driven by it. So too is the compensation of those running them.
In fact, when we don't discuss China, most find modern software patents and copyright to be abusive.
Finally, copying UX standards has been done for ages, it gives users a comfortable way to start using a product and instead of fighting that to be unique, some rather embrace it.
It can be jarring using so many different apps if each one tries too hard to be unique.
And this is my two cents, here it makes sense to have a similar interface, it's ultimately an app with chat sessions.
Why not let the model speak for itself and contribute to an open harness?
Kind of like the sphere Earth narrative.
> A narrative is a structured account of connected events, experiences, or ideas, commonly referred to as a story
Regardless of intent, it is how you tell your story.