> 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.<p>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.<p>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.<p>And, in some ways, duping is a great way to show people that even the app layer can be commoditized.
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.
"Good artists copy, great artists steal, the best artists make lies seem true."
– Steve Jobs.<p>Actually, Jobs self-servingly refactored then misattributed to Picasso the line,<p><pre><code> "Good artists copy, great artists steal."
</code></pre>
Jobs did seem to properly remarket Picasso's intent, though, as Picasso had said:<p><pre><code> "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."</code></pre>
That last line is wonderful! Thank you for this man. I honestly like the original more despite it's wordiness.
This makes me think of John Williams, an artist of great renown known for things like the Raiders of the Lost Ark OST and the Star Wars OSTs.<p>All of his stuff (or most of it) is repurposed and refitted chunks of other classical works. The beautiful part is, he does it so well.
Thanks for making me smile<p>I love that quote and like to share it often with people around me
Please explain where frontier models were copied from. Have LLMs always existed?
Taking inspiration is one thing, this is just a knock-off. The visual language is nearly identical. The difference is in whether you are building upon something else, or just copying it wholesale and contributing nothing of your own.
"Everything is a Remix" <a href="https://www.youtube.com/watch?v=xRHRUNpWzAY" rel="nofollow">https://www.youtube.com/watch?v=xRHRUNpWzAY</a>
Some paradigms are simply ergonomic. Sometimes there's only one UX people will accept.<p>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?
> duping is a great way to show people that even the app layer can be commoditized<p>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.
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!
Most people don’t want to play product manager and just want to pay someone to make the decisions for them.<p>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
Out of curiosity, what are your favourite features that are unique to your implementation?
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.
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.<p>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.<p>A nice features of Claude’s is the remote control through the mobile app. That isn’t just a skill.
This is the way. Guess what am I working right now? My own “Work” app that will be better than anything else available today!
How did you build your own coding agent? What language/framework did you use?
This comment is a great example of how large and strange the skills gap in AI is right now.<p>Curious why your first impulse is not simply to point your favorite agent at a few examples and start brainstorming/planning from there?<p>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.
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?<p>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...
> Getting a SOTA model in a custom harness requires API pricing or risking an account ban, correct?<p>No, only Anthropic has that policy (and I think even that is relaxed for an unknown period if you use the Claude Agent SDK: <a href="https://support.claude.com/en/articles/15036540-use-the-claude-agent-sdk-with-your-claude-plan" rel="nofollow">https://support.claude.com/en/articles/15036540-use-the-clau...</a>).<p>OpenAI, Kimi, Qwen, GLM and Deepseek all allow it.<p>I'm not sure about Gemini.
> 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?<p>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.<p>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...
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?<p>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?<p>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)
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.<p>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".<p>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.
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 <a href="https://github.com/patw/pengy" rel="nofollow">https://github.com/patw/pengy</a>, 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.
Implementing your own agent is very easy. Here is a minimal agent in 60 lines of Python without dependencies:<p><a href="https://github.com/99991/MinimalAgent" rel="nofollow">https://github.com/99991/MinimalAgent</a><p>You only need a single tool to start with. All recent LLMs know how to use bash for reading/writing/editing/executing.
Why would the language matter? Just use your favorite.
Look at pi coding agent.
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.<p>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.
But dont you have to be faithful to rl environment in which it model was trained in the harness?<p>only labs knows what the rl enviroment was so they will always be one step ahead.
> It's clearly a dupe of Claude/Codex products<p>Have you seen Kimi Code ?<p>It's hard to believe it's a different code than Claude Code.
In that case is there not some open harness that demand can coalesce around?
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.
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.
Yup they have a cost advantage.<p>They just need to be good enough and just copy.<p>Sorry american labs - it’s the beginning of the end.
No American corporations with thousands of users will do business with foreign labs, so the American labs will remain on top.
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.
Copying and reinterpreting/reimplementing successful technologies and processes is the bedrock of human civilization
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
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.<p>They're at the point where copying can get people 90% of what they want anyway, the moat is drying up.
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.<p>The speed in which a copier can catch up to a leader is faster than every before, but <i>everything</i> 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.
>Some buyers need the best and you can charge a premium for it.<p>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.
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
> the last 20 or so years of US/Chinese economic competition<p>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.<p>Basically it's complicated, and not really a point well suited to that kind of generalism.
> China cloned Amazon and Meta fairly well (but only within their local/captured markets)<p>Americans order Chinese products from SHEIN and Aliexpress type websites.<p>So China did penetrate the US ecommerce market, but they are not taking on Amazon directly.<p>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.<p>> absolutely not Apple<p>You need to look up Oneplus to see how many people were using their devices till they announced exit from Western markets.<p>The Chinese Android phones are essentially replacement for a big chunk of Apple ecosystem.<p>If these cheap mobile devices didn't exist - Apple could possibly be selling many more devices.<p>> China cloned .... Meta fairly well<p>TikTok is giving Meta a run for their money in USA.<p>They had to be restricted via threat of regulation to offload stake in TikTok USA.<p>> Microsoft<p>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.
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.
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 <i>100% NOT coming out of China</i>. Are you high, as it were?<p>TikTok competes with Meta, not Olivia Rodrigo or BTS.
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.
> Heavy industry is mixed, with decent success in consumer vehicles now but little purchase in stuff like heavy equipment or shipbuilding<p>Uhh, China does over half of the world’s shipbuilding.<p>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.<p>0: <a href="https://www.csis.org/analysis/china-dominates-shipbuilding-industry" rel="nofollow">https://www.csis.org/analysis/china-dominates-shipbuilding-i...</a><p>1: <a href="https://www.grandviewresearch.com/horizon/outlook/construction-equipment-market/china" rel="nofollow">https://www.grandviewresearch.com/horizon/outlook/constructi...</a><p>2: <a href="https://www.grandviewresearch.com/industry-analysis/heavy-construction-equipment-market" rel="nofollow">https://www.grandviewresearch.com/industry-analysis/heavy-co...</a>
> Entertainment and culture exports are still effectively zero (like, what, three blockbuster films?) where the US, Japan and Korea define pop across the globe.<p>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.
Xiaomi did a quite good job copying (and surpassing!) Apple.<p>They even got the car Apple always wanted, but never managed to build.
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.<p>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.<p>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.<p>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.
>Who is going to invest the trillion dollars into infrastructure needed to run the latest version of Kimi 3-5 years out<p>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.
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.
[dead]
[flagged]
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.
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.
> Their bread and butter and claim-to-fame will continue to be low-cost, near-frontier models, ...<p>K3 is beating Fable on several benchmarks. So I take it you don't consider Fable 5 to be frontier.<p>What are the frontier models?
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).
<a href="https://arena.ai/leaderboard/code" rel="nofollow">https://arena.ai/leaderboard/code</a><p>(that's just one, there are others... and several are claiming that those saying <i>"yes sure it's just as good, but it uses more tokens"</i> ain't really true either).<p>And I don't think anyone is excited about China releasing anything: I think people like the idea of open-weights.
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
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.<p>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 <i>a lot</i> of expertise. And if you manage to do it, then you are an expert, period.<p>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.<p>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.
Is Kimi 1/5th the price? Artificial analysis has it at the same price as GPT 5.6 Sol while performing worse.
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.<p>This blog post here summed it up the best. These are tools, so let them be tools.<p><a href="https://geohot.github.io/blog/jekyll/update/2026/07/11/ai-2040.html" rel="nofollow">https://geohot.github.io/blog/jekyll/update/2026/07/11/ai-20...</a>
[dead]
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
Winning product that can’t answer a simple question regarding Uyghurs or Tiananmen Square… it is a vulnerable product…
As opposed to Claude which has flagged:<p>- anything related to piracy<p>- legit security work (audit my infra, pentest it)<p>- disabling a safety mechanism on my food processor<p>- reverse engineering<p>- creating style guides inspired by other games/companies (for fan projects)<p>- questions about how nerve agents work and how they can be treated (for a layman)
It's an open model, abliterated versions will appear on HF in the fullness of time.
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
[flagged]
[flagged]
You know what, all of the computer power and so. They still can’t vibe develop a Linux client.
kimi has been particularly shameless in copying codex 1:1, wow.<p>Like, I get it, before condex there was conductor and a ton of other guis but this looks like they just copied the code.<p>Also, their privacy disclosure is incredibly misleading:<p>> 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.<p>They fail to mention that is has unfettered read access to your files. ie, without your consent.
>They fail to mention that is has unfettered read access to your files.<p>Isn't that totally expected of a coding agent? Otherwise it's like complaining dropbox "has unfettered access to your files".
Yes, but the answer is an indirection.<p>“How does Kimi Work protect my privacy when accessing local files?”<p>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.”
>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.”<p>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?<p>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.
Yes I’m saying a question answered deceptively should not be one of the four featured questions on your product page.<p>> Looking through their privacy policy, it looks like the bigger issue is that they are (or refuse to refute) training on your data/prompts.<p>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.
"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.
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.<p>I personally wouldn't use any agentic harness from any company, American, Chinese, or otherwise, that is closed source. The Grok fiasco shows why.
This is why I run CC under podman.
The repo you’re working on, sure. But all files?
> The repo you’re working on, sure. But all files?<p>Yes, any tool, including any coding agent, has access to all files $USER has access to.<p>Sandbox it explicitly to give access to only the current directory - <a href="https://github.com/ashishb/amazing-sandbox" rel="nofollow">https://github.com/ashishb/amazing-sandbox</a>
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.
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.
You have almost no control with Codex or Claude in that you have to trust them not to break their own rules.<p>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.<p>I can think of no faster way to hand over your trade secrets or intellectual property than to run something like this.<p>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.
Do we still fall for the China = must be spying, US = wouldn't spy unless it's disclosed?<p>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.<p>If you haven't compiled open source, audited code and are running on that, all bets are already off.
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…
>kimi has been particularly shameless in copying codex 1:1, wow.<p>Isn´t codex (edited) Apache 2.0 (thanks @Shank)<p><a href="https://github.com/openai/codex" rel="nofollow">https://github.com/openai/codex</a> ?
No, it's Apache 2. <a href="https://github.com/openai/codex/blob/main/LICENSE" rel="nofollow">https://github.com/openai/codex/blob/main/LICENSE</a>
The CLI is open but the GUI is proprietary.
I guess the issue is they didn't give attribution?
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.<p><a href="https://drive.google.com/file/d/1JFfgfMO0nO7HR0WHwEqEEjXIIQjzzJ55/view?usp=sharing" rel="nofollow">https://drive.google.com/file/d/1JFfgfMO0nO7HR0WHwEqEEjXIIQj...</a>
> <i>kimi has been particularly shameless in copying codex 1:1, wow.</i><p>OpenAI's pigeons come home to roost
> kimi has been particularly shameless in copying codex 1:1, wow.<p>so ????<p>LLMs by definition are copyright infringers. so this is nothing compared to that.
I am more concerned about what happens to the file if I give permission.<p>Opensource and local are seeming like the only way.
if your model ever touches bash, it has unfettered acess to all your files.
How dare they copy the largest plagiarism machine ever created.
The Dutch have a saying: it's better to have stolen something well than to have invented something bad.
[flagged]
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.
Has anyone tried this for things like Excel models and PowerPoints? And any reactions to how it compares to Claude?<p>I’ve seen lots of flashy examples, but a lot of knowledge work is not this, and more synthesis of sources and information in to structured content.
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.
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.
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 <a href="https://openrouter.ai/moonshotai/kimi-k2.6" rel="nofollow">https://openrouter.ai/moonshotai/kimi-k2.6</a>.
I never really understood this sentiment. Some foreign company / government cannot do anything to me. My own government, on the other hand...
A foreign company can’t steal your IP to build out competing products?<p>Or use source code to find novel vulnerabilities and deeply compromise your company?
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
It'll most likely land on Bedrock when the K3 weights are released.
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.
[dead]
wow -- "Let's take something off your plate" just copied word-for-word from the Claude Cowork UI.<p>And it is above the fold in their hero image!
For anyone looking for truly open alternatives to desktop agent apps (like claude cowork), I suggest taking a peak at Goose: <a href="https://goose-docs.ai" rel="nofollow">https://goose-docs.ai</a>
Still a chat interface, so definitely not an "AI Desktop".<p>Also this was released about a month ago<p><a href="https://tech.yahoo.com/ai/meta-ai/articles/moonshot-ais-kimi-brings-300-184057169.html" rel="nofollow">https://tech.yahoo.com/ai/meta-ai/articles/moonshot-ais-kimi...</a>
I'm surprised by the negative its-a-copy sentiment.<p>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.
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.
I wonder how those AI company can snatch a very good domains and how much did they pay, z.ai is just peak
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.<p>Then there is reasoning itself.<p>Agent SDKs.<p>On and on.<p>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.
I wish they'd embed the Code UI as a tab, similar to Claude Code Desktop.<p>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.<p>They already have a locally runnable web UI when you have Kimi (the CLI) installed: <a href="https://www.kimi.com/help/kimi-code/cli-getting-started" rel="nofollow">https://www.kimi.com/help/kimi-code/cli-getting-started</a><p><pre><code> kimi server run --foreground
</code></pre>
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).<p>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.
Amusingly, the WebBridge video demo[0] shows the model incorrectly including the answers into the question field<p>[0]: <a href="https://www.kimi.com/features/webbridge" rel="nofollow">https://www.kimi.com/features/webbridge</a>
Is there an opensource version of such a tool. I would really like a desktop app and use different models instead of a CLI.
OpenCode has a desktop version, it's decent: <a href="https://opencode.ai/download">https://opencode.ai/download</a>
Try paseo.sh . It does need the CLIs (claude, opencode, pi etc) running but it is a great interface for desktop and mobile.
Just wire in "teh cloud!!1" to your local files.<p>What could go wrong?
The Pricing page shows all plans are sold out.
They say that they have too much demand so are stopping new subscriptions while they scale up: <a href="https://x.com/Kimi_Moonshot/status/2078855608565207130" rel="nofollow">https://x.com/Kimi_Moonshot/status/2078855608565207130</a><p>> 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.<p>> We're adding capacity as fast as we can and will reopen new subscription spots in batches.
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.
Yea, they had so much demand for Kimi K3 that they hit the limits of their compute: <a href="https://news.ycombinator.com/item?id=48969291">https://news.ycombinator.com/item?id=48969291</a>
First time I've ever seen something like this. Fascinating.
Gotta generate that FOMO
The Chinese marketing blitz is on! Ha ha<p>Guess where the models are gonna be hosted? Hint, not China.
I feel that Kimi’s overall design is quite similar to Codex, and I hope it can excel over Codex in certain functional aspects.
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.
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.
Someone knows how I can use Kimi from Pi Code Agent?
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.
Most docs are here <a href="https://www.kimi.com/code/docs/en/kimi-code-cli/customization/plugins.html#kimi-datasource" rel="nofollow">https://www.kimi.com/code/docs/en/kimi-code-cli/customizatio...</a><p>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.
I wonder when they are going to start realizing that on-premises self-hosted is the solution over local
They already have a hosted version of openclaw<p><a href="https://www.kimi.com" rel="nofollow">https://www.kimi.com</a> › bot
so...GUI/closed source version of their @MoonshotAI/kimi-code TUI?<p><a href="https://github.com/MoonshotAI/kimi-code" rel="nofollow">https://github.com/MoonshotAI/kimi-code</a>
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.
Could I use the browsing feature to search for land to buy? Or is there an easier way I’m overlooking?<p>Hoping to find something on a creek with a Mountain View and fairly remote.
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.
that looks exactly like the recent codex!
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.
There should be a benchmark re Tiananmen Square and Uyghurs among LLMs.<p>Grok answered, ChatGPT answered, Claude answered.<p>Chinese Z.ai replied “Content Security Warning: The input text data may contain inappropriate content“.<p>So it is nice that Kimi is cheaper but for what price?
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.
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).
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.
Agents are quite capable for any work involving CLI (not TUI) applications.<p>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).<p>I've been looking for a good CLI spreadsheet editor
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?
When they release Kimi Design and I'll consider moving over
They're running like 10 tokens per second, constantly timing out, and launching new products?<p>How about deploy some inference GPUs first
Read the privacy policy.
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.
It's not about copy the best, it's about reducing friction for someone coming from a competing product.<p>Hence why everyone uses the same play, stop etc "buttons" / signs on "mediaplayers" whether virtual or real. [1]<p>Unless your user really trusts you / doesn't have an alternative reducing friction is better than being subjectively better [2]<p>[1] triangle, square etc...<p>[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
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.
> It rubs me the wrong way that they have to copy everything, the UI is almost exact copy of Codex<p>I'm sure OpenAI haven't copied or stolen anything without permission - oh wait a sec..<p>The US loves capitalism because it pRomOtEs cOmpEtiTion. Well, here's the competition you asked for, lads - suck it up.
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.
If this is what pops this bubble, I'll take it!
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.<p>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.<p>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.
No linux? They should ask k3 to add linux feature lol.
Not available for linux...<p>thats pretty disappointing.
China copying shit blatantly haha but winning surely
[flagged]
[dead]
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.<p>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.<p>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.
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.
Do you actually believe this and are concerned about it?
First of all to reply to your deleted comment, yes this is completely relevant to the article.<p>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.<p>Secondly, do I actually believe this? Of course, I already said that there will be more mass layoffs because of AI years ago. [0]<p>So this outcome was expected.<p>[0] <a href="https://news.ycombinator.com/item?id=42490692">https://news.ycombinator.com/item?id=42490692</a>
Nobody actually producing hard goods, real world value and actual software are using these cute tools. Its completely worthless to people actually doing things.
this landing page looks like a cheap ripoff of google's antigravity: <a href="https://antigravity.google/" rel="nofollow">https://antigravity.google/</a>
Also known as the "Xi Jinpeng learns about your business" app.
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.
Copying is not frowned upon in the LLM ecosystem. This is its very reason of existence.
How to make an apple pie from scratch with no copying:<p>Step 1: invent the universe
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.
The baker is not asking you to trust them with your entire knowledge base in exchange for an apple pie.
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.
Eyebrows will raise at Anthropic / OpenAI, perhaps. Why are they charging 1000x more for the exact same business?<p>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.
> Why are they charging 1000x more for the exact same business?<p>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.
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
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.
Why?
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.<p>In fact, when we don't discuss China, most find modern software patents and copyright to be abusive.<p>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.<p>It can be jarring using so many different apps if each one tries too hard to be unique.<p>And this is my two cents, here it makes sense to have a similar interface, it's ultimately an app with chat sessions.
Narrative?<p>Kind of like the sphere Earth narrative.
Pedantic.<p>> A narrative is a structured account of connected events, experiences, or ideas, commonly referred to as a story<p>Regardless of intent, it is how you tell your story.
I don't think the comment was intended to be pedantic, but rather to reframe the message as scientific fact.
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.