Glean 拾遗
日刊 /2026-06-22 / Loops 解密:Claude、GPT、Mira 以及真正有效的方法

Loops 解密:Claude、GPT、Mira 以及真正有效的方法

原文 x.com 收录 2026-06-22 06:00 阅读 19 min
AI 解读

本文系统性地解释了 AI 循环(Loops)在工作流中的核心作用。它指出多数用户仍在使用最慢的人肉交互:每次输入指令、等待、手动修正。Loops 则是将“目标”交给 AI,让其自主完成发现、规划、执行、验证、迭代的循环。文章划分了代码工程中的重循环(含自动化、技能、子代理、连接器、验证器五大构件)与日常事务的轻循环(以 Mira 为例),并直言重循环的隐形成本:token 膨胀、复合计费、以及“Ralph Wiggum”式无产出空转。适合所有希望提升 AI 使用效率的工程师与创作者,尤其是正在评估 Claude Code、Codex 或 Mira 等循环型工具的人。

原文 19 分钟
原文 x.com ↗
§ 1

AI has been in everyone's hands for years. Most people who use it every day still use it the slowest way there is: type a request, wait, fix it, ask again, all by hand.

Not because the faster way is complicated, because nobody showed them what it looks like.

The faster way is a loop, and right now it is the one thing the best AI engineers in the world care about. This article fixes the part nobody explained.

By the end you will understand loops better than almost anyone on your timeline: what they are, how they actually work under the hood, when they are worth it and when they are a trap, how to build a basic one yourself in Claude or ChatGPT, the simple ones worth running in your own life.

人工智能普及多年。大多数日常用户仍在使用最慢的方式:输入请求、等待、修改、重新提问——全程手动重复。

这不是因为更快的办法有多复杂,而是因为从没有人展示过它的真实面貌。

更快的方式称为“循环/loop”——如今全球最优秀的 AI 工程师最关心的就是它。本文正是要补齐无人解释的部分。

读完后,你对循环的理解将超越大多数人的认知:它是什么、底层如何运作、何时值得用、何时是陷阱、如何在 Claude 或 ChatGPT 中自己构建一个,以及那些在生活中值得跑的简单循环。

§ 2

Look closely at the one-request-at-a-time habit, because it is the whole problem. Every step runs through you. You decide what to ask, you judge the answer, you decide what comes next. The AI never moves unless you push it, and the moment you stop, it stops.

This is fine, but it has a ceiling. You are the engine. The AI is only the tool in your hand, and a tool does nothing on its own.

There is another way to work, and it is the reason the best engineers in the world are changing how they build. Instead of walking the AI through every step, you give it the goal once and let it run the steps itself. It plans, does the work, checks its own result, fixes what is weak, and repeats until the goal is met. You step out. The work keeps going.

仔细观察这种“一次一问”的习惯——它就是问题的根源。每一步都需要你参与:你决定问什么、你评判答案、你决定下一步。AI 只有在你推动时才会动,你一旦停下,一切便戛然而止。

这种方式并非不能用,但存在天花板。你是引擎,AI 只是你手中的工具——工具本身不会自主行动。

但还有另一种工作方式,正是它让全球顶尖工程师改变构建方式:你不必一步步引导 AI,而是把目标一次性交给它,让它自主执行步骤。它会规划、执行工作、检查自身结果、修复薄弱环节,然后重复,直到目标达成。你只需退到一边,工作会自行推进。

§ 3

Two of the most respected engineers, saying the same thing in different words. Most people read lines like these and quietly had no idea what they meant in practice. So let's break it down properly.

两位备受尊崇的工程师用不同的话语说出了同一件事。多数人读到这类表述时,心里并不清楚它们在实践中究竟意味着什么。下面我们来好好拆解。

§ 4

A prompt is a single instruction. A loop is a goal the AI keeps working toward until it gets there. Think of it as a recursive goal: you define a purpose, and the AI iterates until it is complete.

A prompt gives you one answer and then waits for you to decide what is next. A loop runs the full cycle on its own:

