Skip to main content

Fight burnout. Stay organized.

Project description

Monoqueue

Fight burnout. Stay organized.

Purpose

This project unifies your support queue across various sources, such as:

  • GitHub issues and PRs
  • Topics from online forums
  • Tickets from helpdesk software
  • Any action that can be represented by a URL

Monoqueue's target audience is people managing large numbers of action items:

  • Maintainers of open source software projects
  • Support personnel on public community forums
  • Anyone with more action items than they can finish

Items in the queue are scored according to a customizable ruleset, so that you can attack them in order, maximizing the impact of your time and effort, while minimizing decision paralysis and fatigue from repeated evaluation of which items to address next.

It is designed to scale as your list of items becomes more than one person can possibly handle completely. Rather than succumbing to Sisyphean ennui, define your scoring criteria, let monoqueue sort your items, and do what you can!

You're only human; use monoqueue to be your best within a limited time budget.

Design goals

Installation

pip install monoqueue

Or from source:

pip install --user git+https://github.com/ctrueden/monoqueue.git#egg=monoqueue

And put ~/.local/bin on your path.

Configuration

vi ~/.config/monoqueue.conf

Then add content of the form:

[rules]
rule01 = bookmark                                   -> +20: action bookmark

rule10 = issue/pull_request                         -> +20: pull request
rule11 = "ctrueden" in issue/assignees/login        -> +5: assigned to me
rule12 = ["ctrueden"] == issue/assignees/login      -> +5: assigned to only me
rule13 = "/monoqueue/" in issue/url                 -> +5: favorite project (monoqueue)
rule14 = issue/milestone/title == "next-release"    -> +3: next-release milestone
rule15 = "@ctrueden" in issue/body                  -> +2: mentions me
rule16 = issue/author_association == "CONTRIBUTOR"  -> +5: issue author is non-member
rule17 = issue/state == "open"                      -> +1: open issue
rule18 = issue/reactions/total_count                -> +X: number of reactions
rule19 = issue/comments                             -> +X: number of comments
rule20 = issue/draft                                -> -2: draft PR

rule50 = topic/has_accepted_answer is False         -> +5: has no accepted answer
rule51 = "monoqueue" in topic/tags                  -> +5: monoqueue tag

# 10 min = +12960; 1 hour = +2160; 8 hours = +270; 1 day = +90; 1 week = +10; 2 weeks = +5; 1 month = +2
rule77 = 7776000 / seconds_since_update             -> +X: time since last update (rapid response)
#rule77 = seconds_since_update / 86400               -> +X: days since last update (backlog tackle)

rule99 = issue/milestone/title == "unscheduled"     -> /100: unscheduled milestone

[firefox]
folder = ACTION

[github]
token = <your-github-api-token>
query = is:open+org:my-favorite-org+org:my-other-favorite-org+repo:a-repo-I-manage

[forum.example.com]
handler = discourse
username = <your-discourse-username-on-forum.example.com>
key = <discourse-api-key-for-forum.example.com>
query = #a-category-to-search tags:foo,bar,stuff status:open status:unsolved

Then protect your secrets:

chmod 600 ~/.config/monoqueue.conf

Rules

Rules are written in Python syntax, parsed by Python's ast module, and evaluated using a custom evaluator to avoid calling the insecure eval function. The monoqueue evaluator supports standard Python unary and binary operators, as well as a special overload of the divide (/) operator for digging into nested data structures easily.

To figure out your rules, first set up your sources, then run mq up, then browse your monoqueue data in ~/.local/share/monoqueue/items.json while studying the rules above for inspiration. You can do it, I believe in you! <3

Sources

Apart from the [rules], each configuration section declares a source.

Firefox

The Firefox handler scans your local Firefox installation's bookmarks, and creates an action item for each item within any folder whose name regex-matches the configured one.

GitHub

The GitHub handler connects to GitHub using the specified personal access token, and pulls down all GitHub Issues (including Pull Requests) matching the given query.

How to make a personal access token:

  • https://github.com/settings/tokens → Generate new token → Generate new token (classic)
  • Name the token whatever you want, use whatever expiration you want
  • Scope: repo (Full control of private repositories)
  • Click green "Generate token" button
  • Copy the resulting token to your clipboard
  • Paste it into ~/.config/monoqueue.conf as a token = <your-token> pair in a [github] section.

Discourse

The Discourse handler connects to a Discourse forum instance via its API using the specified API key.

How to make a Discourse API key:

  • https://forum.yourdiscourseinstance.com/admin/api/keys → New API Key
  • Description: monoqueue (or whatever you want)
  • User Level: Single User (your username)
  • Scope: Read-only
  • Click the blue "Save" button
  • Copy the resulting key to your clipboard
  • Paste it into ~/.config/monoqueue.conf as an key = <your-api-key> pair in the relevant Discourse section.
  • Also add a username = <your-username> pair to that same section.

Usage

Command Description
mq up Fetch items from configured sources (Firefox, GitHub, Discourse, etc.).
mq ui Launch the interactive user interface.
mq ls List action items in plaintext.
mq ls --html List action items as an HTML report.
mq info <url> Show detailed info about an action item.

Limitations and pitfalls

Well am I making haste or could it be haste is making me?
What's time but a thing to kill or keep or buy or lose or live in?
I gotta go faster, keep up the pace
Just to stay in the human race

—Bad Religion - Supersonic

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

monoqueue-1.1.0.tar.gz (19.3 kB view details)

Uploaded Source

Built Distribution

monoqueue-1.1.0-py3-none-any.whl (19.2 kB view details)

Uploaded Python 3

File details

Details for the file monoqueue-1.1.0.tar.gz.

File metadata

  • Download URL: monoqueue-1.1.0.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for monoqueue-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c1f7d22bed8224a1b40443befb6ab448fdcc1c1d7e2121f15dc58a7713983d6b
MD5 160df1899ca2291e21b2e0db7ccee327
BLAKE2b-256 b8fbc309191c71930a230591dd6126506177cab539ed74dd292d377e5db93fa2

See more details on using hashes here.

File details

Details for the file monoqueue-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: monoqueue-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for monoqueue-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 81d1492565bbe895ca6187b2c48f8230c14d8c1e2c15606feb1d8739c5fc1275
MD5 b616b0298292b03b0faceded7254535f
BLAKE2b-256 c1ec9632ca9e21fdcf7332346dd2afb25697f8732bb663d8b892228e22db0332

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page