HelpAll Commands

Task Commands

Hint

To understand the concept of tasks, take a look at Tasks.

Info

Task commands are exclusive to the Task Manager Bot.

/task create
title
My task
description
Do this and then do that
assignee
@User
project
default
deadline
10/30/2023 09:00
repeat_interval
10
label
My label
milestone
First milestone
This command creates a new task. The task will get a consecutive number as id and the given title will be linked to it.

Command Options

RequiredNameDescription
YestitleThe title of the task
NodescriptionThe description of a task
NoassigneeA user or role from the server that should get assigned to the task
NoprojectThe project the task should be created in
NodeadlineThe deadline of the task. Can be set to a date with time or as a relative date (e.g. 1w2d)
Norepeat_intervalThe interval in days the task should be repeated or the day of the month the task should be repeated on.
NolabelA label that will be added to the task
NomilestoneThe milestone the task should be linked to
Required permission: MANAGE_TASKS
/task assign
task_id
12
assignee
@User
This command adds a new assignee to the specified task. Roles and users can get assigned to a task. There can be a maximum of 15 assignees per task, counting users and roles.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YesassigneeA user or role from the server that should get assigned to the task
Required permission: MANAGE_TASKS
/task unassign
task_id
12
assignee
@User
This command removes an assignee from a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YesassigneeA user or role from the server that should get removed from the task
Required permission: MANAGE_TASKS
/task info
task_id
12
show
FALSE
Provides detailed information about the task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
NoshowWhether the response should be shown to everyone, or only to the command executor
/task todo
task_id
12
Sets the status of the task with the given id to todo.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
/task inprogress
task_id
12
Sets the status of the task with the given id to inprogress.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
/task done
task_id
12
Sets the status of the task with the given id to done.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
/task edit
task_id
12
title
My new task title
description
The new description of the task
Allows the command author to change the task title and/or description.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
NotitleThe new v of the task
NodescriptionThe new description of the task
Required permission: MANAGE_TASKS
/task list
project
default
assignee
@User
filter
IN_PROGRESS
show
FALSE
Displays all tasks assigned to the specified assignee.

Command Options

RequiredNameDescription
NoprojectThe project the tasks have to be in. If not specified, the currently selected project will be used.
NoassigneeA user or role from the server that should be assigned to the task. If not specified, the command will list all tasks assigned to the command executor.
NofilterThe status the tasks have to be in
NoshowWhether the response should be shown to everyone, or only to the command executor
/task project
project
default
filter
IN_PROGRESS
label
My label
show
FALSE
Displays all tasks inside a selected project.

Command Options

RequiredNameDescription
NoprojectThe project the tasks have to be in. If not specified, the currently selected project will be used.
NofilterThe status the tasks have to be in
NolabelA label the tasks should have
NoshowWhether the response should be shown to everyone, or only to the command executor
/task move
task_id
12
project
default
Moves a task to a different project.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YesprojectThe new project the task should be moved to.
Required permission: MANAGE_TASKS
/task deadline
task_id
12
deadline
12/31/2024 23:59
Sets the deadline of a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
NodeadlineThe new deadline of a task in the dateformat selected by a server admin or as a relative date (e.g. 1 day 2 hours) or in a relative short form (1w2d). If no deadline is set the deadline will be removed from the task.
Required permission: MANAGE_TASKS
/task delete
task_id
12
Move task to recycle bin. Tasks moved to the recycle bin are permanently deleted after 30 days.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Required permission: MANAGE_TASKS
/task restore
task_id
12
Restores a deleted task that was previously moved to the Recycle Bin.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Required permission: MANAGE_TASKS
/task repeat
task_id
12
repeat_interval
7
repeat_end
5 weeks
Makes the task repeatable. If the repeat_interval option is set, the task will be repeated every x days. This means the task will be moved back into the todo state when it reached the done state after the repeat interval is reached.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Norepeat_intervalThe interval in days the task should be repeated or the day of the month the task should be repeated on.
Norepeat_endThe date the task should be repeated until. The date can be set as a relative date (e.g. 1w2d) or in a relative short form (1w2d). If no repeat_end is set the task will be repeated indefinitely. If repeat_end is set to a date in the past, the task will not be repeated.
Required permission: MANAGE_TASKS
/task history
task_id
12
Displays the history of a task. The history contains all changes made to the task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Required permission: VIEW_TASKS
/task priority
task_id
12
priority
high
Changes the priority of a task. The default priority is normal.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YespriorityThe priority of the task. Can be set to low, normal, high and urgent.
Required permission: MANAGE_TASKS
/task todos
task_id
12
action
add
title
Remove the test button
number
1
Manages todos of a task. Todos are tasks that are linked to a parent task. They can be used to split a task into smaller tasks.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YesactionThe action that should be performed on the todos. Can be set to add, remove, complete or uncomplete.
NotitleThe title of the todo that should be added. Only required for the add action.
NonumberThe number of the todo that should be removed, completed or uncompleted. Only required for the remove, complete and uncomplete action.
Required permission: MANAGE_TASKS
/task comment
task_id
12
comment
This is a comment
Adds a comment to a task. Comments can be used to add additional information to a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YescommentThe comment that should be added to the task
Required permission: VIEW_TASKS
/task attach
task_id
12
attachment
File.png
Adds an attachment to a task. Attachments can be used to add additional information to a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
YesattachmentThe attachment that should be added to the task
Required permission: MANAGE_TASKS
/task attachments
task_id
12
show
FALSE
Displays all attachments of a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
NoshowWhether the response should be shown to everyone, or only to the command executor
Required permission: VIEW_TASKS
/task detach
task_id
12
attachment_name
File.png
Removes an attachment from a task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Yesattachment_nameThe name of the attachment that should be removed from the task
Required permission: MANAGE_TASKS
/task watch
task_id
12
Adds the command executor to the list of users watching the task. Users watching a task will receive a notification when the task is updated.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Required permission: VIEW_TASKS
/task unwatch
task_id
12
Removes the command executor from the list of users watching the task.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
/task milestone
task_id
12
milestone
login
Sets the milestone of a task or removes it if no milestone is set in the command.

