Skip to content

productivity software - combining the Eisenhower productivity matrix and Kanban methodologies

Notifications You must be signed in to change notification settings

clockworksspheres/eisenban

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eisenban

productivity software - combining the Eisenhower Matrix and Kanban methodologies

Simple app for managing time

Intended Design notes, thoughts, diagrams, etc

eisenban design documentation

Data Model

Considering a data structure model something like:

{
     {
         task: {id: "", 
                title: "", 
                description: "", 
                creationTimestamp: "", 
                initialTargetCompletionTimestamp: ""
                },
     }
     {
         state: {task: {id: "", title: ""}, 
                notes: "", 
                priority: {}, 
                kanbanColumns: [backLog, inProgress, done, hold, delegated], 
                currentState: ""
                holdUntil: "", 
                holdNotes: "", 
                targetCompletionTimestamp: ""
                }
     }
     {
         priority: {niceLvl: "", 
                    urgent: bool, 
                    important: bool,
                    priorityNotes: ""
                    }
     }
     {
         move: {task: {id: "", 
                       title: ""
                       }, 
                fromState: {}, 
                toState: {}, 
                moveTimestamp: ""
                }
     }

}

parent template to be created that will provide default handlers for each piece of data for whether that data is included in processing or not.

References:

References describing the Eisenhower Matrix:

References describing Kanban:

a few other github personal kanban projects

a few other personal eisenhower matrix projects

Examples of other apps with task tracking integrations with other and similar systems -

About

productivity software - combining the Eisenhower productivity matrix and Kanban methodologies

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published