The qa.debian.org bugs in the BTS use usertags for sorting: http://bugs.debian.org/qa.debian.org . Here's the current setting in case someone wants to change it:

user qa.debian.org@packages.debian.org
usercategory qa-department
 * QA-Department [tag=]
  + Uncategorized []
  + Carnivore [carnivore]
  + DDPO [ddpo]
  + Debcheck [debcheck]
  + Debian Sources [debsources]
  + DEHS [dehs]
  + Dose [dose]
  + Jenkins [jenkins]
  + Madison [madison]
  + MIA Tracking [mia]
  + Mole [mole]
  + Package Tracking System [pts]
  + Patch tracking [patchtracking]
  + SVN Buildstat [svnbuildstat]
  + Ultimate Debian Database [udd]
  + WNPP [wnpp]
  + VCSWatch [vcswatch]
  + QA Webpages [webpages]
  + fakeupstream.cgi [fakeupstream]
  + cloud scripts [cloud-scripts]
  + Build Logs Scanner [bls]
  + Trends.debian.net [trends]
usercategory qa-sort
 * status
 * qa-department
 * severity
usercategory normal
 * status
 * qa-department
 * severity
usercategory old
 * status
 * severity
 * classification
thanks

The current setting can also be retrieved from rsync://bugs-mirror.debian.org/bts-spool-index/user/*/qa.debian.org*packages.debian.org.

To see only bugs with a specific tag point your browser to http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=qa.debian.org@packages.debian.org;tag=<tag_here>

To tag the bugs, use:

To: Debian Bugs Request <request@bugs.debian.org>

user qa.debian.org@packages.debian.org
usertags 12345678 + pts
thanks

or, using the bts command line utility from devscripts:

$ bts user qa.debian.org@packages.debian.org , usertags 12345678 + pts

Querying the usertags using UDD

select id, title, array_agg(tag) as tags
from bugs
left join (select id, tag from bugs_usertags
where email='qa.debian.org@packages.debian.org') t using (id)
where source='qa.debian.org'
group by id, title
order by tags, id;