Aller au contenu

Command-line reference

Once installed, flower is a single executable with 4 subcommands and 23 flags. This page lists them all: the type, default value, and exact semantics of every flag, plus how to talk to it mid-run, what it asks the first time it runs, what the exit codes are, and which files it puts in your directory. After reading this page you shouldn't need to open the source.

Source: flower/cli.py.

Subcommand What it does Positional arg Own flags
go The whole chain: clarify the request → set goals → dispatch workers → judge each round. The default when no subcommand is given ask (optional) 11
run Run a workflow you wrote yourself target (required) 0
once Run a single agent once, no workflow, no verdict prompt (required) 6
setup Configure credentials, written to ~/.config/flower/.env none 0

Total flag count 23 = 5 global + 11 specific to go + 6 specific to once + -h/--help. run and setup have no flags of their own.


Invocation forms

All of flower's argv goes through _with_default_cmd() first to fill in the default subcommand, then gets handed to argparse (cli.py:1437-1439). That's why flower "帮我做一个 X" works — it gets rewritten into flower go "帮我做一个 X".

The rules for filling in the default subcommand (cli.py:940-976):

  1. The set of global flags is derived from the main parser itself, not a hardcoded list. Those with nargs == 0 count as pure flags, the rest as value-taking flags.
  2. Scan left to right, skipping global flags. Value-taking ones skip their value too, and the = form like --workspace=/tmp is recognized as well.
  3. Stop at the first token that isn't a global flag. If it's one of go, run, once, hand it to argparse as is; otherwise insert a go in front of it, so it becomes the request body for go.
  4. If the scan ends without hitting a positional arg (empty argv, or only global flags) → append go at the end and go to interactive input.
  5. Exception: if argv contains -h or --help, return as is and let argparse print the help.

The constant used for this check is _CMDS = ("go", "run", "once") (cli.py:937) — setup is not in it, see setup for the consequences.

What the rewriting actually produces

What you type What it actually parses as Effect
flower ["go"] Interactively asks "What should I do?"
flower -v ["-v", "go"] Same, with verbose
flower "帮我做一个 X" ["go", "帮我做一个 X"] Starts right away
flower -w /tmp "做 X" ["-w", "/tmp", "go", "做 X"] Global flags may go in front
flower --workspace=/tmp "做 X" ["--workspace=/tmp", "go", "做 X"] The = form is recognized too
flower "做 X" --timeout 0 ["go", "做 X", "--timeout", "0"] Subcommand flags may go after the request
flower --timeout 0 "做 X" ["go", "--timeout", "0", "做 X"] Or in front
flower --new ["go", "--new"] Flags only, no request → interactive input
flower once "hi" ["once", "hi"] As is
flower run flows:main ["run", "flows:main"] As is
flower run ["run"] argparse reports the missing target, it will not be treated as a request
flower go run ["go", "run"] Explicit disambiguation: the request body is literally run
flower setup ["go", "setup"] Runs go, the request becomes the string setup, see setup
flower --help As is argparse prints the help

The two words run and once cannot be used directly as a request body; this ambiguity is retained on purpose (cli.py:949-950). To use them as a request, write flower go run.

Six usable forms

flower                                    # 1. Bare: asks “What should I do?” or “Continue from last time?”
flower "帮我做一个 X"                       # 2. Request as positional arg
echo "帮我做一个 X" | flower --timeout 0    # 3. Feed stdin through a pipe
flower once "读一眼这个仓库"                 # 4. Single agent
flower run flows.py:main                  # 5. Run a custom workflow
flower go setup                           # 6. Explicit go, with setup as the request body

The module form python -m flower.cli is equivalent to flower (cli.py:1451-1452). The container wrapper docker/flowerbox takes exactly the same arguments as flower.

Feeding stdin through a pipe

When sys.stdin.isatty() is false, ask_for_prompt() does not print the prompt header and just reads one line with input("> ") (cli.py:993-1001). That's why echo "..." | flower works.

But right afterwards it prints a warning, and the stdin thread immediately hits EOF and exits:

! 标准输入不是终端,没人能回答提问。想让它自己判断就加 --timeout 0

A piped run should come with --timeout 0: questions no longer pretend to wait 30 minutes, they fall through immediately, the agent decides for itself and writes the assumptions into the "unknowns and assumptions" section of the brief.


Subcommands

go

Help text: 一键跑:问清需求 → 派人干活(不写子命令时的默认) (cli.py:1275-1307).

Positional arg ask, nargs="?" — omit it and you get interactive input. This is the most common entry point; flower "做 X" goes through it.

