pivotal_tools v0.13 =================== pivotal_tools is a geeky command-line interface with additional scrum, planning poker, and changelog generation features. `Blog post on its usage`_ .. _Blog post on its usage: http://jtushman.github.io/blog/2013/08/15/introducing-pivotal-tools/ Installation ------------ :: pip install pivotal_tools Add :envvar:`PIVOTAL_TOKEN` to your environment. If you use zsh, you could put it in :file:`~/.zshenv`, like so:: export PIVOTAL_TOKEN='your token' Also make sure in your pivotal project settings that you have "Allow API Access" checked (currently the default behavior). Usage ----- Options accepted by all commands """""""""""""""""""""""""""""""" All commands take the following options: :option:`--project-index` If you have multiple projects, this is the index that the project shows up in my prompt. This is useful if you do not want to be prompted, and then you can pipe the output. Passing this parameter will make everything faster. Commands """""""" changelog ^^^^^^^^^ List out projects stories that are delivered or finished (not accepted) show_stories ^^^^^^^^^^^^ Lists all stories for a given project (will prompt you if not specified). :option:`--for` Filter by the given user name. :option:`--number` Number of stories to show. Defaults to 20. show_story ^^^^^^^^^^^^^^^^^^^^^ :: pivotal_tools show_story Show the details for a given story. browser_open ^^^^^^^^^^^^^^^^^^^^^^^ :: pivotal_tools browser_open Will open the given story in a browser. scrum ^^^^^ :: pivotal_tools scrum Will list stories and bugs that team members are working on. Grouped by team member. poker or planning ^^^^^^^^^^^^^^^^^ :: pivotal_tools poker pivotal_tools planning # equivalent Help to facilitate a planning poker session. create ^^^^^^ :: pivotal_tools create feature pivotal_tools create bug pivotal_tools create chore Create a story. story ^^^^^^^^^^^^^^^^^^^^^^^ :: pivotal_tools start story pivotal_tools finish story pivotal_tools deliver story pivotal_tools accept story pivotal_tools reject story Change the state of a story. :: Usage: pivotal_tools changelog [--project-index=] pivotal_tools show_stories [--project-index=] [--for=] [--number=] pivotal_tools show_story [--project-index=] pivotal_tools browser_open [--project-index=] pivotal_tools scrum [--project-index=] pivotal_tools poker [--project-index=] pivotal_tools planning [--project-index=] pivotal_tools create (feature|bug|chore) [<description>] [--project-index=<pi>] pivotal_tools (start|finish|deliver|accept|reject) story <story_id> [--project-index=<pi>] Options: -h --help Show this screen. --for=<user_name> Username, or initials --project-index=<pi> If you have multiple projects, this is the index that the project shows up in my prompt This is useful if you do not want to be prompted, and then you can pipe the output