generator-pr
Version:
Tool for Planning and Retrospect
22 lines (21 loc) • 1.02 kB
JavaScript
module.exports = {
month: 1,
items: [
{
type: '', // Work/Grow/Family/Social/Retrospect/Health/Recreation
name: '', // Name of the item you need to do
desc: '', // More specific description
whyDoingGood: '', // For retrospect: What is the area that I am doing good
whyNoGoodEnough: '', // For retrospect: What is the area that I am not doing good enough
followup: '', // For retrospect: The followup action I should take to do it better
contributeToGoal: '', // The larger part of this item. What goal it fulfill?
contributeToValue: '', // The even larger part of goal. What value it brings to me?
weeklyProgressPlan: [
// You can optionally put four elements here which is used for weekly plan generation
// Each element stands for that week's plan of the goal
]
}
],
goals: [], // It should capture all the goals you plan to achieve in this month.
values: [] // The value you want to pursue and keep asking yourself
}