What it does (cli.py:1190-1221):

  1. ensure_credentials() — check credentials, and actually fire one API probe, see first-run configuration flow.
  2. Wake detection: read-only glance at whether this directory has been used before, without writing a single byte.
  3. If no ask was given, print a prompt and ask; entering /new is equivalent to --new, then it asks again for the request.
  4. If this is a continuity, print a one-line wake banner.
  5. Build a three-step workflow: 确认需求设定目标干活, with a 干活·判定#N after each work round. --clarify-only keeps only the first step.
  6. Start running.

The wake banner looks like this (the home directory in paths is replaced with ~):

<- 在 ~/proj 接上上次  需求已确认 · 目标 7 条 · 干活上下文 71.4K · 第 3 次唤醒

需求已确认 is always there; 目标 N 条 only appears when there is a verdict checklist; 干活上下文 X requires that the last round's context for that session can be looked up in sessions.db — if not, it isn't shown.

-W and -T are silently overridden on the go path

Writing these two global flags on go does nothing — no error, no notice:

  • -W/--workbench: the workflow go builds always brings its own workbench, and the code takes getattr(wf, "workbench", None) or args.workbench (cli.py:1038) — the one the workflow brings always wins. So the workbench is always <workspace>/.flower/ (with --isolate, <workspace>.parent/.flower-<name>/), and -W can't change it.
  • -T/--trim: go goes through _drive(wf, args, trim=not args.no_trim) (cli.py:1221), using the inverse of --no-trim directly and never looking at args.trim. In other words, on the go path trimming is on by default and the only way to turn it off is --no-trim.