DISCOVER  →  work out what needs doing
PLAN      →  decide how to do it
EXECUTE   →  do the work
VERIFY    →  check it against the goal
ITERATE   →  not there yet? feed the result back in and repeat

Three of these five do all the real work, and they are where people get loops wrong.

提示词/单次 prompt 是一条指令。而循环是一个目标——AI 会不断向它靠近直至达成。你可以将其视为递归目标:你定义一个目的,AI 反复迭代直到完成。

提示词给出一次答案,然后等待你决定下一步;循环则自主运行完整周期:

发现 DISCOVER  →  明确需要做什么
规划 PLAN      →  决定如何做
执行 EXECUTE   →  动手做事
验证 VERIFY    →  对照目标检查结果
迭代 ITERATE   →  还没到位?将结果反馈并重复

这五个步骤中有三步是真正的工作主力——人们对循环的理解也恰恰在这三步上容易出错。

§ 5

Verify is the heart of the loop. Without a real check on the result, you do not have a loop, you have the agent agreeing with itself on repeat. The check is what turns repetition into progress. It can be a hard test ("does the code pass"), a measurable condition ("is the number above X"), or a rubric the model scores against. No gate means the agent grades its own homework, and the model that did the work is far too generous a grader.

State is what makes the loop learn. Each pass, the AI has to remember what it already tried, or it repeats the same mistake forever. A real loop keeps a small record on the side: what is done, what failed, what is next. Tomorrow's run resumes instead of starting from zero. This is also exactly where it starts getting expensive, which we will get to.

A stop condition is what keeps it sane. A loop with no exit runs until it succeeds, breaks, or drains your account. Every serious loop has two ways to stop: success, and a hard limit ("after 8 tries, stop and report"). Skip this and you have built a machine that can run all night for nothing.

A prompt hands the AI an instruction. A loop hands the AI a job, a way to know when the job is done, and a rule for when to give up.

验证是循环的心脏。没有对结果的真实验证,你得到的就不是循环,而是智能体在不断地自说自话。验证把重复变成了进步。它可以是一个硬测试(“代码是否通过”)、一个可衡量的条件(“数字是否大于 X”),或者一份模型自己打分的评分标准。缺少把关,就等于让智能体给自己批改作业——而做作业的那个模型打分时总是过于慷慨。

状态是让循环学会从经验中成长的关键。每一轮,AI 需要记住自己已经尝试过什么,否则就会永远重复同一个错误。真正的循环会在一旁维护一份简短记录:已完成什么、什么失败了、下一步是什么。下一次运行时就能接着干,而不是从零开始。这正是循环开始变贵的地方——后文会详述。

停止条件让循环保持理智。没有退出条件的循环会一直运行,直到成功、崩溃或刷爆你的账户。每个严肃的循环都有两种停止方式:成功达成,或硬性限制(“在 8 次尝试后停止并报告”)。跳过这个,你就造出了一台可能白白跑一整夜的机器。

提示词给 AI 一条指令;循环则给 AI 一份工作、一种判断工作完成的方式,以及一个何时放弃的规则。

§ 6

Most articles sell you the loop before they tell you when it is a mistake. Here is the test the serious people actually use. A loop is worth building only when all four of these are true:

  • The task repeats, at least weekly. Less than that and the setup cost never pays itself back. A one-off is still better served by one good prompt.
  • Something can automatically reject bad output. A test, a type check, a build, a linter, a hard rule. If nothing can fail the work for you, the loop just spins.
  • The agent can actually do the work itself, end to end, not hand half of it back to you.
  • "Done" is objective, not a judgment call. If quality is a matter of taste, a human still wins.

Miss one box, keep it as a manual prompt. The honest version of this whole topic: loop engineering is real, and most people do not need the heavy version yet. What everyone can use is the light version, which we will get to. But you should know where the line is.