Command Options

RequiredNameDescription
Yestask_idThe id of the task (can be found in the task list or when creating a task)
Nomilestone
Required permission: MANAGE_TASKS

Project Commands

Hint

To understand the concept of projects, take a look at the projects page.

Info

Project commands are exclusive to the Task Manager and Knowledge Manager Bot.

/project create
project
My project
This will create a new project with the specified name. After the creation, all users on the server will be able to switch to the new project.

Command Options

RequiredNameDescription
YesprojectThe name of the project to create
Required permission: MANAGE_PROJECTS
/project create-personal
project
My own project
This will create a new personal project with the specified name. You will have full control over this project and can add other users to it.

Command Options

RequiredNameDescription
YesprojectThe name of the project to create
Required permission: CREATE_PERSONAL_PROJECTS
/project select
project
My project
This command allows you to select a different project. When new tasks are created, they will be created in the selected project.

Command Options

RequiredNameDescription
YesprojectThe name of the project (can be found in the project list or when creating a project)
/project list
Displays all projects on the server.
/project rename
project
My project
new_name
New project
Renames a project. If no project is specified, the currently selected project will be renamed.

Command Options

RequiredNameDescription
YesprojectThe name of the project (can be found in the project list or when creating a project)
Yesnew_nameThe new name of the project
Required permission: MANAGE_PROJECTS
/project manager
project
My project
manager
@Jan
When no manager option is specified, the bot will display the current manager of the project. If a manager is specified, the bot will set the user as the manager of the project.

Command Options

RequiredNameDescription
YesprojectThe name of the project (can be found in the project list or when creating a project)
NomanagerA user that will be set as a manager of the project. If not specified, the current manager will be displayed.
Required permission: MANAGE_PROJECTS
/project delete
project
My project
Moves the specified project to the recycle bin. It can be restored until it is permanently deleted after 30 days. All tasks in this project will also be moved to the Recycle Bin. If deleted immediately, the project and all tasks within the project will be irrevocably deleted. The bot won't ask for confirmation.

Command Options

RequiredNameDescription
YesprojectThe name of the project to delete
Required permission: MANAGE_PROJECTS
/project restore
project
My project
Restores a project from the Recycle Bin

Command Options

RequiredNameDescription
YesprojectThe name of a deleted project to restore
Required permission: MANAGE_PROJECTS

Milestone Commands

Hint

To understand the concept of milestones, take a look at the milestones page.

Info

Milestone commands are exclusive to the Task Manager Bot.

/milestone create
project
default
milestone_name
Milestone 1
due_date
2021-12-31
Create a new milestone for a project with an optional due date.

Command Options

RequiredNameDescription
YesprojectThe project of the milestone
Yesmilestone_nameThe name of the milestone
Nodue_dateThe due date of the milestone
Required permission: MANAGE_MILESTONES
/milestone list
project
default
List all milestones of a project.

Command Options

RequiredNameDescription
YesprojectThe project to list all milestones of
/milestone delete
milestone_name
Milestone 1
Delete a milestone of a project.

