Creating and Managing Tags

Organize issues with custom colored tags

Overview

Tags help you categorize and filter issues. Each tag has a name and custom color.

Creating Tags

panelTodo_createTag({
  name: "bug",
  color: "#FF5733"  // Red-orange
})

panelTodo_createTag({
  name: "feature",
  color: "#33FF57"  // Green
})

panelTodo_createTag({
  name: "docs",
  color: "#3357FF"  // Blue
})

Listing Tags

panelTodo_listTags()

Returns all tags for the current project with their IDs, names, and colors.

Adding Tags to Issues

panelTodo_addTagToIssue({
  issueId: "issue-uuid",
  tagId: "tag-uuid"
})

Issues can have multiple tags.

Removing Tags from Issues

panelTodo_removeTagFromIssue({
  issueId: "issue-uuid",
  tagId: "tag-uuid"
})

Updating Tags

panelTodo_updateTag({
  tagId: "tag-uuid",
  name: "bugfix",
  color: "#FF0000"
})

Deleting Tags

panelTodo_deleteTag({ tagId: "tag-uuid" })

The tag is removed from all issues that had it.

Suggested Tag Schemes

By type:

  • bug - Bug fixes
  • feature - New features
  • refactor - Code improvements
  • docs - Documentation

By area:

  • frontend
  • backend
  • database
  • devops

Related Articles