大多数文章在告诉你什么时候该用循环之前,就先推销循环了。以下是行家真正使用的判断标准。只有当下面四个条件全部满足时,才值得构建循环:

  • 任务至少每周重复。低于这个频率,搭建成本永远无法收回。一次性任务用一条好的提示词就足够了。
  • 有办法自动拒绝糟糕的输出。一条测试、一次类型检查、一次构建、一个 lint 规则或一个硬性规则。如果没有任何东西能替你判定输出不合格,循环只会空转。
  • 智能体能够端到端地自主完成工作,而不是把一半交回给你。
  • “完成”是客观的,而非主观判断。如果质量取决于品味,那人类依然是赢家。

只要有一条不满足,就请继续用手动提示词。这个话题的诚实版本是:循环工程确实存在,但大多数人还不需要重型版本。大家都能用上的是轻量版,我们稍后会讲到。但你应该清楚这条分界线在哪里。

§ 7

Loops took off in software first, because code is the easiest thing in the world to verify. A test passes or it fails. There is no arguing with it, so the AI always knows whether it is finished.

A coding loop is given a goal and a strict way to check it:

▸ LOOP SPEC
GOAL: every test in /tests/auth passes, lint is clean, no type errors.

EACH ITERATION:
  1. run the test suite and read every failure
  2. pick the single highest-impact failure
  3. write the smallest change that fixes it
  4. re-run the tests, lint, and type checker

VERIFY: green tests + zero lint warnings + zero type errors
STOP WHEN: verify passes, OR 8 iterations reached
ON STOP: summarize what changed and what still fails

Under the hood, a real loop is assembled from five building blocks. Claude Code and Codex now ship all five.

循环最先在软件领域兴起,因为代码是世界上最容易验证的东西:测试要么通过要么失败,没什么可争辩的,所以 AI 总能知道自己是否完成了。

代码循环被赋予一个目标和一种严格的检查方式:

▸ 循环规格
目标:/tests/auth 中的所有测试通过,lint 无警告,无类型错误。

每次迭代:
  1. 运行测试套件,阅读每个失败
  2. 挑选影响最大的一个失败
  3. 编写最小改动以修复它
  4. 重新运行测试、lint 和类型检查

验证:绿色测试 + 零 lint 警告 + 零类型错误
停止条件:验证通过,或达到 8 次迭代
停止时:总结改动了什么以及还有什么仍然失败

在底层,真正的循环由五个构件组装而成。Claude Code 和 Codex 现在已内置了全部五个构件。

§ 8
  1. The automation (the heartbeat)

This is the trigger that makes it a loop and not a one-off you ran once. You define a prompt, a cadence, and a goal, and it runs on schedule without you starting it. In Claude Code, /loop re-runs a prompt on an interval, /goal keeps a session going until a condition you wrote is actually true, hooks fire commands at points in the agent's lifecycle, and pushing it to a cron job or GitHub Actions keeps it running after you close the laptop. Findings come to you. You are not the one going around checking.

构件一:自动化(心跳)

这是让循环成为循环、而非一次性运行的触发器。你定义提示词、节奏和目标,它便会按计划运行,无需你启动。在 Claude Code 中,/loop 按间隔重新运行提示词,/goal 保持会话直到你编写的条件为真,hooks 在智能体生命周期的特定点触发命令,而将其推送到 cron job 或 GitHub Actions 则能在你合上笔记本电脑后继续运行。结果会主动送达你——不必你自己到处检查。

§ 9
  1. The skill (reusable instructions)

Instead of pasting a wall of instructions into every run, you save them once as a file the loop reads every time: the rules, the patterns to follow, and a hard list of what it must never touch. Now the automation just calls the skill by name, and the recurring job stays maintainable instead of rotting inside a schedule nobody updates.

构件二:技能(可复用的指令)

你不再需要在每次运行时粘贴大段指令——只需一次性地将它们保存为一个文件,循环每次都会读取它:包含规则、要遵循的模式,以及一份它绝对不可触碰的硬性清单。这样一来,自动化系统只需按名称调用技能,定期任务便能保持可维护性,而不会在无人更新的调度中逐渐腐烂。

§ 10
  1. Sub-agents (keep the maker away from the checker)