Command Options

RequiredNameDescription
Yesmilestone_nameThe name of the milestone
Required permission: MANAGE_MILESTONES
/milestone edit
milestone_name
Milestone 1
new_name
Milestone 2
due_date
2021-12-31
Update the name or due date of a milestone.

Command Options

RequiredNameDescription
Yesmilestone_nameThe name of the milestone
Yesnew_nameThe name of the milestone
Nodue_dateThe due date of the milestone
Required permission: MANAGE_MILESTONES

Event Commands

Hint

To understand the concept of events, take a look at the events page.

Info

Event commands are exclusive to the Calendar Manager Bot.

/event create
name
My task text
start
31/12/2024 08:00
end
31/12/2024 11:00
location
Channel 2
repeat interval
weekly
repeat_until
12/02/2025
all_day
false
Create a new event.

Command Options

RequiredNameDescription
YesnameThe name of the new event.
YesstartWhen the event should start. Can be set as a date or a date and time or as a duration from now (e.g. 1h, 2d, 3w, 4m, 5y).
NoendWhen the event should end. Can be set as a date or a date and time or as a duration from the start time (e.g. 1h, 2d, 3w, 4m, 5y). If not set, the event will have an duration of 1 hour.
NolocationThe location of the event.
Norepeat intervalThe interval at which the event should repeat. Can be set as daily, weekly, every 2 weeks, ...
Norepeat_untilThe date until which the event should repeat.
Noall_dayIf the event is an all day event. When set to true, the start and end time will be ignored.
Required permission: CREATE_EVENTS
/event invite
event_id
123
invitee
@User1
Sends an invitation to the specified user to the specified event, if the user is not already invited.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
YesinviteeThe user to invite to the event.
/event accept
event_id
123
Accepts the invitation to the specified event.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
/event deny
event_id
123
Denies the invitation to the specified event.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
/event list
start
05/18/2024
Lists all events starting from the specified date.

Command Options

RequiredNameDescription
NostartThe date from which to list the events. If not set, the command defaults to the current date.
/event info
event_id
123
Displays detailed information about the specified event.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
/event remove
event_id
123
invitee
@User1
Removes a user from the specified event.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
YesinviteeThe user to remove from the event.
/event delete
event_id
123
Deletes the specified event.

Command Options

RequiredNameDescription
Yesevent_idThe id of the event to invite the user to. Can be found using the event list command or when creating a new event.
/event subscription
regenerate
true
Generate a subscription link for the user to integrate the bot with their favorite calendar app.

Command Options

RequiredNameDescription
NoregenerateIf the old subscription link should be invalidated and a new one should be generated.

Document Commands

Hint

To understand the concept of documents, take a look at this page.

Info

Document commands are exclusive to the Knowledge Manager Bot.

/document create
Opens a dialog to create a new document with title and content.
Required permission: MANAGE_DOCUMENTS
/document read
document
my document
Displays the content and title of a document

Command Options

RequiredNameDescription
YesdocumentThe name of the document to read.
Required permission: READ_DOCUMENTS
/document info
document
my document
Displays meta information about a document. This includes creator, creation date, last edit date and more.

Command Options

RequiredNameDescription
YesdocumentThe name of the document to get information about.
Required permission: READ_DOCUMENTS
/document list
project
my project
label
my label
Lists all documents.

Command Options

RequiredNameDescription
NoprojectThe name of the project (can be found in the project list or when creating a project)
NolabelFilter by label. If no label is specified, all documents are listed.
Required permission: READ_DOCUMENTS
/document edit
document
my document
Opens a dialog box where the title and content of a document can be edited.

Command Options

RequiredNameDescription
YesdocumentThe name of the document to edit.
Required permission: MANAGE_DOCUMENTS
/document delete
document
my document
Provides a confirmation message where a document can be moved to a trash bin or deleted permanently.

Command Options

RequiredNameDescription
YesdocumentThe name of the document to delete.
Required permission: MANAGE_DOCUMENTS
/document restore
document
my document
Restores a document from the trash bin.

Command Options

RequiredNameDescription
YesdocumentThe name of the document in the bin to restore.
Required permission: MANAGE_DOCUMENTS
/document topic
document
my document
topic
my topic
Changes the topic of a document. This is useful to group documents by topic.

Command Options

RequiredNameDescription
YesdocumentThe name of the document to change the topic of.
NotopicThe name of the topic to move the document to. If no topic is specified, the document will be removed from the topic.
Required permission: MANAGE_DOCUMENTS

Topic Commands

Hint

To understand the concept of topics, take a look at the topic page.

