Skip to content

Commit ab3936d

Browse files
cailmdaleyclaude
andcommitted
Compact CLI reference in session hook
Consolidate add flags onto one line, group obvious commands (link, unlink, tag, untag, upstream, downstream, tree, ready, rm) into a single summary line. 18 → 11 lines. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 12455c5 commit ab3936d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

cmd/hook.go

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -218,20 +218,16 @@ func formatClosedEntry(f *felt.Felt) string {
218218
func cliReference() string {
219219
return `## CLI
220220
` + "```" + `
221-
felt "title" # create fiber
222-
felt add "title" -k decision # -k: kind (task|decision|question|spec|doc)
223-
felt add "title" -a <dep-id> # -a: depends on (after)
221+
felt add "title" -k decision -a <dep-id> -t <tag> # create fiber (-k: kind, -a: depends on, -t: tag)
224222
felt on <id> # start working (reopens if closed)
225223
felt off <id> -r "outcome" # close with reason
226224
felt comment <id> "note" # add comment
227225
felt ls # open/active fibers
228226
felt ls -s all -k decision # -s: status, -k: kind filter
229227
felt show <id> # full details
230-
felt ready # fibers with all deps closed
231228
felt find "query" # search title/body/reason
232-
felt link <id> <dep-id> # add dependency
233-
felt upstream/downstream <id> # see connections
234229
felt edit <id> --title "new" # replace metadata (title, kind, due, reason)
230+
Also: link, unlink, tag, untag, upstream, downstream, tree, ready, rm
235231
` + "```" + `
236232
Statuses: ○ open, ◐ active, ● closed
237233
To patch body text (not replace), edit .felt/<id>.md directly.

0 commit comments

Comments
 (0)