User Notes lets your mod team attach persistent, color-coded notes to any Reddit account directly from posts, comments, user hovercards, and ban/contributor pages. Notes are stored in your subreddit’s wiki and are immediately visible to every moderator who has Toolbox installed — no external spreadsheets or shared documents required.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/toolbox-team/reddit-moderator-toolbox/llms.txt
Use this file to discover all available pages before exploring further.
How it works
When Toolbox detects an author element on a page you moderate, it injects a small clickable tag next to the username. If the user has existing notes, the tag shows a truncated preview of the most recent note, colored according to its note type. Clicking the tag opens a dialog where you can view the full history, add new notes, and delete individual entries. Notes are stored as versioned JSON inr/SUBREDDIT/wiki/usernotes. Each save creates a new wiki revision, giving you a complete audit trail of all changes. The current schema version is 6.
Adding and editing notes
Click the note tag next to a username
N for users with no notes or a preview of the latest note text for users who have notes. Click it to open the User Notes dialog.Select a note type
Write the note text
Default note types
Toolbox ships with seven built-in note types. Subreddit moderators can replace these with custom types and colors through the Toolbox subreddit configuration.| Key | Display text | Color |
|---|---|---|
gooduser | Good Contributor | green |
spamwatch | Spam Watch | fuchsia |
spamwarn | Spam Warning | purple |
abusewarn | Abuse Warning | orange |
ban | Ban | red |
permban | Permanent Ban | darkred |
botban | Bot Ban | black |
Usernotes manager
The manager lets you view, search, filter, and bulk-manage all notes across a subreddit in one overlay.Open the manager
unManagerLink is enabled (the default), an edit usernotes link appears in the mod context menu on any subreddit page you moderate. Click it to open the manager overlay.Search and filter
Delete notes or users
Prune notes in bulk
Notes on mod pages
WhenshowOnModPages is enabled, Toolbox also displays the current usernote tag on ban pages, contributor pages, and moderator management pages (/about/banned, /about/contributors, /about/moderators). This lets you see at a glance whether a user you are acting on has existing notes.
Wiki storage format
Notes are stored inr/SUBREDDIT/wiki/usernotes as a compressed JSON object. The structure uses a constants pool to deduplicate mod usernames and note type keys, reducing the size of the stored blob. Toolbox handles schema migration automatically — if it detects an older schema version (minimum supported: v4), it prompts you to upgrade. Schema v6 uses zlib compression on the users object.
Settings reference
unManagerLink — Show usernotes manager in modbox
unManagerLink — Show usernotes manager in modbox
Default:
trueWhen enabled, adds an edit usernotes link to the Toolbox context menu on subreddit pages you moderate. Clicking the link opens the full usernotes manager overlay for that subreddit.showDate — Show date in note preview
showDate — Show date in note preview
Default:
falseWhen enabled, the inline note preview tag next to usernames includes the date the most recent note was created, formatted as a locale-appropriate short date string (e.g. spam warning (5/9/2026)).showOnModPages — Show current usernote on mod pages
showOnModPages — Show current usernote on mod pages
Default:
falseWhen enabled, Toolbox displays the current usernote tag on subreddit management pages: the ban list (/about/banned), contributor list (/about/contributors), and moderator list (/about/moderators).maxChars — Max characters in note preview (advanced)
maxChars — Max characters in note preview (advanced)
Default:
20Controls how many characters of the most recent note text are shown in the inline preview tag before the text is truncated with an ellipsis. The date, if enabled via showDate, is appended after this limit and does not count toward it.onlyshowInhover — Only show in hover (hidden)
onlyshowInhover — Only show in hover (hidden)