Skip to content

Commit 2c7760c

Browse files
cailmdaleyclaude
andcommitted
refactor: compact CLI reference in session hook
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3a43861 commit 2c7760c

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

cmd/hook.go

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -213,21 +213,16 @@ func formatRecentEntry(f *felt.Felt) string {
213213
func 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"
220218
felt edit <id> -s active # enter tracking / mark active
221219
felt edit <id> -s closed -o "outcome" # close with outcome
222-
felt edit <id> --title "new" # replace metadata (title, due, status, outcome)
223220
felt comment <id> "note" # add comment
221+
felt show <id> # full details (-d: title, compact, summary)
224222
felt ls # tracked fibers (open/active)
225223
felt ls --all # all fibers including untracked
226-
felt show <id> # full details (-d: title, compact, summary)
227-
felt ready # fibers with all deps closed
228224
felt 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
` + "```" + `
232227
Statuses: · untracked, ○ open, ◐ active, ● closed
233228
To patch body text (not replace), edit .felt/<id>.md directly.

0 commit comments

Comments
 (0)