The single most useful structural trick in a loop is splitting the agent that does the work from the agent that checks it. The model that wrote the code is too nice grading its own homework. A second agent, with different instructions and sometimes a stronger model on higher effort, catches the things the first one talked itself into. Your writer can be fast and cheap, your reviewer slow and strict. That separation is most of the quality.

构件三:子智能体(让执行者远离检查者)

循环中最有用的结构技巧,就是将执行工作的智能体与检查工作的智能体分开。写代码的模型在给自己批改作业时总是太仁慈。第二个智能体——使用不同的指令、有时使用更强的模型和更高的精力投入——能捕捉到第一个智能体暗自容忍的问题。你的编写者可以又快又便宜,而审查者则要慢而严格。这种分离构成了质量的大半。

§ 11
  1. Connectors (so it acts, not suggests)

This is the difference between an agent that says "here is the fix" and a loop that opens the pull request, links the ticket, and pings the channel once the build is green, by itself. Connectors are what let the loop act inside your real environment instead of just describing what it would do if it could.

构件四:连接器(让它行动而非建议)

这正是一个只说“这是修复方案”的智能体,与一个自行创建拉取请求、关联工单、并在构建通过后自动通知频道的循环之间的区别。连接器让循环能真正在你真实的工作环境中行动,而不是仅仅描述如果它能做会做什么。

§ 12
  1. The verifier (the gate)

The test, type check, or build that automatically rejects bad work. This is the one block that decides whether the loop helps you or just spends your money. Everything else is plumbing. This is the part that makes it real.

Stack those together and you get what big teams now run at scale: fleets of agents looping on the same job, dozens or thousands at once. One engineer used a loop like this to rewrite an entire codebase from one programming language to another in about six days, work that would have taken close to a year by hand. It is a genuine change in how serious software gets built. And it comes with a catch the demos never show.

构件五:验证器(把关者)

测试、类型检查或构建——它们能自动拒绝不合格的工作。这是唯一决定循环是帮助你还是在花冤枉钱的构件。其他一切只是管道。这个部分才是让循环变得真实的关键。

将这些构件堆叠起来,你就会得到大团队如今规模级运行的东西:数十甚至数千个智能体在同一个任务上循环运行。一位工程师曾用这样的循环在六天内将整个代码库从一种编程语言重写为另一种——如果手工完成,这项工作需要将近一年。这是严肃软件构建方式的一次真正变革。但随之而来的还有一个演示中从未展示的陷阱。

§ 13

Loops run on tokens, and tokens are money. The problem is not that each step costs something. The problem is how the cost compounds.

Every time the loop goes around, the agent re-reads its context: the goal, the code, the last result, what failed. That whole pile is sent through the model again on every iteration, and it grows each pass. A loop that runs ten times does not cost ten prompts. It costs ten prompts that each keep getting bigger. The maker-and-checker trick that lifts quality also doubles the bill, because now two models read the work instead of one.

循环运行消耗的是 token,而 token 就是钱。问题不在于每一步都有成本,而在于成本如何复合增长。

每循环一次,智能体都会重新读取其上下文:目标、代码、上次结果、失败情况。整堆内容在每次迭代中都会再次送入模型,而且每次传递都会变大。运行十次的循环,成本不是十条提示词,而是十条提示词——并且每条都比前一条更大。提高质量的“制作者-检查者”技巧也让账单翻倍,因为现在有两个模型在阅读工作内容,而不是一个。

§ 14
▸ ROUGH COST OF ONE LOOP
single agent, one medium task:      ~50,000 – 200,000 tokens
context re-sent every iteration:    grows each pass
a fleet of agents in parallel:      multiply all of the above

The metric that actually matters, and almost nobody tracks, is cost per accepted change. Not tokens spent or loops run. If the loop gives you ten results and you toss six, you are doing the review work it was meant to save. Below a 50% accept rate, it costs more than it gives back.

Loops also fail quietly. Engineer Geoffrey Huntley calls it the "Ralph Wiggum loop": the agent decides it is done too early, exits on a half-finished job, and the loop keeps running and spending while producing nothing. Without a hard gate that can fail the work, loops do not crash, they bill you in silence.

