Smos Logo Smos

A comprehensive self-management system

Stuck projects report

Documentation about the smos-query stuck command, for viewing your projects by when you last touched them

This report shows you all your projects in order of when you last touched them.

Reference

Arguments

Usage: smos-query stuck [FILTER] [--threshold ARG]

  Print the stuck projects overview

Available options:
  FILTER                   A filter to filter projects by
  --threshold ARG          The threshold at which to color stuck projects red
  -h,--help                Show this help text

Global options:
  --config-file FILE_PATH  The config file to use
  --workflow-dir DIRECTORY_PATH
                           The workflow directory to use
  --archive-dir DIRECTORY_PATH
                           The archive directory to use
  --projects-dir DIRECTORY_PATH
                           The projects directory to use
  --archived-projects-dir DIRECTORY_PATHPATH
                           The archived projects directory to use

Environment

This command does not use any extra environment variables.

Configuration

# Configuration
stuck: # optional
  # StuckReportConfiguration
  threshold: # optional
    # stuck report threshold to consider stuck projects 'overdue'
    # or null
    def: Time
    # any of
    [ # Time string, for example:
      #  2s
      #  2 seconds
      #  3m
      #  3 minutes
      #  4h
      #  4 hours
      #  5d
      #  5 days
      #  6w
      #  6 weeks
      #  7mo
      #  7 months
      #  8y
      #  8 years
      <string>
    , # Interpreted as a number of days
      <number> # between 0 and 18446744073709551615
    ]