@@ -213,21 +213,16 @@ func formatRecentEntry(f *felt.Felt) string {
213213func cliReference () string {
214214 return `## CLI
215215` + "```" + `
216- felt "title" # create fiber (no status by default)
217- felt add "title" -s open # -s: opt into tracking (open, active, closed)
218- felt add "title" -o "answer" # -o: set outcome
219- felt add "title" -a <dep-id> # -a: depends on (after)
216+ felt "title" # create fiber
217+ felt add "title" -s open -t tag -a <dep-id> -o "outcome"
220218felt edit <id> -s active # enter tracking / mark active
221219felt edit <id> -s closed -o "outcome" # close with outcome
222- felt edit <id> --title "new" # replace metadata (title, due, status, outcome)
223220felt comment <id> "note" # add comment
221+ felt show <id> # full details (-d: title, compact, summary)
224222felt ls # tracked fibers (open/active)
225223felt ls --all # all fibers including untracked
226- felt show <id> # full details (-d: title, compact, summary)
227- felt ready # fibers with all deps closed
228224felt find "query" # search title/body/outcome
229- felt link <id> <dep-id> # add dependency
230- felt upstream/downstream <id> # see connections (-d: depth per item)
225+ Also: link, unlink, tag, untag, upstream, downstream, tree, ready, rm
231226` + "```" + `
232227Statuses: · untracked, ○ open, ◐ active, ● closed
233228To patch body text (not replace), edit .felt/<id>.md directly.
0 commit comments