• Stars
    star
    250
  • Rank 161,487 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created over 4 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

clikan is a super simple personal kanban board that runs in a CLI

clikan: CLI (Personal) Kanban

There has been a little chatter about 'personal' kanban on the tubes lately. I don't know about the need to hype it as personal, but if you're looking to get your head wrapped around stuff needing to get done - then kanban is a healthy tool. clikan is a super simple command-line utility for tracking tasks following the Japanese Kanban (boarding) style. clikan's core intent is to be easy to use, and to maintain simplicity.

icon

Installation

$ pip install clikan

Alternative Installation with Guix

$ guix install clikan

Create a .clikan.yaml in your $HOME directory

---
clikan_data: /Users/kplummer/.clikan.dat
limits:
  todo: 10
  wip: 3
  done: 10
  taskname: 40
repaint: true
  • clikan_data is the datastore file location.
  • limits:todo is the max number of items allowed in the todo column, keep this small - you want a smart list, not an ice box of ideas here.
  • limits:wip is the max number of items allowed in in-progress at a given time. Context-switching is a farce, focus on one or two tasks at a time.
  • limits:done is the max number of done items visible, they'll still be stored. It's good to see a list of done items, for pure psyche.
  • limits:taskname is the max length of a task text.
  • repaint is used to tell clikan to show the display after every successful command - default is false/off.

-- or --

$ clikan configure

to create a default data file location.

This is where the tool will store the history of files. It's configurable so you can put the data in a Dropbox or other cloud-watched directory for safe archiving/backing up.

If you're like me, even clikan is a bunch too many characters to type, so shorten with an alias in my shell config to clik.

Usage

The basic usage of clikan breaks down into three basic commands:

Show

$ clikan show (alias: s)

Add

$ clikan add [task text] (alias: a)

Promote

$ clikan promote [task id] (alias: p)

And there are more supporting commands:

Regress

$ clikan regress [task id]

Delete

$ clikan delete [task id] (alias: d)

Configure

$ clikan configure

Screenshot

Screenshot

Development

It's Python code. Fork, fix, and submit a PR - it'd be super appreciated.

Tests? Um, yeah.

Testing

Updated test suite to include 3.6-3.9 on Windows, macOS and Ubuntu.

Definitely need some help here. There is a basic test suite available in clikan_test.py.

To run it, make sure ~/.clikan.dat is empty, or specify a test locale with the CLIKAN_HOME environment variable the you can run:

CLIKAN_HOME=/tmp pytest clikan_test.py

The project uses this environment variable feature to test different functional configuration scenarios internally to the test suite.

Am considering adding the --config_file feature to allow for specifying the path to the config file as well. If this is something you're interesting in or believe would be beneficial let me know through an Github issue.

License

MIT License

Copyright 2018 Kit Plummer

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Support

Github Issues https://github.com/kitplummer/clikan/issues

Feel free to use issues as a forum-like thing too, ask questions or post comments.

More Repositories

1

pdftohtmlr

Ruby wrapper around the pdftohtml command line utility (around xpdf)
Ruby
32
star
2

PyPak

Communication with Campbell Scientific Dataloggers
Python
23
star
3

xmpp4rails

A xmpp4r wrapper turned Rails plugin...with a few advanced features like user registration and multi-user chat sends.
Ruby
17
star
4

lita-cron

Lita (http://lita.io) plugin to allow for cron-scheduled messages.
Ruby
9
star
5

antiwordr

A simple Ruby wrapper around the antiword command line utility for converting Docs to text.
Ruby
6
star
6

phidgets4r

Fork of the codebase for the phidgets project at RubyForge
Ruby
5
star
7

pachutarget

A Sinatra-based app, that receives http://www.pachube.com triggers and sends an email to me. Fork for your use.
Ruby
4
star
8

Busted

A feed proxy to the SunTran WebWatch bus tracker
Ruby
4
star
9

goa

GitOps Agent - continuously monitors a remote git repository against local/any change, and performs actions (e.g. executes a provided command) - given a periodicity that is defined as a time intervals [NOTE: very much pre-release at this point.]
Rust
4
star
10

MulticastSender

Simple multicast sender demo.
Java
3
star
11

Mil-OSS

Collection of Stuff Presented at Mil-OSS Events
Ruby
2
star
12

pachuber

A simple Ruby wrapper for the Pachube REST API.
Ruby
2
star
13

puppet-allura

Puppet module for Deploying Allura
Puppet
2
star
14

dto

Ditto CLI
Rust
2
star
15

puppet-virtuoso

Simple Puppet module for installing and starting Virtuoso Opensource server
Puppet
2
star
16

cliban

Personal CLI Kanban (in Rust)
Rust
2
star
17

phidgets-oe

Bitbake recipe for the Phidgets Linux library - for Open Embedded.
1
star
18

PosRepToKml

Position Report to KML
Java
1
star
19

ovmtb2

Ruby
1
star
20

helloWorld

Simple web-app used for testing a tester.
Java
1
star
21

worka

Jesque worker example - standalone.
Java
1
star
22

SNAP-Position-Reporter

A simple JBossESB service to simulate a POSREP.
Java
1
star
23

phidget-servo

A simple Phidget servo control app for a Gumstix (OpenEmbedded) environment.
C
1
star
24

MulticastListener

Simple multicast listener demo.
Java
1
star
25

modsofengent

Modern Software Engineering Enterprise Paper (The pace, scale and speed of change in the software world has created nightmare for IT shops and engineering functions within small and large organizations alike...)
Makefile
1
star
26

norm-gateway

A NORM Gateway Listener for JBoss ESB (#miloss)
Java
1
star
27

ditto-rpi4-blinkenlight

Rust
1
star
28

webster

Simple HTTP Servlet - OSGi bundle
Java
1
star
29

ruote-stomp-ping-pong

Simple, Stomp-based, ruote ping pong.
Ruby
1
star
30

kitplummer.github.com

JavaScript
1
star
31

puppet-oce

Basic Puppet module for deploying OpenCascade.
Puppet
1
star