That is why the heavy version belongs to teams with the budget and guardrails to run it: iteration caps, token budgets, cheap models on the boring steps, monitoring. If that is not you, you are not missing out, the core idea works at a fraction of the cost and none of the setup.

▸ 一次循环的粗略成本
单一智能体,一个中等任务:        ~50,000 – 200,000 token
上下文每次迭代重发:            每次传递都会增大
并行的智能体集群:              所有上述项相乘

真正重要、却几乎无人追踪的指标是“每次通过变更的成本”——而非消耗的 token 数或运行的循环次数。如果循环给出了十个结果,你扔掉了六个,那你就正在做它本应节省的审查工作。低于 50% 的接受率,它的成本就超过了回报。

循环还会悄无声息地失败。工程师 Geoffrey Huntley 称之为“Ralph Wiggum 循环”:智能体过早地认为工作已完成,在一个半成品任务上退出,而循环持续运行并消耗资源,却毫无产出。没有一个能拒绝工作的硬把关者,循环不会崩溃——它们会悄无声息地刷你的账单。

这就是为什么重型循环属于有预算和安全护栏的团队:迭代上限、token 预算、在无聊步骤上使用廉价模型、监控。如果你不具备这些条件,你并没有错过什么——核心思想在极低成本和零设置的情况下依然有效。

§ 15

If you do build one, the order matters more than the tools. The people who ship loops that survive in production all do it the same way:

1. Get ONE manual run reliable first.
2. Turn that into a skill (save the instructions).
3. Wrap the skill in a loop (add the gate + stop condition).
4. THEN put it on a schedule.

Skipping ahead, scheduling something you have not made reliable by hand, is exactly how loops blow up while you sleep. Prove it once, harden it, then automate it.

如果你真要构建一个循环,顺序比工具更重要。那些能交付可在生产环境中存活下来的循环的人,都采用了相同的方式:

1. 首先确保一次手动运行可靠。
2. 将其转为技能(保存指令)。
3. 将技能包裹在循环中(加入把关者 + 停止条件)。
4. 然后才安排计划运行。

跳过前面的步骤,直接安排你还没通过手工方式确认可靠的任务——这正是循环在你睡觉时出问题的方式。先证明一次可行,然后加固它,最后自动化它。

§ 16

You do not need a coding agent to feel how this works. You can run a simple loop by hand inside any LLM right now, with nothing but a prompt. The trick is to give the model all three loop parts at once: a goal, strict success criteria, and a protocol that forces it to check itself before it is allowed to stop.

▸ SELF-CHECKING LOOP  (paste into Claude or ChatGPT)
You will work in a loop until the task meets the bar.

TASK:
[describe exactly what you want produced]

SUCCESS CRITERIA (be strict, no soft passes):
- [criterion 1]
- [criterion 2]
- [criterion 3]

LOOP PROTOCOL, repeat every turn:
1. PLAN   - state the single next step.
2. DO     - produce or improve the work.
3. VERIFY - score the result 1-10 on each criterion.
            Be brutally honest. List exactly what is still weak.
4. DECIDE - if every criterion is 8+, print "FINAL" and stop.
            Otherwise print "ITERATING" and go again, fixing
            the weakest point first.

RULES:
- Never call it done until every criterion is 8 or higher.
- Each pass must fix the weakest score from the last VERIFY.
- Do not ask me questions. Make a sensible assumption, note it,
  and keep going.

Begin. Run the loop until FINAL.

Watch what happens. The model drafts, grades its own work against your criteria, finds the weak spot, and rewrites, over and over, until it actually clears the bar instead of handing you the first thing that looked close. That is a loop. You just built one with a paragraph.

But notice what is still missing, because it is the whole point of what comes next. You are the trigger. You opened the chat, you pasted the prompt, you are sitting there watching it iterate. Close the tab and it is gone. There is no schedule. There is no "do this every morning," no "wake up when an email arrives." It cannot reach out to you, because it only exists while you are looking at it.