Info

Topic commands are exclusive to the Knowledge Manager Bot.

/topic create
topic
my topic
project
my project
Creates a new topic with the specified name inside the specified project.

Command Options

RequiredNameDescription
YestopicThe name of the topic to create.
NoprojectThe name of the project to create the topic in. If no project is specified, the currently selected project will be used.
Required permission: MANAGE_TOPICS
/topic list
project
my project
Lists all topics.

Command Options

RequiredNameDescription
NoprojectThe name of the project to list the topics of. If no project is specified, all topics across all projects are listed.
Required permission: READ_DOCUMENTS
/topic rename
topic
my topic
new_name
my renamed topic
Renames a topic.

Command Options

RequiredNameDescription
YestopicThe name of the topic to rename.
Yesnew_nameThe new name of the topic.
Required permission: MANAGE_TOPICS
/topic delete
topic
my topic
Provides the choice to move the topic and all documents inside it to the trash bin or delete it permanently.

Command Options

RequiredNameDescription
YestopicThe name of the topic to delete.
Required permission: MANAGE_TOPICS
/topic restore
topic
my topic
Restores a topic and all of its documents from the trash bin.

Command Options

RequiredNameDescription
YestopicThe name of the topic in the bin to restore.
Required permission: MANAGE_TOPICS
/topic move
topic
my topic
project
my project
Moves a topic and all of its documents into a different project.

Command Options

RequiredNameDescription
YestopicThe name of the topic to move.
YesprojectThe name of the project to move the topic to.
Required permission: MANAGE_TOPICS

Label Commands

Info

Label commands are exclusive to the Knowledge Manager and Task Manager Bot.

/label create
name
My label
color
red
Creates a new label with the given name and color.

Command Options

RequiredNameDescription
YesnameThe name of the label.
NocolorThe color of the label, if any.
Required permission: MANAGE_LABELS
/label delete
name
My label
Deletes a label with the given name.

Command Options

RequiredNameDescription
YesnameThe name of an existing label.
Required permission: MANAGE_LABELS
/label list
Lists all labels.
/label add
object_id
13
name
My label
Adds a label with the given name to the object (task or document) with the given ID.

Command Options

RequiredNameDescription
Yesobject_idThe id of the object (task or document) to add the label to.
YesnameThe name of the label to add.
/label remove
object_id
13
name
My label
Removes a label with the given name from the object (task or document) with the given ID.

Command Options

RequiredNameDescription
Yesobject_idThe id of the object (task or document) to remove the label from.
YesnameThe name of the label to remove.
/label edit
name
My label
new_name
New label
color
blue
Removes a label with the given name from the object (task or document) with the given ID.

Command Options

RequiredNameDescription
YesnameThe name of the label to edit.
Yesnew_nameThe new name of the label.
NocolorThe new color of the label, if any.

Permission Commands

Info

To understand the concept of permissions, take a look at the permissions page.

/permission grant
mentionable
@User
permission
MANAGE_TASKS
project
My Project
This will grant the mentioned user or role the specified permission.

Command Options

RequiredNameDescription
YesmentionableThe user or role to grant the permission to.
YespermissionThe permission to grant.
NoprojectA name of an existing project if the permissions should be granted only on a project level.
Required permission: MANAGE_PERMISSIONS
/permission revoke
mentionable
@User
permission
MANAGE_TASKS
project
My Project
Removes specified permisson from mentioned user. Users or roles with administrator permissions & server owners won't be affected by this. If the user has a role with the permission granted, he can still execute commands requiring that permission.

Command Options

RequiredNameDescription
YesmentionableThe user or role to revoke the permission from.
YespermissionThe permission to revoke.
NoprojectA name of an existing project if the permissions should be revoked only on a project level.
Required permission: MANAGE_PERMISSIONS
/permission list
mentionable
@User
project
My Project
This will display all permissions and show if the user has the permission.

Command Options

RequiredNameDescription
YesmentionableThe user or role to list permissions for.
NoprojectA name of an existing project if the permissions should be listed only on a project level.
Required permission: MANAGE_PERMISSIONS
/permission preset
preset
contributor
mentionable
@User
project
My Project
Apply a preset to a user or role. Presets are a collection of permissions.

Command Options

RequiredNameDescription
YespresetThe name of the preset to apply.
YesmentionableThe user or role to apply the preset to.
NoprojectA name of an existing project if the preset should be applied only on a project level.
Required permission: MANAGE_PERMISSIONS

Preferences Commands

/preferences language
language
francais
Changes the language of the bot, only for you.

Command Options

