/
Create, edit, publish, and delete posts. Manage comments, reactions, and media attachments from the command line.
Manage progress update posts. Alias: pf po
List posts, optionally filtered by project or status
alias: pf po ls--projectstringFilter by project ID--statusstringFilter by status: draft or published--limitnumberMax number of results--cursorstringCursor for pagination--sortstringSort by field--reversebooleanReverse sort orderpf posts list --project abc123
pf po ls --status draft --limit 5Create a new post
alias: pf po create--titlestringPost title--contentstringPost content (plain text)--projectstringProject ID to post in--statusstringInitial status: draft or published--publishbooleanPublish immediatelypf posts create --title "Sprint Update" --project abc123 --publishView post details. Accepts a post number or full ID.
alias: pf po showpf posts view 3
pf po show # interactive pickerUpdate a post
alias: pf po update--titlestringNew title--contentstringNew content--statusstringNew status--move-to-projectstringMove post to a different projectpf posts edit 3 --title "Updated Sprint Recap"Delete a post permanently
alias: pf po rm--confirmbooleanSkip confirmation prompt--dry-runbooleanPreview without deletingpf posts delete 3 --confirmPublish a draft post
pf posts publish 3Revert a published post back to draft
pf posts unpublish 3Toggle reactions on posts. Alias: pf r
Toggle a reaction on a post. Use standard emoji or custom:name format.
alias: pf r addpf reactions toggle 3 ��
pf r add 3 custom:fireUpload, list, view, and delete media attachments. Alias: pf m
List media attachments
alias: pf m ls--poststringFilter by post ID--typestringFilter by media type--limitnumberMax number of results--cursorstringCursor for paginationpf media list --post post123 --type imageUpload a file as media to a post
alias: pf m upload--poststringrequiredPost ID to attach media topf media upload screenshot.png --post post123View media details
alias: pf m showpf media view media123Delete a media attachment
alias: pf m rm--confirmbooleanSkip confirmation prompt--dry-runbooleanPreview without deletingpf media delete media123 --confirm
Comments
Add, edit, and delete comments on posts. Supports threaded replies. Alias:
pf cList comments on a post
alias: pf c lsExample
Add a comment to a post
alias: pf c addOptions
--contentstringrequiredComment text--reply-tostringParent comment ID for threadingExample
Edit a comment on a post
Options
--contentstringrequiredNew comment textExample
Delete a comment from a post
alias: pf c rmOptions
--confirmbooleanSkip confirmation prompt--dry-runbooleanPreview without deletingExample