To get a loop that runs on its own, on a schedule, triggered by real events, without you babysitting it, you normally have to step into the heavy world from earlier: tools, hosting, code, gates, and a bill.

That makes sense when you are tackling genuinely heavy tasks. But for 99% of everyday ones, there is already a ready, dead-simple solution.

你不需要代码智能体来感受循环的运作方式。现在就可以在任何大模型上手工运行一个简单的循环——只需要一段提示词。诀窍是一次性给模型所有三个循环部件:目标、严格的成功标准,以及一个迫使其在停止前自我检查的协议。

▸ 自检循环(粘贴到 Claude 或 ChatGPT 中)
你将在一个循环中工作,直到任务达到标准。

任务:
[精确描述你想要产出的内容]

成功标准(严格,不宽松):
- [标准 1]
- [标准 2]
- [标准 3]

循环协议,每轮重复:
1. 规划   - 说明下一步的单一动作。
2. 执行   - 产出或改进工作。
3. 验证   - 对每条标准打分 1-10。
            坦诚无情。精确列出仍然薄弱的部分。
4. 决定   - 如果每条标准都 ≥8,打印“最终/FINAL”并停止。
            否则打印“迭代 /ITERATING”并继续,优先修复最薄弱点。

规则:
- 在所有标准达到 8 分或更高之前,不得声称完成。
- 每轮必须修复上次验证中最薄弱的分数。
- 不要问我问题。做出合理假设,记录下来,然后继续。

开始。运行循环直到最终/FINAL。

看看会发生什么。模型会起草、根据你的标准自我评分、找出薄弱点,然后反复重写,直到真正达标,而不会把第一个看似接近的版本交给你。这就是循环。你刚刚用一段话构建了一个。

但请注意仍然缺少什么——这正是接下来要讲的全部关键。你是触发器。你打开了聊天窗口,粘贴了提示词,坐在那里看着它迭代。关上标签页,它就消失了。没有调度,没有“每天早上做这件事”,没有“当邮件到达时唤醒”。它无法主动联系你,因为它只在你盯着它看时存在。

要获得一个自主运行、按计划执行、由真实事件触发、无需你照看的循环,你通常必须步入前文提到的重型世界:工具、托管、代码、把关者和账单。

当你处理真正艰巨的任务时,这样做是合理的。但对于 99% 的日常任务,已经有一个现成、极其简单的解决方案了。

§ 17

Strip away the code and the cost, and what is left is one simple, genuinely useful concept: a task that runs itself, on a schedule or the moment something happens, with no need for you to remember it or be there. You do not need to be an engineer for that. You just need loops built for life instead of for codebases.

There is a free option where you create one by describing it in plain words. No code, no hosting, no keys, no tab to keep open, no build order to get wrong.

It is called Mira, and it lives inside Telegram, the app you probably already have open. You message it like a friend, and the loops it runs are called Skills. Every Skill quietly has the same parts a real loop needs, a trigger, an action, a way to run by itself, except you never wire any of them together. You just say what you want.

剥离代码和成本后,剩下的只是一个简单而真正有用的概念:一个按计划或在事件发生时自主运行的任务,无需你记住它或待在旁边。你不需要是工程师——你只需要为生活、而不是为代码库构建的循环。

有一个免费选项,你只需用简单的文字描述就能创建一个循环。无需代码、无需托管、无需密钥、无需保持标签页打开、无需担心构建顺序出错。

它叫做 Mira,存在于 Telegram 中——这个应用你可能已经开着。你可以像朋友一样给它发消息,它运行的循环被称为“技能/Skills”。每个技能都静默地拥有真正循环所需的相同部分——触发器、动作、自主运行方式——但你永远不需要将任何东西串联起来。你只需说出你想要什么。

§ 18
▸ SKILL
"Every weekday at 7am, check my Gmail and Google Calendar.
Send me a short brief: my 3 most important meetings, anything
urgent in the inbox, and one thing I said I'd follow up on but
haven't. Keep it under 120 words."

That is a real loop. A time trigger, a multi-step action across two connected apps, running on its own and coming to you. You wrote it as one message.

