bitsplitters / tasks

Personalize your lists

Mention people and roles, link channels and add hyperlinks — by hand, with full control.

A task is just Discord text, so you can enrich it the way you enrich any message: mention people and roles, link channels, add clickable links. The Owner and Tag buttons do some of this for you, but when you use Bulk update or edit a task’s content you can also write and adjust these by hand — and in bulk edit you’ll see the raw codes, so it helps to know what they mean.

How Discord references things

Discord doesn’t store names, it stores IDs — long numbers that never change even if someone renames themselves. A mention is just a tiny code wrapping an ID. Once you know the pattern, you can type or edit them yourself.

Finding an ID

First, turn on Developer Mode (once):

  1. Discord → User SettingsAdvanced → enable Developer Mode.

Then, anywhere in Discord:

Mentioning people

Wrap a user ID like this:

<@USER_ID>

For example <@123456789012345678> renders as @username. This is exactly what the Tag button inserts for you — so in bulk edit you can copy, move or remove these codes with confidence.

Mentioning roles

Roles use an extra &:

<@&ROLE_ID>

<@&987654321098765432> renders as @role. Use it to point a task at a whole team at once.

Linking channels

Channels use #:

<#CHANNEL_ID>

<#111222333444555666> renders as a clickable #channel. Perfect for sending readers to the right place — “specs in <#…>”, “deploy from <#…>”.

For links to anything outside Discord, use standard Markdown:

[visible text](https://example.com)

So [our roadmap](https://example.com/roadmap) becomes our roadmap — a clean, clickable link instead of a bare URL.

Quick reference

You wantYou writeIt shows
Mention a person<@USER_ID>@username
Mention a role<@&ROLE_ID>@role
Link a channel<#CHANNEL_ID>#channel
Add a link[text](https://url)text

Putting it together

A single task can combine all of these. In Bulk update you might write:

- Review the release notes in <#111222333444555666>, ping <@&987654321098765432> when done — see [checklist](https://example.com/checklist)
Bulk edit with confidence
Bulk update shows the raw text of every task, including the mention codes above. Now that you can read them, you can safely reorder tasks, fix a wrong ID, or swap a channel link — without breaking anything.