这是一份个人 Prompt 工具箱,专门保存日常工作中值得重复使用的小片段。它不承担产品能力研究,也不承担完整配置文件的职责,因此不会再随着 Workflow 文章重构而被删掉。
Claude Code 的能力边界与成本模型见《Claude Code 成本优先的 Subagent 与 Workflow 调度实践》,完整的 CLAUDE.md、Agent 定义和 Workflow Authoring 模板见《Claude Code 多代理调度 Prompt 与 Agent 配置模板库》。开工前、会话中、中断前与脱手运行必须遵守的规则见《Claude Code 项目协作操作规范》。
中文用于说明场景;代码块里的英文才是直接发给模型的 User Prompt。复制时只取当前任务需要的最小片段,不要把整篇文章塞进一次会话。
一、先选执行机制
Claude Code 官方名称是 Agent Team,不是 Subagent Team。两者都使用独立上下文,但 Subagent 只向主 Agent 返回结果;Agent Team 的成员可相互通信,并在 Lead 会话拥有 Task 工具时共享任务列表;2.1.233 起 Fable 5.1、Opus 5、Opus 5.5、Sonnet 5 这些新模型默认不提供 Task 工具(2.1.268 改为只在 Claude 3.x、Opus 4.0–4.7、Sonnet 4.0–4.6、Haiku 4.5 上默认提供),要同时设置 CLAUDE_CODE_ENABLE_TODO_TOOLS=1 才有共享任务列表,否则 Team 只剩消息通信。
| 当前需要 | 首选机制 | 不该升级的情况 |
|---|---|---|
| 一个明确的小任务 | 主 Agent | 当前上下文已经足够 |
| 隔离搜索、实现、审查或验证 | Subagent | Worker 之间无需通信 |
| 固定依赖图、批处理或可复用多阶段过程 | Workflow | 一次普通委派即可完成 |
| 成员必须交换发现、挑战假设或协调跨层工作 | Agent Team | 顺序任务、同文件修改或只需汇总结果 |
| Workflow 产出证据后仍需成员协作 | 严格串行的 Workflow → Agent Team | 两种机制不能同阶段重叠 |
Agent Team 仍是实验功能,默认关闭,而且成员数增加会直接放大 Token;官方 costs 文档给的数字是 plan mode 下约为单会话的 7 倍。它只适合通信本身能提高结果质量的任务,不是“更强的并行 Subagent”。
二、单次对话的最小成本覆盖
当项目级或用户级配置已经存在,但本次对话仍需再次强调调度边界时,使用这段短模板。
For this conversation, use the smallest execution mechanism that can prove the result.
- Default to the main agent for small tasks. Run independent delegated starts concurrently; serialize only stages that need an earlier result.
- Use a subagent only when isolated context, independent verification, or a distinct file owner creates measurable value.
- Use a Workflow only for a reusable dependency graph or a bounded batch.
- Use an Agent Team only when workers must communicate directly; otherwise use ordinary subagents.
- Never run a Workflow and an Agent Team at the same time.
- Before dispatching, state the task level, the weighted worker-start budget (haiku 0.25, sonnet 0.5, opus 1, fable 2.5), planned concurrency, explicit model for every worker, and delegated Fable allowance.
- Count restarts, resumes, repairs, reruns, pipeline items, workflow agents, forks, and teammates as new worker starts.
- Do not spend the budget merely because it is available. Stop spawning when the next worker cannot change the decision or acceptance evidence.
- A delegated Fable worker is prohibited unless this prompt explicitly grants one critical slot.三、启动一个 Goal + Workflow
/goal 的参数定义终态,也充当首条工作指令。/goal go、/goal continue 和 /goal finish 都没有给出验收证据。
下面的 Prompt 只携带本次任务变量;任务等级、模型、预算和并发读取当前 CLAUDE.md。先写下范围、验收命令、授权动作和 Workflow 阶段。审批后,再把终态写进 /goal。若要由你指定 Worker 角色与加权合计、让 Claude 只在计划内填账本,用《Claude Code 项目协作操作规范》第二节的 Dispatch plan 段。
“1 小时”表示到点停止派发并汇报,不是 Claude Code 的墙钟超时。goal 文档建议把界限直接写进条件本身(例如 or stop after 20 turns),评估器会按对话内容判断它。另外,只要 Workflow、Subagent 或后台命令还在运行,Claude Code 就跳过该回合的 goal 评估,等到没有后台任务的回合再评;后台任务让 goal 等待满 30 分钟后会进入 check-in(CLAUDE_CODE_GOAL_CHECKIN_MINUTES 可调,设 0 关闭),因此"Goal + Workflow"的终态不会在 Workflow 跑完前被误判为已满足。
Create one goal and one Claude Code Workflow for the issues below. The main agent accepts the result; each worker owns named evidence or files.
Use one hour as the dispatch deadline. At the boundary, start no workers and report completed evidence, changed files, failed checks, remaining risks, and unused worker starts.
Authorized external actions: <none | stage | commit | push | publish | named destructive operation>. Treat unlisted actions as outside scope. If scope changes or an unlisted action becomes the only next step, name that boundary and stop.
Before running the Workflow:
1. Group duplicate symptoms by root cause.
2. For each work item, list acceptance evidence, owned files, and excluded scope.
3. Apply the active project policy for task level, worker limits, model and effort routing, concurrency, and approvals.
4. Show the Workflow phases and dispatch ledger before any worker starts.
Known issues:
<issue list>若交付物是通过验证并保留 staged 状态,输入:
/goal Complete W1-W7. Success means <verification commands> pass and the intended changes are staged but uncommitted. If the only remaining step lacks authorization, report that step and end.若本轮授权一次本地提交,输入:
/goal Complete W1-W7, pass <verification commands>, and create one local commit. This command authorizes that commit; do not push or publish.用户改变范围或撤回授权后,运行 /goal clear 或设置新条件。熔断交还控制权,但不会清除 Goal。
四、启动一个小型 Agent Team
只有成员必须直接交流时才启用 Agent Team。当前个人成本策略默认最多 3 名 Teammate,默认不使用 Fable Teammate,并要求每名成员拥有互不重叠的责任或文件。
临时启用当前 PowerShell 会话中的实验功能。本机主会话默认是 Opus 5.5(需要时按会话切到 Fable 5.1),2.1.233 起 Fable 5.1、Opus 5、Opus 5.5、Sonnet 5 这些新模型默认不提供 Task 工具(2.1.268 改为只在 Claude 3.x、Opus 4.0–4.7、Sonnet 4.0–4.6、Haiku 4.5 上默认提供),共享任务列表需要第二个变量:
$env:CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS = '1'
$env:CLAUDE_CODE_ENABLE_TODO_TOOLS = '1'
claude不要为了方便把它永久写入所有 Claude Code 会话。需要 Team 时显式启用,结束后关闭该会话,更容易避免普通 named Agent 被意外转换成 Teammate。
Create an Agent Team only because the workers in this task must exchange findings, challenge assumptions, or coordinate dependent decisions directly.
Team budget and routing:
- The current session is the sole team lead, integrator, and final acceptance owner.
- Treat any Agent Team as an L3 or explicitly approved L4 task under the active project policy.
- Spawn at most 3 teammates and never create a nested team.
- Use a named subagent definition with an explicit model for every teammate. A teammate always runs at the lead's effort level; the definition's effort frontmatter does not apply to teammates, so report the lead's effort as the teammate effort.
- Use Haiku for narrow reconnaissance and evidence inventory, Sonnet for planning, review, or QA, and Opus for implementation.
- A delegated Fable teammate is prohibited unless I explicitly grant one critical slot in this conversation.
- If one delegated Fable slot is granted, use it only after normal-role workers have produced a compact evidence packet, run it serially, and never use a second Fable start, replacement, resume, or repair.
- Do not start or resume a Workflow while any teammate is active.
- Count every teammate, replacement, restart, and resumed execution against the same task-level worker-start budget.
Ownership and coordination:
- Give every teammate a stable name, one bounded objective, explicit in-scope and out-of-scope work, owned files or modules, acceptance criteria, required verification, forbidden actions, and a compact evidence format.
- Partition write ownership so no two teammates edit the same file. Agent Team does not automatically provide worktree isolation.
- Teammates must not delegate further, stage, commit, push, publish, change the overall goal, or modify planning and memory files unless I explicitly authorize that exact action.
- Use direct teammate messages only when information changes another member's work; avoid status chatter that repeats the shared task list.
- Do not rely on session resume to restore in-process teammates. Collect every required result before shutdown, or explicitly budget replacement teammates after a resumed session.
- The lead must wait for all required evidence, inspect every diff, resolve blocking findings, and then shut down the team cleanly.
- If Agent Teams is disabled or unavailable, report that fact and stop. Do not silently simulate the team with an unbounded parallel subagent batch.
Task:
<task requiring direct worker communication>五、Workflow 与 Agent Team 串行组合
确实同时需要两种机制时,只允许串行分阶段:先让低成本 Workflow 收集并压缩证据,再决定是否值得启动小型 Team。不能一边跑 Workflow,一边让 Team 继续扩张。
Use two strictly sequential orchestration phases. Never overlap a Workflow and an Agent Team.
Shared task envelope:
- Apply one total worker-start budget across both phases.
- Use a budget of 6 Opus-equivalent starts for L3 or 8 for explicitly approved L4 (haiku 0.25, sonnet 0.5, opus 1, fable 2.5).
- Run independent starts concurrently within the runtime caps; the budget is the weighted start total, not the concurrency.
- Use at most one delegated Fable-worker start across the entire task, and default to zero.
- Count Workflow agents, pipeline items, teammates, replacements, restarts, resumes, repairs, and reruns in the same ledger.
Phase 1 — evidence Workflow:
- Run one bounded Workflow using Haiku for narrow discovery and Sonnet for synthesis or verification.
- Produce a compact evidence packet, unresolved decisions, ownership map, and a recommendation on whether direct worker communication is still necessary.
- Stop the Workflow completely before Phase 2.
Decision gate:
- If the remaining work is independent or only needs main-agent fan-in, do not create a Team.
- Start Phase 2 only when the evidence proves that teammates must exchange findings or coordinate dependent changes.
Phase 2 — small Agent Team:
- Spawn at most 2 teammates for L3 or 3 teammates for approved L4.
- Assign disjoint ownership and use named definitions with explicit models. Teammates run at the lead's effort level regardless of the definition's effort frontmatter; report that level.
- Do not repeat discovery already completed in Phase 1.
- If one delegated Fable slot was explicitly approved, reserve it for one serial critical decision after the Sonnet evidence has converged; do not place that worker in the parallel team batch.
At completion, report one combined budget ledger, accepted evidence, rejected hypotheses, exact changes, verification results, and remaining external gaps.
Task:
<task>六、模型路由与 Fable 闸门
Opus 主协调,委派的 Fable 5.1 Worker 只处理一次关键问题
本节模板的委派角色路由让 Fable 5.1/high 只承担一个关键席位,另有只读的 reviewer-fable(Fable/low)作为普通启动可用。这是 Worker 成本与风险策略,不限制全局主会话默认模型。
Anthropic 建议新 Fable 工作负载先从 high 开始,再用真实 eval 比较 low、medium、xhigh 与 max。本机全局主会话默认自 2026-09-25 起是 Opus 5.5,Fable 5.1 按会话用 /model fable 切换并保存为 xhigh,这是用户有意的本地选择,本文不据此固定 Worker 的级别。Fable 5.1 可能以 refusal 结束安全相关任务,模板因此要求在 refusal 时改用 Opus/xhigh 重做,不再消耗 Fable 席位。这一步只在自动回退没有发生时才需要:Claude Code 默认会把分类器命中的请求自动重跑到回退模型(Fable 5.1:biology 到 Opus 5,cybersecurity 到 Opus 4.8),本机 switchModelsOnFlag: false 把它改成手动选择;availableModels 拦住回退模型时不会回退,Bedrock、Agent Platform、Foundry 上则要求回退目标能在部署里解析到;文档没有写回退是否作用于 Subagent,所以委派场景仍按手动重派处理。
low 可能更划算,但它更少主动搜索或检索。核验密集的委派工作应在真实 eval 支持时再选择 low。
For this coordinator profile/session, use the supported opus alias with high effort for decomposition, dispatch, evidence integration, and final acceptance.
This profile choice does not replace or prohibit the intentional global Fable 5.1 main-session default, whose per-model effort the owner adjusts per project.
A delegated Fable 5.1 critical role (critical-implementer or critical-reviewer) may be used for at most one invocation per task. The read-only reviewer-fable role at low effort is an ordinary start and may be used whenever a Sonnet review is uncertain or the diff is high-stakes.
Use it only for a verified security, concurrency, data-migration, architectural, or exceptionally difficult implementation decision unresolved after normal-role evidence gathering.
Use the configured delegated Fable 5.1 critical role at high. Raise it to xhigh only when an eval on real tasks shows headroom at high.
If the delegated Fable worker ends with a refusal stop reason, report it, do not count it as a failed normal-role attempt, and rerun the same task on Opus/xhigh without spending another Fable start. Automatic switching on a classifier flag is off on this machine (switchModelsOnFlag: false): an interactive session pauses and offers the switch, a -p run ends with the refusal, so treat this manual rerun as the fallback path for delegated work.
For a new delegated Fable workload, official guidance is to start at high and compare low, medium, xhigh, and max with real evals before changing that role.
Low may be cost-effective, but verification-heavy delegated work should use it only when eval evidence supports it.
All delegated reconnaissance, file mapping, log summarization, ordinary QA, routine implementation, formatting, and documentation work must use Haiku, Sonnet, or Opus according to the configured role. Override within a role's allowed set when the task calls for it: ask first whether the worker did not try hard enough (raise effort or rerun) or did not know enough (move to a stronger model).
Never place a delegated Fable worker in a batch, Workflow parallel(), pipeline(), broad review fan-out, Agent Team fan-out, automatic retry, restart, resume, repair, or rerun.
For a long delegated Fable 5.1 tool chain, send a start note, brief progress updates, and a standalone final recap.
Finish the assigned task unless an explicit scope, authority, cost, or evidence boundary is reached. Do not widen scope to keep working.
The lead may handle other genuinely independent work while background subagents run, but only inside the same weighted start budget. Parallelism is free in tokens; do not invent independent work to fill it.
Before using the delegated Fable slot, show the exact question, compact evidence packet, expected decision value, selected model, the selected role definition's effort, and the remaining task budget.
If that case is not proven, do not spend the slot.本次完全禁止委派 Fable Worker
这段保留原稿中“主 Agent 只研究、规划、调度和验收,代码交给 Opus,QA 与侦察交给 Sonnet/Haiku”的高质量模式。
Formulate a bounded subagent dispatch strategy. Do not write code in the main thread. Use the main agent only for deep research framing, planning, Workflow design, dispatch, evidence integration, code review, and final acceptance.
Delegated Fable workers, including reviewer-fable, are strictly prohibited for this entire task. Delegate all code writing and refactoring to Opus workers.
Delegate QA, runtime reproduction, browser checks, and mechanical reconnaissance to Sonnet, or to Haiku for trivial narrow searches.
Every Agent call and Workflow agent() must explicitly specify its model. Never rely on inheritance. If a dispatch is discovered without an explicit model, stop it and dispatch a correctly configured replacement only if the same task budget still permits another start.
Before dispatching, write the approved strategy to <planning-path>. Also persist the confirmed reusable rule to <memory-or-instruction-path> only because this prompt explicitly authorizes that exact file. Preserve unrelated content and show the diff.
Follow the current task-level limits for the weighted start budget and the number of active Workflows. Do not create an Agent Team unless this conversation separately authorizes it.每次派发前检查模型
Subagent model discipline is mandatory.
- Every subagent dispatch must explicitly specify the model. This applies to the Agent tool's model parameter and Workflow agent(..., { model }) calls.
- Every Agent role must define explicit effort in its selected definition. Workflow agent() may set effort.
- Never rely on main-session model inheritance for delegated work.
- Before every dispatch, verify the requested agent type, model, definition-level effort, permissions, owned scope, and remaining start budget.
- If a model-less dispatch is discovered, stop it. Re-dispatch only when the replacement still fits the original budget; do not hide the extra start.
- A worker may use the main-session model only when I explicitly request that model for that worker in this conversation.七、通用工程约束
这段适合放在实现任务之后,避免模型为了“完善”而扩张范围。它也保留了原稿里的长期架构、分层演进和依赖优先原则。
- Do not preserve backward compatibility unless I explicitly require it or an external contract proves it is necessary. Remove obsolete paths instead of adding compatibility layers, permanent fallbacks, or speculative migrations.
- Choose the simplest implementation that fully meets the current requirement. Avoid speculative abstractions, configuration, indirection, feature flags, and helpers for one-time operations.
- Grow the system in working end-to-end layers. Add each capability on top of a product that still works.
- Keep components modular and responsibilities clearly separated.
- Prefer established, maintained libraries when they reduce total complexity or improve reliability.
- Inspect existing dependencies, documentation, source, and types before reimplementing functionality or adding packages.
- Make durable architectural decisions, but do not build hypothetical future systems that the current requirement does not need.
- Preserve user-owned dirty files and do not stage, commit, push, or publish unless the current request explicitly authorizes it.
- When uncertainty remains, name each unknown and find the smallest direct counterexample, failing case, command output, or source reference that proves whether it matters.
- If the evidence is not quickly available, stop and report the unknown instead of adding guards, retries, fallbacks, compatibility shims, broad validation, or extra abstraction to hide it.只读审查
This is a strictly read-only review. Do not modify code, tests, documentation, configuration, tracking files, generated artifacts, Git state, or external systems.
Inspect the requested scope and report only evidence-backed findings. For every finding, include severity, exact file and line, the violated invariant, a minimal failure scenario, and the smallest plausible remediation direction. Separate confirmed defects from risks and unresolved unknowns. Do not implement fixes.委派实现与最终验收
The root agent is the sole coordinator, integrator, and final acceptance owner. Delegate production and test implementation to one explicitly selected write-capable worker at a time, with exact file ownership.
Every delegated task must define its objective, in-scope and out-of-scope work, owned files, acceptance criteria, required verification, forbidden actions, compact evidence format, and stopping conditions. Workers must not widen scope, delegate further, stage, commit, push, publish, or modify planning and memory files unless I authorize that exact action.
A worker completion is an evidence handoff, not acceptance. The root agent must inspect the diff, review verification output, resolve blocking findings, preserve unrelated dirty files, and decide whether the requested outcome is actually complete.
Make one coherent thematic commit only when I explicitly authorize commits and the implementation, tests, documentation, and relevant verification for that theme are complete.八、框架与依赖专项 Tips
底层依赖现代化
Modernize the project's foundational dependencies to the latest versions that the current product explicitly supports.
This is not a version-number-only upgrade and not an exercise in preserving old implementation patterns. Read the current release notes, migration guides, installed source, and types. Update the architecture and business implementation to use the current APIs and conventions.
Remove obsolete compatibility code unless an external contract requires it. Keep the scope limited to changes proven necessary by the upgrade. Verify the affected build, type, test, runtime, and migration paths, and clearly report external environments that were not available.当前版本 Next.js
This is NOT the Next.js you know. The installed version may contain breaking changes to APIs, conventions, caching behavior, and file structure relative to your training data.
Before writing code, inspect package.json and the installed Next.js version, then read the relevant guide under node_modules/next/dist/docs/. Treat the installed documentation, source, and types as authoritative. Heed deprecation notices and do not restore legacy patterns for compatibility unless an external contract requires them.Compose Professional Design System
Do not treat Material 3 as the application's foundational UI framework.
Define the product's own Professional Design System and use Compose Foundation as the design-system-neutral primitive layer for custom components. Derive tokens, typography, color, spacing, shape, elevation, motion, interaction states, accessibility, and component APIs from the product's visual language instead of inheriting Material defaults.
Before implementation, audit which existing Material components are product dependencies and which are replaceable presentation choices. Migrate only the scope required by the current task and verify interaction, accessibility, rendering performance, and visual consistency.九、审查与知识沉淀
项目深度工程审查
Perform a bounded evidence-backed engineering audit of the current project. Look beyond isolated bugs and evaluate the core architecture, data security, permissions, correctness boundaries, UI rendering performance, operational failure modes, test coverage, and user-visible friction.
Separate confirmed defects, plausible risks, and unresolved unknowns. Every blocking finding must cite a concrete code path, failing case, measurement, or authoritative source. Do not turn the audit into implementation unless I explicitly authorize changes.非代码工程体系审查
Audit the project's non-code engineering system, including current and stale documentation, specifications, plans, architecture decisions, AI guidance, operational runbooks, release evidence, and maintenance conventions.
Identify what is authoritative, duplicated, obsolete, missing, or inconsistent with the current implementation. Propose the smallest durable documentation set and an ownership or update rule for each artifact. Include project-specific AI, architecture, engineering-practice, and operational knowledge that should be preserved. Do not rewrite documents until I approve the proposed scope.项目价值判断
Load the skill at https://innei.in/skills/codebase-value-audit/SKILL.md as guidance, verify that it is available and applicable, and then evaluate the current project as requested below.
Separate product value, engineering quality, maintainability, differentiation, operational risk, and evidence gaps. Cite repository evidence for each major claim. Do not modify code or documents unless I explicitly authorize it.
Task:
<project value question>把确认过的策略固化下来
Persist only the policy confirmed in this conversation.
Authorized targets:
- Planning document: <exact path or none>
- Project instruction: <exact path or none>
- User instruction: <exact path or none>
- Memory note: <exact path or none>
Write model-facing instructions in English. Keep human explanation outside the prompt or configuration block. Preserve unrelated content, avoid duplication, and place each rule at the narrowest scope where it remains true.
Before editing, show the proposed rule and why each target is appropriate. After editing, show the exact diff and validation evidence. Do not modify any target marked none, and do not invent a memory update without explicit authorization.十、测试与性能
全功能、高强度与性能测试计划
The product is functionally stable. Create an evidence-backed comprehensive test strategy covering critical user journeys, destructive and recovery paths, permissions, data integrity, concurrency, compatibility boundaries, sustained load, peak load, resource exhaustion, and UI performance.
Do not launch multiple Workflows merely because the matrix is large. First deduplicate the risks, classify the task level, and fit the plan inside the approved weighted start budget. Prioritize the tests that can falsify the highest-impact assumptions.
Run stress or destructive cases only in an explicitly approved disposable environment. Distinguish local automation from external device, browser, service, production, or release evidence. Do not claim unavailable external verification as complete.以 p95 为目标的性能闭环
原稿里的短提示仍然有用,适合已经明确指标、环境与授权边界的会话:
Use a dynamic Workflow and a profiler to get the named p95 latency below 300 ms. Do not stop until the target is repeatedly proven, the required regressions pass, or the approved worker, time, cost, or authority boundary is reached.更稳妥的完整版本:
Use a profiler to reduce the named p95 latency below 300 ms without changing the product contract.
First reproduce the issue and record the exact baseline environment, command, dataset, warm-up, sample count, p50, p95, p99, and profiler evidence. Optimize only the dominant measured bottleneck. Repeat the same benchmark and run the focused functional regression checks after each accepted change.
Do not claim success from a single fast run, an average, or intuition. Stop when repeated measurements meet the threshold and required regressions pass, or when the approved worker, time, cost, or authority boundary is reached. Report the remaining evidence and hypotheses instead of silently extending the budget.十一、Codex:让 Sol 配置一个 Luna Max Worker
这一段不属于 Claude Code,但它是原稿中明确保存的个人 Tip,因此继续保留在这篇跨工具 Prompt 工具箱里。模型别名与角色分工以《Codex 的封装》的最新版本为准,那篇已经把根代理换成 GPT-6 Astra;这里的 gpt-5.6-luna + max 只是"专用窄任务 Worker"的示例写法。
Create a custom Codex agent named luna_worker at:
~/.codex/agents/luna-worker.toml
Use this model configuration:
model = "gpt-5.6-luna"
model_reasoning_effort = "max"
Add a clear description and instructions. luna_worker handles only tasks that are narrow, self-contained, independently verifiable, and explicitly delegated by the root agent. It must not change the overall objective, widen scope, delegate further, stage, commit, push, publish, or modify planning and memory files unless I explicitly authorize that exact action.
Preserve all existing Codex configuration and unrelated agents. Do not overwrite or delete unrelated content.
After creating the file:
1. Check the format against my currently installed Codex version.
2. Show the exact diff.
3. Validate that the configuration loads successfully.
4. Explain the tasks for which luna_worker should and should not be selected.
For future delegated tasks that match this bounded role, prefer luna_worker over a more expensive general-purpose worker. Do not make it the automatic choice for tasks that exceed its scope or quality boundary.配置后的预期分工是:Sol 留在主线程理解目标、拆分任务、检查证据和整合结果;Luna Max 只处理范围清晰且能独立验证的搜索、分析、审查、实现或测试排查。独立上下文能减少主线程污染,但每次派发仍有额外 Token 成本。
十二、原稿迁移对照
这张表用于保证原文章里作为个人备忘保存的内容都有明确归宿。
| 原稿 Tip | 新文章位置 |
|---|---|
| Opus 主协调 profile、Fable 5.1 只做关键 Subagent | 六、模型路由与 Fable 闸门 |
| 不以 Material 3 作为底层设计系统 | 八、Compose Professional Design System |
| Workflow + Subagent + Goal,一小时集中处理 | 三、启动一个 Goal + Workflow |
| 主线程只规划、派发和审查 | 六、本次完全禁止委派 Fable Worker |
| 每次派发显式指定模型 | 六、每次派发前检查模型 |
| 先写入计划与 Memory | 六、本次完全禁止委派 Fable Worker;九、把确认过的策略固化下来 |
| 不保留无依据的兼容层、最小实现、分层演进 | 七、通用工程约束 |
| 基于最新依赖重做架构与业务实现 | 八、底层依赖现代化 |
| Next.js 先读已安装版本文档 | 八、当前版本 Next.js |
| 深查架构、安全、体验和 UI 性能 | 九、项目深度工程审查 |
| 审查文档、旧 Spec、Plan 与 AI 工程知识 | 九、非代码工程体系审查 |
| codebase-value-audit Skill | 九、项目价值判断 |
| 全功能、高强度与性能测试 | 十、测试与性能 |
| 用 Workflow 和 Profiler 把 p95 降到 300 ms | 十、以 p95 为目标的性能闭环 |
| Codex Sol + Luna Max 专用 Worker | 十一、Codex Luna Max Worker |
此外,新文章补充了原稿没有完整展开的 Agent Team 启动模板,以及 Workflow → Agent Team 的串行组合模板。二者都服从同一个加权启动预算和委派 Fable 配额。