▸ 技能
“每个工作日上午 7 点,查看我的 Gmail 和 Google 日历。
给我发送一份简要简报:我最关键的三个会议、收件箱里任何紧急内容,
以及一件我说过要跟进但还没做的事。控制在 120 字以内。”

这就是一个真正的循环:一个时间触发器、一个跨越两个连接应用的多步骤动作、自主运行并主动送达给你。你只写了一句话。

§ 19

Here is the part that makes it click. Mira is not a smarter chatbot. The difference from ChatGPT is simple: ChatGPT answers, Mira acts. You do not ask it to write the email, you tell it to send the email. You do not get a draft ticket, you get a real one in Linear with the owner assigned. It does the thing, in the background, and it remembers you between every conversation.

It connects to 500+ apps through Composio (Notion, Gmail, Google Calendar, GitHub, Figma, Stripe and hundreds more), it has long-term memory that holds across sessions and group chats, and it is model-agnostic, running GPT, Claude, Gemini depending on the task. Here is what that turns into.

这就是让一切变得清晰的关键。Mira 不是一个更智能的聊天机器人。它与 ChatGPT 的区别很简单:ChatGPT 回答,Mira 行动。你不是请它写邮件,而是告诉它发送邮件。你得到的不是草稿工单,而是 Linear 中一张真实的、已分配好负责人的工单。它在后台执行操作,并会在每次对话之间记住你。

它通过 Composio 连接 500 多个应用(Notion、Gmail、Google 日历、GitHub、Figma、Stripe 以及数百个其他应用),拥有跨会话和群聊的长期记忆,并且模型无关——根据任务使用 GPT、Claude 或 Gemini。以下就是这些能力转化成的实际用途。

§ 20

For work This is where the loops idea pays off without a single line of code.

▸ SKILLS
"An hour before each meeting, remind me with the context and
decisions from our last conversation with that person."

"When I forward a message here, turn it into a Linear ticket
with the right priority and assign the owner."

"Every Friday at 4pm, collect the team's task status and metrics
and post a clean weekly digest in our chat."

"Summarize everything I missed in this group chat while I was
away, in 5 bullets."

It catches you up on a 200-message thread in seconds, files the ticket while you keep talking, and walks into meetings already briefed. In group chats it remembers the team's decisions and tasks, not just yours.

工作场景 这正是循环理念在不需要一行代码的情况下发挥价值的地方。

▸ 技能
“每个会议前一小时,用上次与对方对话的上下文和决策提醒我。”

“当我在这里转发一条消息时,将其转为一张 Linear 工单,
设置正确的优先级并分配负责人。”

“每周五下午 4 点,整理团队的任务状态和指标,
在我们的聊天中发布一份简洁的周报。”

“将我离开期间在这个群聊中错过的一切,用 5 个要点总结。”

它能让你在几秒钟内赶上一条 200 条消息的讨论线程;在你继续交谈的同时自动创建工单;并且在进入会议时已做好准备。在群聊中,它不仅能记住你的决策和任务,还能记住整个团队的。

§ 21

For creators This is the part most people underrate. Mira makes content end to end, inside the chat.

▸ SKILLS
"I'll send a voice note with a raw idea. Turn it into a finished
post with a caption and hashtags."

"Take this one idea and write versions for X, Instagram, LinkedIn,
Email, and a newsletter, each in the right format."

"Generate 3 image options for this post."

"Turn this image into a short video for my Telegram channel."

Voice note in, finished post out in about thirty seconds. One brief becomes six platform-native versions. It generates images and video right in the chat, edits photos, swaps backgrounds, builds mascots and avatars, even lip-syncs and animates them. The whole content pipeline lives in one window.

创作者场景 这是大多数人低估的部分。Mira 在聊天窗口中端到端地制作内容。

▸ 技能
“我会发送一条包含原始想法的语音消息。将其转化为一篇完整的帖子,
包含标题和标签。”

“把这个想法写成适用于 X、Instagram、LinkedIn、邮件和新闻通讯的版本,
每个版本格式正确。”