RequiredNameDescription
YeslanguageThe language you want to use.
/preferences timezone
timezone
Europe/Berlin
Changes the timezone the bot uses when working with dates, only for you.

Command Options

RequiredNameDescription
YestimezoneThe timezone you want to use.
/preferences event_reminders
enabled
true
Enables or disables event reminders for you. Only affects the Calendar Manager.

Command Options

RequiredNameDescription
YesenabledWhether you want to receive event reminders.
/preferences direct_messages
enabled
true
Enables or disables direct messages from the bot when a new task gets assigned to you. Only affects the Task Manager.

Command Options

RequiredNameDescription
YesenabledWhether you want to receive direct messages from the bot.

General commands

/setup
Starts the setup process for the bot. This will guide you through the setup of the Task Manager, Knowledge Manager and Calendar Manager.
/support
Gives you the link to our Discord server (https://bnder.net/discord).
/invite
Gives you the link to invite the bot to your server.
/settings language
language
francais
Changes the language of the bot on the server. (This will affect the Task Manager, Knowledge Manager and Calendar Manager if all are on the server).

Command Options

RequiredNameDescription
YeslanguageThe language you want the bots to use.
Required permission: MANAGE_SETTINGS
/settings logging
url
discord.com/...
project
My project 1
Sets a webhook to log events. If no webhook is set, logging will be disabled. Read more about logging here. This only affects the Task Manager for now.

Command Options

RequiredNameDescription
NourlA discord webhook url to log events.
NoprojectA project, if the logging should only be for a specific project.
Required permission: MANAGE_SETTINGS
/settings log_level
level
Create & Delete
Sets the level of logging. Read more about logging and log levels here. This only affects the Task Manager for now.

Command Options

RequiredNameDescription
YeslevelThe level which determines what events should be logged
Required permission: MANAGE_SETTINGS
/settings auto_labeling
enabled
true
Enables or disables the auto labeling feature. Read more about auto labeling here.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings auto_priority
enabled
true
Enables or disables the auto priority feature. Read more about auto priority here.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings timezone
timezone
America/New_York
Changes the timezone of the bot on the server. This will affect the Task Manager and the Knowledge Manager.

Command Options

RequiredNameDescription
YestimezoneThe timezone you want the bots to use.
Required permission: MANAGE_SETTINGS
/settings dateformat
dateformat
MM/dd/yyyy HH:mm
Changes the date format of the bot on the server. This will affect the Task Manager and the Knowledge Manager.

Command Options

RequiredNameDescription
YesdateformatThe date format you want the bots to use.
Required permission: MANAGE_SETTINGS
/settings user_languages
enabled
true
Allows/Disallows user to use the /preferences command to change the language only for them.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings user_timezones
enabled
true
Allows/Disallows user to use the /preferences command to change the timezone only for them.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings default_assignee
default_assignee
Creator
Can change the default assignee for new tasks, between "None", "Creator" and "Project manager".

Command Options

RequiredNameDescription
Yesdefault_assigneeNone, Creator or Project manager
Required permission: MANAGE_SETTINGS
/settings week_start_day
day
monday
Changes the day the week starts on the server. This will affect the Calendar Manager.

Command Options

RequiredNameDescription
YesdayThe day of the week you want the week to start on. Can be set to monday or sunday.
Required permission: MANAGE_SETTINGS
/settings private_messages
enabled
true
Allows/Disallows the bot to send private messages to users. These messages are sent when a user or a role of a user gets assigned to a task. Only affects the Task Manager.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings direct_messages
enabled
true
Enables/Disables direct message notifications. This will send a direct message to the user when they get a new task assigned or an event is coming up.

Command Options

RequiredNameDescription
YesenabledTrue or false
Required permission: MANAGE_SETTINGS
/settings task_cleanup_policy
cleanup_policy
1 week
Sets the cleanup policy for the Task Manager. This will delete tasks that are in the done column for longer than the specified time without any changes.

Command Options

RequiredNameDescription
Yescleanup_policyThe cleanup policy you want the Task Manager to use.
Required permission: MANAGE_SETTINGS
/integration github
Starts the integration process with GitHub. This will allow you to link a GitHub repository to a project in the Task Manager.
Required permission: MANAGE_SETTINGS
/integration gitlab
Starts the integration process with GitLab. This will allow you to link a GitLab repository to a project in the Task Manager.
Required permission: MANAGE_SETTINGS

Discord Bots

Task Manager

Calendar Manager

Knowledge Manager

Getting started

For Schools

Social Media

X (Twitter)

Instagram

Discord

GitHub

YouTube

bnder logo