These two flags only take effect on run (when the workflow doesn't bring its own workbench) and once.

The 11 flags of go

Flag Type Default Description
--asks N int -1 Question quota. -1 or any negative number = unlimited; 0 = no questions allowed, the first question is over_budget; N = a hard quota. Over quota, the tool simply refuses without blocking the run
--rounds N int 3 Cap on the total number of work rounds, not extra rounds. At the end of each round an independent judge rules on "is it done", and if not it's sent back to continue on the same session
--no-goal flag False Turn off the goal guard: no 目标.md generated, no verdict; when the work finishes it's done
--judge-can-run flag False Let the judge run commands. The verdict is harder, at the price of it being able to modify the workspace too
--timeout SECONDS float 1800.0 How long to wait for a human answer. 0 or negative = fully automatic, all questions fall through immediately, no pretending to wait. Semantics under timeout
--isolate flag False Give each subagent its own git worktree, i.e. isolation. Requires workspace to be a git repo, otherwise exit code 1. Also moves the workbench outside the repo
--window N int none (inferred from model name) Model context window. If not given: model name contains 1m or doesn't contain haiku → 1,000,000; contains haiku → 200,000. At window − 50000 it writes a handoff document and does a handoff
--no-handoff flag False Turn off handoff, falling back to the SDK's built-in compact
--new flag False Don't continue from last time. Move (not delete) the previous segment's lineage.json + 需求.md + 目标.md into notes/archive/<YYYYmmdd-HHMMSS>/, then start over
--clarify-only flag False Only do the clarify step, no work afterwards — the workflow keeps only the 确认需求 step
--no-trim flag False Turn off trimming. On the go path trimming is on by default; this is the only way to turn it off

Edge cases in the values — none of them error out, none of them warn:

  • --rounds 0 and --rounds 1 are equivalent — internally it's retries = max(0, rounds - 1), both run 1 round.
  • Any negative value for --asks means unlimited, not just -1.
  • Any negative value for --timeout equals 0, i.e. fully automatic.
  • --window 0 is silently ignored (0 is falsy, it's never passed down), falling back to the default inferred from the model name. Negative numbers do get passed down, then clamped to 10000.
  • --clarify-only on an already-clarified directory is a no-op — the 确认需求 step sees a complete 需求.md and skips, and since that's the only step in the workflow, nothing happens at all (except the wake count going up by 1). To re-clarify, combine it with --new.
  • The end of go's --help says "全局开关(-v/-w/-r/-T)见 flower --help", and that line omits -W.

run

Help text: 运行一个 workflow (cli.py:1309-1312).

Positional arg target, written as module:attribute. Both forms are supported (cli.py:1010-1031):

flower run mypkg.flows:build     # import by module name
flower run flows.py:build        # file path; the parent directory is pushed into sys.path, then imported by filename

If the attribute obtained is callable it's called once and the return value is used as the workflow; if it's already a workflow object it's used directly.

run has no flags of its own, only the 5 global flags. So --window, --no-handoff and the like all take their defaults on this path (the code falls back with getattr, cli.py:1041-1043). To tune them, put the parameters into your own workflow.

once

Help text: 跑一次单 agent (cli.py:1314-1324). The positional arg prompt is required.

It builds an AgentSpec(name="ad-hoc", …) and runs it directly, without going through _drive. So once has none of:

  • Ctrl-C to interrupt and speak (pressing it is just a plain KeyboardInterrupt)
  • the stdin answering thread or the input prompt pinned to the bottom
  • oracle Q&A
  • SIGHUP / SIGTERM rescue accounting
  • the closing 总花费 … · 清单 … line
  • the automatic reconfiguration guidance after a credential failure

The step name in the run manifest is always ad-hoc.

Flag Type Default Description
-i, --instructions str empty Domain instructions, appended after Claude Code's native system prompt, not replacing it
-t, --tools str Read,Glob,Grep Comma-separated tool allowlist. If not given, these three read-only tools
-p, --permission-mode str default Must be one of default, acceptEdits, plan, bypassPermissions; any other value makes argparse error out with exit code 2
-b, --budget float no cap Dollar budget cap; it stops when exceeded
--resume SESSION_ID str none Continue an existing session
--fork flag False Fork instead of continuing, used with --resume

The elapsed time and cumulative cost shown by once are always 0

once creates a new renderer instance for every event it receives (cli.py:688-690, cli.py:1239), while the timing origin and cumulative cost live on the instance (cli.py:500-501). Hence:

  • the 用时 on the closing line is always 0:00
  • 累计 $0.00 on the status line is always 0, and 上下文 never accumulates either

For the real cost of the single step, look at the cost_usd field in runs/manifest.json. The go and run paths hold the same renderer instance and don't have this problem.

setup

Help text: 配置凭证(API key / 网关 / 模型),写到 ~/.config/flower/.env (cli.py:1326-1328). No flags at all.

What it does: read .env → decide whether it's been configured → start the interactive configuration flow, with reason being 重新配置。 or 还没配过凭证。. See first-run configuration flow for the screen content.

flower setup currently cannot reach this subcommand

The constant used to decide the default subcommand, _CMDS = ("go", "run", "once") (cli.py:937), omits "setup", even though setup is indeed registered on the parser (cli.py:1326). So flower setup gets rewritten into flower go setupit runs the full go workflow with the string setup as the request body: it verifies credentials first, then asks about the request, then really starts dispatching workers. Adding global flags changes nothing: flower -v setup["-v", "go", "setup"].

No argv whatsoever can reach the setup subcommand.

To configure credentials, there are currently only these two routes, both leading to the same interactive interface:

  • just run flower "随便一句诉求"; if credentials haven't been configured it will ask first;
  • or hand-write ~/.config/flower/.env, with the key names listed under the keys it writes.

A few pieces of copy are collateral damage: the 跑 `flower setup` 重配。 printed when credentials are rejected, and the comment on the first line of .env, 由 `flower setup` 写, both point at this unreachable command.


Global flags

The 5 global flags are attached both to the main parser and to every subcommand (cli.py:1250-1266). The copies on the subcommands use argparse.SUPPRESS, so if not given they don't write an attribute, which means you can write them before or after the subcommand without them overriding each other. The side effect is that they don't appear in a subcommand's --help — to see them, run flower --help.

Flag Type Default Description
-w, --workspace str . The agent's working directory. It gets resolve()d into an absolute path and mkdir -p'd. The workbench .flower/ is created inside it
-r, --run-dir str runs The directory for the session store and the run manifest. Relative to the current CWD, not to workspace
-v, --verbose flag False Print more, see below
-W, --workbench flag False Enable the workbench. No effect on go, only effective for run (when the workflow doesn't bring its own workbench) and once, in which case the workbench lands in <run_dir>/workbench/
-T, --trim flag False On resume, replace old large tool results with file pointers, i.e. trimming. No effect on go, where it's controlled inversely by --no-trim
-h, --help flag Present on every parser. When it appears in argv, the default-subcommand rewriting is skipped and the help is printed directly

The fact that -r/--run-dir is relative to CWD will bite you: flower -w /other/proj "做 X" will create runs/ in the directory you typed the command in, while .flower/ is created under /other/proj/ — the two pieces of state get separated. To keep them together, pass -r /other/proj/runs explicitly.

The help for -v says "显示思考与工具结果", but the main thread's thinking is shown by default. What -v actually turns on in addition is:

  • subagent body text (not shown by default, only its tool calls are)
  • normal tool results (by default only the failing ones are shown)
  • prompt events
  • printing the currently effective credential configuration before startup, with the token masked to only the first 4 characters

That last one goes through a bare print(), bypassing output sanitization, without wrapping, and unprotected by the terminal write lock; when running several flowers in parallel, these lines can get torn apart.


How to talk to it mid-run

Once the run has started, the terminal is reading your input the whole time. You don't have to wait for it to ask, and you don't have to press anything to enter input mode — the last line is always the one you can type on.

The input prompt pinned to the bottom

A daemon thread flower-stdin reads stdin throughout (cli.py:764-934), polling with select every 0.2 seconds rather than blocking (so the stop signal can wake it; streams that don't support select, such as on Windows, degrade to a blocking read).

It reads all the time, not just when there's a question. The reason: if it only read while a question was pending, whatever you typed during those hours of work would sit in the terminal buffer and be eaten as the answer to the next question — the question would be answered before you even saw it.

On the display side, _say() is the only output channel; before each output it erases the prompt and redraws it afterwards (cli.py:309-315), so the prompt never gets pushed up the screen by event output. The redraw also brings back the half-typed characters you haven't hit enter on — they live in _PROMPT["buf"] (cli.py:183-192). Without this, the content wouldn't actually be lost (it's still in the terminal's line buffer, and enter would still send it), but you couldn't see it, so you'd be unsure and type it again.

The prompt has two wordings, switching on whether there's a pending question:

State Last line on screen
Question pending 你的回答 (回车=跳过,让它自己判断) >
No question pending (直接说 = 加需求,下个检查点送达;? 开头 = 顺便问一句,不打扰它干活) >

Character-by-character input mode and key bindings

To redraw "half-typed characters", flower has to take over input itself. When stdin is a terminal and import termios works, it puts the terminal into cbreak before starting the flower-stdin thread (cli.py:793-807) — cbreak rather than raw, so that Ctrl+C still produces SIGINT and the whole Ctrl-C mechanism remains. It must be set before starting the thread: doing it inside the thread is a real race, and characters typed in the instant before the thread gets CPU would be eaten by line mode, appearing as "lost input" (reproduced reliably once in three tries in testing, cli.py:928-934).

If it can't be set, it falls back to the original whole-line readline() (non-terminal, termios unavailable, tcgetattr failure). Both paths work; line mode just doesn't have the key bindings below (cli.py:883-899).

The editing logic lives in LineEditor (cli.py:320-414), a pure state machine that never touches the terminal:

Key Effect
Printable characters Inserted at the cursor. UTF-8 uses an incremental decoder and only enters the buffer once a full character is accumulated
Backspace / Ctrl+H Delete one character before the cursor. In line mode the terminal deletes by byte, so a Chinese character takes three presses and produces garbage; not here
← / → Actually move the cursor. The whole escape sequence is consumed, so nothing like [A gets inserted into the input
Home / End (or [1~ / [4~) Jump to start / end of line
Delete ([3~) Delete one character forward
Ctrl+A / Ctrl+E Start / end of line
Ctrl+U Clear the whole line
Ctrl+D Only EOF when the buffer is empty; ignored when there's content
↑ / ↓ Do nothing. There's no history, and moving would just make people think something was lost (cli.py:335)
Other control characters Ignored

Enter hands the buffer over and clears it, while moving to a new line on screen — what you said stays above (cli.py:811-827).

Where what you type goes

What you enter With a question pending With no question pending
Empty line (just enter) Skip this question, let it decide for itself Nothing happens
Starting with ? Oracle Q&A, see below Same as left
Pure digits, within the option range Substituted with the corresponding option, then answered Handled as ordinary text
Other text Sent as the answer to the asking agent Goes into the inbox as an additional requirement
EOF (Ctrl-D or the pipe closing) Refuse this question, take down the prompt, the thread exits Take down the prompt, the thread exits

Going into the inbox prints a one-line receipt:

+ 收到 (它下次查收件箱时会看到;已追加进确认书)

When there's no brief to spill to, the second half becomes 没有确认书可落盘 —— 它可能活不过下一个步骤. The inbox does not interrupt the worker currently working; it only picks things up when it next checks the inbox itself. The same sentence is also appended to notes/需求.md; without spilling it wouldn't survive a step boundary — the next step is a new session that only reads frozen artifacts.

Starting with ? = oracle Q&A

A line starting with ? isn't sent to the running agent but handed to the oracle:

? 现在到哪一步了

It starts a separate Runtime whose run_dir is <run_dir>/aside/, so its cost and session lineage don't get mixed into the main manifest.json. The role is read-only, with only the Read, Glob, Grep tools, at most 12 turns, and a cost cap of $0.5. The context it sees is the most recent 60 events (thinking and prompt events don't enter this window), each truncated to 200 characters, plus a description of the workbench paths.

It runs concurrently; the ongoing run doesn't wait a second. The answer looks like this:

# 旁路
  <回答正文>
  ($0.0123,没有打扰正在跑的运行)

On failure it prints a red line # 旁路问答失败:<类型>: <消息>, without affecting the main workflow. On exit it waits at most 120 seconds for oracles to finish, printing a line (等 N 条旁路问答收尾…) before waiting.

What it says never enters that run's context — asking doesn't affect the run, and the answer is discarded once given.

A full-width does not trigger oracle Q&A — Chinese IME users will hit this

The line of code deciding on oracle Q&A is (cli.py:907):

if raw.startswith("?") or raw.startswith("?"):

Both characters are half-width ASCII ? (0x3f) — verified byte by byte. From the way it's written the intent is obviously to accept both the half-width ? and the full-width (U+FF1F) produced by a Chinese IME, but it was actually written as the same character.

Consequence: a line starting with a full-width is not treated as an oracle question, but is silently sent to the inbox as an "additional requirement", and from there appended to notes/需求.md. The receipt you see is + 收到, not # 旁路.

To ask the oracle you must use the half-width ? — switch your IME to English first, or at least type the first character half-width.

What's on screen

The icons are all ASCII, not emoji (cli.py:51-69). The reason is written in a code comment: emoji together with box-drawing, geometric and arrow characters trigger terminal glyph fallback, which caused two terminal crashes in the past.

Icon Meaning Icon Meaning
= Step separator + Done / answered / received
~ Thinking, retry x Failure / error
> Dispatch # Handoff, oracle, task
* Tool call - Status line, list item
? Question <- Continue from last time, handoff landing point
! Warning / interrupt . Skipped
\| Subagent indentation bar

The and in older docs don't exist in a real terminal

Early docs used for questions and for the wake line. The code was never those two characters — the question icon is a half-width ?, and the icon for wake and handoff landing points is the two ASCII characters <-.

So what a real terminal prints is:

  ? 这个工具要做成 CLI 还是库?
     1) CLI
     2) 库
     (还能问 5 次)
<- 在 ~/proj 接上上次  需求已确认 · 目标 7 条 · 第 3 次唤醒

Not ❓ 这个工具……, and not ↩ 在 ~/proj 接上上次. Grepping logs based on the old docs will find nothing.

The five states of a question, as they appear on screen:

State Screen output
Asked ? <问题>, followed by options one per line, 1) 选项一, plus (还能问 N 次) when there's a quota
Answered + <答案>
Timed out ! 无人应答 —— 它会自己判断,把假设记进「未知与假设」
Quota exhausted ! 提问额度用完
You skipped . 已跳过

When --asks is unlimited (the default), the trailing "还能问 N 次" line isn't shown.

When handoff writes the handoff document, it's a whole block:

# 上下文 950.0K/1000K —— 写交接准备换代
  - 现在在做    …
  - 已定的事    …
  - 走不通的    …
  - 下一步      …
<- 交接写在 ~/proj/.flower/notes/交接-干活.md
<- 新会话接手,上下文从 950.0K 重新开始

When the handoff document degrades, an extra red line is inserted: 交接没写成,用了降级版本 —— 接手的人会自己去现场看.

The output also does two things you can't see: every output line goes through sanitization that only lets through flower's own SGR color codes, so clear-screen and cursor-movement sequences emitted by the model or tools are swallowed whole; and the width is taken as max(40, min(terminal columns, 110)), so on wide terminals it doesn't fill the entire line — that's intentional.

The prompt at startup

A bare flower (no request) asks first. Two wordings:

要做什么? 一句话就够,回车开始(Ctrl-C 退出)
> 
接着上次? 直接回车 = 接着做;也可以说点新的;/new = 重开一件事(Ctrl-C 退出)
> 

The second only appears when this directory has been run before and 需求.md has all four sections.

This prompt reads via input(), without going through shell parsing. Chinese quotation marks, spaces, exclamation marks can all be typed directly — that's the entire reason it exists. zsh, on hitting a Chinese closing quotation mark, drops into dquote> continuation, which looks like it's hung when in fact it never started at all.

  • Empty input + first time → exit, printing 诉求是空的。直接 `flower` 然后按提示输入,或者 flower "帮我做一个 X"。
  • Empty input + wake → valid, it means "keep going"
  • Entering /new → equivalent to --new, archiving the previous segment and then asking again for the request
  • Ctrl-C / Ctrl-D → exit, printing 已取消

Timeout

--timeout is a float in seconds, defaulting to 1800.0. Three kinds of value:

Value Behavior
> 0 Wait that many seconds. On timeout the question settles as timeout and the agent decides for itself
0 or negative Fully automatic. Questions don't enter the wait queue, no asked event is emitted, nothing appears on screen, and they settle as timeout immediately
Wait forever Not achievable from the command line. "Wait forever" is supported internally, but --timeout is a float with a default value, and no invocation can produce it. The ceiling is passing a very large number of seconds

--timeout 0 and --timeout -1 are exactly equivalent. Piped runs, CI runs, unattended runs all use this.

When a question gets no answer, the tool result fed back to the model is fixed copy, in four variants:

Result Copy fed back to the model
Quota exhausted 提问额度已用完。不要再问了 —— 把剩下的不确定项写进「未知与假设」那一段,按你自己的判断继续。
Timeout 无人应答。按你自己的判断继续,并把这个问题和你采用的假设写进「未知与假设」那一段。不要重复提问,也不要停在这里。
You skipped 对方跳过了这个问题。按你自己的判断继续,并把假设写进「未知与假设」。
The question was empty 问题是空的。把问题写清楚再问。

Ctrl-C

Ctrl-C means completely different things in two places.

Pressed at the startup prompt > — exits the program directly, printing 已取消.

Pressed mid-run — interrupts the current round and gives you a chance to speak:

! 已打断这一轮。正在跑的 subagent 会丢掉半成品。
  要说什么?(直接回车 = 什么都不说,接着跑;再按一次 Ctrl+C = 退出)
> 

Hitting enter here means interrupting without saying anything and continuing. If there were pending questions at the time, an extra line is printed: (有 N 个提问还等着,打断不影响它们).

Pressing Ctrl+C once more really exits, and it's an uncaught KeyboardInterrupt — there will be a Python traceback on screen, not a clean exit.

The interrupt is cooperative: it breaks cleanly at a message boundary and doesn't hard-cancel tasks. It does not count as a failed attempt and doesn't consume a retry. When continuing, an explanatory note is attached telling the model that "in-flight tool calls returning interrupted is a normal side effect of the interrupt, not an environment failure."

This custom Ctrl-C handling is only installed when sys.stdin.isatty() (cli.py:1097). In a pipe it keeps Python's default behavior, i.e. exiting on the first press. The once path doesn't go through here, so Ctrl-C on once also exits on the first press.

SIGHUP / SIGTERM

The go and run paths install handlers for both SIGHUP and SIGTERM: they first write the in-flight step into manifest.json marked as killed-by-signal, then restore the default action and really go away.

The reason is that when a terminal crashes the kernel sends SIGHUP, whose default action terminates the process outright: finally doesn't run, the manifest isn't written — and the accounting for that run is lost. On a non-OS main thread, or on platforms that don't support it, this is silently skipped.


First-run configuration flow

All three entry points go, run, once call ensure_credentials() at the start (cli.py:1392-1428), two gates.

Gate one: are there credentials

It looks for credentials in priority order. If it finds neither ANTHROPIC_API_KEY nor ANTHROPIC_AUTH_TOKEN it starts interactive configuration; when non-interactive (stdin isn't a terminal) it doesn't block, it just prints this and exits:

缺少凭证:需要 ANTHROPIC_API_KEY 或 ANTHROPIC_AUTH_TOKEN。
最省事:跑一次 `flower setup`,把 token 存到 /Users/you/.config/flower/.env(装一次,处处生效)。
或者:在当前目录建 `.env`,或 export 进进程环境。
flower 不读 ~/.claude/settings.json —— 那是可移植性的代价。

Two parts of this copy don't match the implementation: the flower setup on the second line is currently unreachable (see setup); and the fourth line is the opposite of the code — flower does treat the env blocks of ~/.claude/settings.json and settings.local.json as the last-level fallback, borrowing only 9 credential keys from them and taking over no other settings. The place printing this line is env.py:192 (the function check_credentials() is defined at env.py:184), while the code that actually reads those two files is env.py:56-75 and :109-111; recorded as issue #13. Trust the code: it reads them. The full lookup priority and those 9 keys are in the configuration reference.

What the interactive configuration asks

== 配置 flower ========================================
<为什么要配这一行>
凭证会存到 /Users/you/.config/flower/.env(只你可读)。装一次,处处生效。

1. 你的 API key 或网关 token (Anthropic 官方的 sk-ant-… 或第三方网关签发的)
   > 

2. 网关地址 (直接回车 = Anthropic 官方;第三方网关填它的 BASE_URL)
   > 

3. 模型名 (直接回车 = 默认;网关有自己的模型名就填,如 claude-opus-5[1m])
   > 

+ 存好了:/Users/you/.config/flower/.env
  • Question 1 is required. Leaving it empty prints the red line 没给 token,取消。 and abandons configuration.
  • Questions 2 and 3 may be left empty.
  • When stdin isn't a terminal, the whole flow is skipped without blocking.

The keys it writes

What you enter The key it's written as
Token starting with sk-ant- ANTHROPIC_API_KEY
Any other token ANTHROPIC_AUTH_TOKEN
Non-empty gateway address ANTHROPIC_BASE_URL
Non-empty model name ANTHROPIC_MODEL, ANTHROPIC_DEFAULT_OPUS_MODEL, ANTHROPIC_DEFAULT_SONNET_MODEL, all three written together

The file path is ${XDG_CONFIG_HOME:-~/.config}/flower/.env, with the parent directory created automatically. It's written as a full overwrite, empty-valued keys are skipped, then chmod 0600, and it's loaded and effective immediately — no need to reopen the shell. The first line is always a comment reminding you not to commit it to version control.

Gate two: do the credentials work

Once configuration is complete, it prints a line - 验一下凭证… and then actually fires one API call.

Probe details: POST {BASE_URL}/v1/messages, max_tokens=16, 20 second default timeout, using stdlib urllib, no dependencies pulled in. The model is taken in the order ANTHROPIC_DEFAULT_HAIKU_MODELANTHROPIC_MODELclaude-3-5-haiku-20241022. If ANTHROPIC_API_KEY is present it uses the x-api-key header, otherwise authorization: Bearer <ANTHROPIC_AUTH_TOKEN>.

max_tokens is deliberately 16 rather than 1: in testing, models with forced chain-of-thought couldn't even fit their thinking, and the server struggled for 30 seconds before returning; with 16 it takes only 3.6 seconds.

The probe's conclusion is handled in three categories, and the differences matter:

Conclusion Trigger What flower does
auth HTTP 401 / 403, or no credentials at all Prints ! 凭证被拒:<响应体前 160 字>, starts interactive reconfiguration, then verifies again. Non-interactive: exit code 1
config HTTP 404, or 400 and the response body explicitly says not found / doesn't exist (one of not_found, not found, does not exist, unknown model, no such model, invalid model) Prints ! 网关地址或模型名不对:<…>, same as above
net Can't connect / timeout / DNS failure / TLS failure / 5xx Prints (探针没打通:<前 80 字> —— 当作网络问题,照常开跑), doesn't make you reconfigure, just starts running
ok Below 400, or anything that can't be judged, is let through Silently continues

The criterion for config has been tightened: the word model almost inevitably appears in Anthropic-style error JSON, and using it as "wrong model name" would misjudge a transient 400 as a configuration error and then force a reconfiguration — it must explicitly say "not found / doesn't exist" to count (env.py:176-182).

The net case is intentional: a network hiccup shouldn't force you to retype your token, and flower itself has a mechanism that suspends and reconnects when the network drops. If you see "探针没打通", ignore it and keep going.

The reconfiguration chance is given at most once. If it fails a second time, it exits.

The probe is only fired in an interactive terminal. ensure_credentials() returns immediately without making that API call if any of the following holds (cli.py:1413): the caller passed probe=False, FLOWER_NO_PROBE is set, or stdin isn't a terminal (pipe / CI / offline tests). The reason is that a problem detected non-interactively can't be fixed anyway; the only effect would be "failing early" — and failing early is worse than not probing when it's a misjudgment. If the credentials really are bad, the run will blow up on its own, and that path is caught by automatic reconfiguration after a crash.

Automatic reconfiguration after a crash

When the workflow fails, flower matches the error message of the failing step against a regex (401, invalid api key, authentication, unauthorized, 无效…key/token/密钥). On a match, and when stdin is a terminal, it prints ! 看起来是凭证不对:<前 120 字> on the spot and starts interactive configuration; once configured it prints:

配好了。再跑一次刚才的命令 —— 同一目录会接着上次。

Then it exits with code 1 regardless. The once path doesn't have this section.


Exit codes

Code When
0 Finished normally
1 All deliberate exits. The message goes to stderr, with no traceback. Full list below
2 argparse argument error: unknown flag, missing positional arg, -p given a value outside its choices
130 Two Ctrl+C presses in a row mid-run. It's an uncaught KeyboardInterrupt, with a Python traceback
Killed by signal SIGHUP / SIGTERM: writes the in-flight step into the manifest first, then goes away via the default action

All messages for exit code 1:

Message When
已取消 Ctrl-C or Ctrl-D at the startup prompt
诉求是空的。直接 `flower` 然后按提示输入,或者 flower "帮我做一个 X"。 Brand-new directory + just pressing enter
缺少凭证:需要 ANTHROPIC_API_KEY 或 ANTHROPIC_AUTH_TOKEN。… (4 lines total) Non-interactive + no credentials
凭证被拒,且无法交互配置。跑 `flower setup` 重配。 Non-interactive + probe verdict auth
网关地址或模型名不对,且无法交互配置。跑 `flower setup` 重配。 Non-interactive + probe verdict config
--isolate 要求 <路径> 是 git 仓库(每个 subagent 要分一份 worktree)。先 git init,或者去掉 --isolate。 --isolate used in a non-git directory
要给一句诉求,例如 flower '帮我做一个 X' Request empty and the directory has no wake
在步骤 '<步骤名>' 中止 A step in the workflow failed and the policy is to stop
需要 模块:属性 形式,例如 flows:main flower run flows, missing the colon
找不到 <路径>(当前目录 <cwd>)。给的是文件路径就要能对上;要按模块名导入就别带 .py flower run missing.py:main
导入 '<模块>' 失败:<原始消息> The target module failed to import
'<模块>' 里没有 '<属性>' That attribute isn't found in the module

At the end of a run (go / run paths) it prints one last line:

总花费 $1.2345 · 清单 /abs/path/runs/manifest.json

This amount counts only this process's cost, not the previous run's — even though the manifest file itself accumulates across processes.


What it creates in your project

Two trees: <run_dir>/ (default ./runs/, relative to CWD) holds the accounting and sessions; <workspace>/.flower/ holds the workbench.

runs/

Path Contents
runs/sessions.db SQLite, full transcripts. This is the material basis on which continuity can pick up
runs/manifest.json The run manifest. A JSON array, accumulated across processes; every number on the case pages can be recomputed from here
runs/lineage.json Lineage: {"workspace": …, "woke": N, "steps": {"步骤名": "session_id"}}. Written by atomic replace
runs/aside/ The oracle Q&A's separate Runtime, with its own sessions.db and manifest.json. Cost and lineage don't get mixed into the main manifest
runs/workbench/ Only appears when -W was used and the workflow doesn't bring its own workbench (run / once paths)

The fields of each record in manifest.json:

step  session_id  ok  cost_usd  num_turns  text  error  started_at  ended_at
attempts  errors[]  resumed  retired[]  context  duration_s  run

run marks this process, in the format YYYYmmdd-HHMMSS-<6 hex digits>. The spill policy is append, don't overwrite: before each write it re-reads the file and deduplicates by run — lines belonging to this process are replaced with the latest, lines from other processes are left as they are.

Step names come in four shapes:

Shape When
<步骤名> First attempt
<步骤名>#retry<N> Ordinary retry
<步骤名>#round<N> Sent back after failing the verdict and continuing
<步骤名>·判定#<N> The judge step

When killed by a signal, the in-flight step also gets written in, with the error field set to killed-by-signal.

Running several flowers in parallel in the same directory: manifest.json is safe (re-read + merge by run), but lineage.json is a full overwrite, and two processes will clobber each other's lineage for steps of the same name. To run in parallel, use different -r.

lineage.json stores the absolute path of the workspace. If it doesn't match, it's treated as absent and silently falls back to a new session, without an error — after a directory has been copied elsewhere, the old session_id couldn't be looked up anyway.

.flower/

Path Contents
.flower/scripts/ Scripts meant to be run a second time. The first line writes # desc: 一句话, and that sentence appears in the index
.flower/artifacts/ Long outputs over 2000 characters: reports, data, logs. Only the path appears in the conversation
.flower/notes/ Cross-step decision records
.flower/spill/ Spill: tool results over 4000 characters land here, and the context keeps only a one-line pointer plus the first 400 characters. The filename is the first 16 digits of the content's sha256 plus .txt
.flower/INDEX.md The index of the directories above, injected into the coordinator's system prompt (subagents don't inherit it)

The go path always generates these under notes/:

File Contents
notes/需求.md The frozen brief, in four sections: goal / acceptance criteria / boundaries / unknowns and assumptions
notes/目标.md The frozen goals, in two sections: goals / verdict checklist
notes/问答记录.md An appended record of all questions and answers (with status), including what you said on your own initiative. Doesn't enter the context, kept only as a record
notes/交接-<步骤名>.md The handoff document written at handoff time; the previous generation is filed into notes/archive/交接/<步骤名>-<时间戳>.md
notes/archive/<YYYYmmdd-HHMMSS>/ The lineage.json, 需求.md, 目标.md archived by --new or /new. It's a move, not a delete

With --isolate, the workbench moves outside the repository: <workspace>.parent/.flower-<workspace name>/. The worktree is each agent's private copy, while the workbench is a shared layer across agents, and shared things can't go inside a private fence. In that case the workbench path given to the model is absolute.