“为这篇帖子生成 3 张图片选项。”

“将这张图片转为一段用于我的 Telegram 频道的短视频。”

语音消息输入,大约 30 秒后完整帖子输出。一个简短的创意变成六个平台的原生版本。它能在聊天中直接生成图片和视频、编辑照片、替换背景、制作吉祥物和头像,甚至还能实现唇形同步和动画效果。整个内容管道都存在于一个窗口中。

§ 22

For voice Mira treats voice as a first-class input, which matters more than it sounds.

▸ SKILLS
"Transcribe my voice messages into clean text."
"Read this article back to me as audio."
"Summarize the voice notes in this group chat into key points."

It transcribes your voice messages, reads text back to you, understands voice notes inside group chats and summarizes the discussion, and works as a hands-free voice assistant when you cannot type.

语音场景 Mira 将语音视为一等输入——这比听起来更关键。

▸ 技能
“将我的语音消息转录为清晰的文本。”
“把这篇文章读给我听(转为音频)。”
“将这个群聊中的语音笔记总结为要点。”

它能转录你的语音消息、把文本读回给你、理解群聊中的语音笔记并总结讨论内容——还能在你无法打字时充当免提语音助手。

§ 23

For your life The same engine, pointed at everything else.

▸ SKILLS
"Every evening at 7, ask if I trained today. Keep a streak and
don't let me quietly skip more than one day."

"Every night, ask me 3 questions about my day, remember the
answers, and once a week tell me what changed."

"Track my calories from a photo of my plate."

"Watch this flight route and buy when the price drops to my number."

"Every morning, give me a no-clickbait news digest on my topics."

A coach that holds you to a streak. A journal that actually remembers you and becomes a check-in companion over time. Calorie tracking from a photo, no separate app. Language practice built from your own mistakes. A flight watcher that buys when the price is right. A daily digest with the clickbait stripped out.

个人生活场景 同样的引擎,指向其他所有领域。

▸ 技能
“每晚 7 点,问我今天是否锻炼了。保持连续记录,
不让我悄悄跳过超过一天。”

“每晚问我 3 个关于今天的问题,记住答案,
每周告诉我有什么变化。”

“通过我餐盘的照片追踪卡路里。”

“关注这条航线,当价格降到我的目标价时自动购买。”

“每天早上,给我的主题提供一份无标题党新闻摘要。”

一个督促你保持连续记录的训练师。一本真正记住你、随时间变成打卡伙伴的日记。通过照片追踪卡路里——无需单独应用。利用自身错误进行语言练习。一个在价格合适时自动购买的航班监控器。一份去除了标题党的每日摘要。

§ 24

Open Telegram. Go to Mira. Send it a message. Free access works immediately. Try one of these first:

@mira, plan my week
@mira, summarize this chat
@mira, remind me to review PRs every Monday at 9am
@mira, write a post about [topic] for X and Instagram

Any example in this article becomes a running loop the moment you type it.

打开 Telegram,找到 Mira,给它发一条消息即可。免费访问立即生效。先从这些试试:

@mira, 规划我的一周
@mira, 总结这个聊天
@mira, 提醒我每周一上午 9 点审查 PR
@mira, 为 X 和 Instagram 写一篇关于[主题]的帖子

本文中的任何示例,一旦你输入,就会变成一个正在运行的循环。

§ 25

Loops are not a trend. They are a shift in who does the work. The AI stops waiting for you to push it through every step and starts running the whole job on its own.

That said, this isn't something to chase or force into places it doesn't belong. More often than not, you will just burn money for nothing.

My take: start by using what's already there for free, and only once you actually feel that it isn't enough should you start thinking about what you truly need.

循环不是一种趋势,而是一次“谁干活”的转移。AI 不再等你推动每一个步骤,而开始自主运行整个任务。

话虽如此,这也不是一个要在所有地方追逐或强推的东西。很多时候,你只会白白烧钱。

我的建议是:先从已有的免费工具入手,只有当你真正觉得它不够用时,才开始思考你究竟需要什么。

打开原文 ↗