# Fable 在 Cursor 中的两种高效用法

- 来源：eric zakariasson (@ericzakariasson)
- 发布时间：2026-07-02 19:10
- AIHOT 分数：66
- AIHOT 链接：https://aihot.virxact.com/items/cmr3fa4zj00bdsllxjesrfafn
- 原文链接：https://x.com/ericzakariasson/status/2072639126034137444

## AI 摘要

Eric Zakariasson 分享了 Fable 在 Cursor 中的两种用法。一是作为编排器（orchestrator），将子任务分派给 Composer 2.5 并行执行，仅在设计决策、复杂 Bug 等需要整体判断时才单独使用 Fable。有效简报需包含单一关注点、足够上下文、完成定义和简短报告。二是长时云智能体（Cloud Agents）模式，用于长期重构、多端功能或跨代码库调查，通过 iOS 应用监控并适时干预。作者还建议轮换不同模型，以保持对前沿能力的认知。

## 正文

http://x.com/i/article/2072636402521583616

# Fable is back， here's how I use it in Cursor

Fable is back in Cursor， and here's a pattern I've been exploring and some other ways I've been getting the most out of the model.

## Fable as orchestrator， Composer as workers

It's easy to put everything on a smart model. Most of an agent run is reading files， writing patches， and running checks， and you don't need Fable rates for that. Instead， let Fable decide the subtasks， the order， and whether the result is done. Composer 2.5 does the scoped pieces， cheaper and faster， and can run them in parallel. Most of my chats are short Composer runs. Fable shows up less often， but those runs go longer.

You can put the routing in AGENTS.md or a .cursor/rules-rule so the orchestrator agent can use it.

A good brief has：

- one concern

- enough context that the worker doesn't re-explore the whole repo

- a definition of done it can check on its own

- a short report so the orchestrator can decide quickly

Fable alone still makes sense when the judgment is the work， whether that's a hard design call， a gnarly bug that needs one coherent thread， or a plan that has to stay coupled. If you can't name the subtasks， keep it one agent！

## Long horizon cloud agents

The use case I reach for most is ultra long horizon work on Cloud Agents. A long refactor， a multi-surface feature with a real definition of done， an investigation across a big codebase. I hand it to Fable， give it something it can check itself against， and let it run. I check in from the iOS app for status， a look at what it's doing， a nudge if it's drifted.

## Keeping up with the frontiers

If you only ever run one model， you start mistaking its habits for the ceiling of what agents can do. The frontier also moves every few weeks. Rotating is how I keep "what good looks like" current， from real work rather than benchmarks.
