From 768c15ad9d208cae8aa4892516eeff995843e866 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 29 Jul 2025 19:28:45 -0400 Subject: [PATCH] Followers and following documentation updated. --- Commands-Reference.md | 36 ++++++++++++++++++++++++++++++++++++ Quick-Commands.md | 4 ++++ 2 files changed, 40 insertions(+) diff --git a/Commands-Reference.md b/Commands-Reference.md index d76f899..e249c18 100644 --- a/Commands-Reference.md +++ b/Commands-Reference.md @@ -218,6 +218,42 @@ Follow a user. ### `/unfollow ` Unfollow a user. +### `/followers [username] [+count]` +Show followers for yourself or specified user. + +**Usage:** +```bash +/followers # Show your followers +/followers @user@instance.com # Show user's followers +/followers +50 # Show up to 50 of your followers +/followers @user +20 # Show up to 20 of user's followers +``` + +**Aliases:** `/fos` (short for "followers") + +**Notes:** +- Default shows up to 20 followers +- Maximum 80 followers per request (Mastodon API limit) +- Shows account display name, username, and follower/following counts + +### `/following [username] [+count]` +Show who you or specified user follows. + +**Usage:** +```bash +/following # Show who you follow +/following @user@instance.com # Show who user follows +/following +50 # Show up to 50 accounts you follow +/following @user +20 # Show up to 20 accounts user follows +``` + +**Aliases:** `/friends`, `/frs` (short for "friends") + +**Notes:** +- Default shows up to 20 following accounts +- Maximum 80 accounts per request (Mastodon API limit) +- Shows account display name, username, and follower/following counts + ### `/block ` Block a user. diff --git a/Quick-Commands.md b/Quick-Commands.md index e169d68..e0f8439 100644 --- a/Quick-Commands.md +++ b/Quick-Commands.md @@ -58,6 +58,10 @@ Hello world! # Create a public post ```bash /follow @user # Follow a user /unfollow @user # Unfollow a user +/followers # Show your followers +/following # Show who you follow +/followers @user # Show user's followers +/following @user +50 # Show up to 50 accounts user follows /block @user # Block a user /mute @user # Mute a user ```