UNPKG

virtue-tracker

Version:

Personal character development CLI tool for tracking virtues and philosophical alignment

263 lines β€’ 9.92 kB
export const philosophicalTemplates = { stoic: { name: 'πŸ›οΈ Stoic Philosophy', description: 'Ancient wisdom focused on virtue, reason, and living according to nature', virtues: [ { name: 'Wisdom', definition: 'The ability to judge correctly and to have good sense in practical matters', priority_weight: 1.0, template_source: 'stoic', emoji: 'πŸ¦‰' }, { name: 'Justice', definition: 'Treating others fairly and giving each their due, acting for the common good', priority_weight: 0.9, template_source: 'stoic', emoji: 'βš–οΈ' }, { name: 'Courage', definition: 'Facing challenges with bravery, doing what is right despite fear or adversity', priority_weight: 0.8, template_source: 'stoic', emoji: '🦁' }, { name: 'Temperance', definition: 'Moderation in all things, self-control and discipline over desires', priority_weight: 0.7, template_source: 'stoic', emoji: 'βš—οΈ' } ] }, aristotelian: { name: 'πŸ“š Aristotelian Ethics', description: 'Virtue ethics focused on excellence of character and human flourishing', virtues: [ { name: 'Practical Wisdom', definition: 'The intellectual virtue of making good judgments about particular circumstances', priority_weight: 1.0, template_source: 'aristotelian', emoji: '🧠' }, { name: 'Courage', definition: 'The mean between cowardice and recklessness in facing danger', priority_weight: 0.9, template_source: 'aristotelian', emoji: 'πŸ›‘οΈ' }, { name: 'Temperance', definition: 'Moderation in pleasure, the mean between insensibility and self-indulgence', priority_weight: 0.8, template_source: 'aristotelian', emoji: 'βš–οΈ' }, { name: 'Magnanimity', definition: 'Greatness of soul, proper pride and dignity in one\'s accomplishments', priority_weight: 0.7, template_source: 'aristotelian', emoji: 'πŸ‘‘' }, { name: 'Friendship', definition: 'The virtue of proper relationships, mutual respect and shared virtue', priority_weight: 0.6, template_source: 'aristotelian', emoji: '🀝' } ] }, buddhist: { name: '☸️ Buddhist Path', description: 'The Noble Eightfold Path toward liberation from suffering', virtues: [ { name: 'Right Understanding', definition: 'Clear comprehension of the Four Noble Truths and the nature of reality', priority_weight: 1.0, template_source: 'buddhist', emoji: 'πŸ‘οΈ' }, { name: 'Right Intention', definition: 'Commitment to ethical and mental self-improvement', priority_weight: 0.95, template_source: 'buddhist', emoji: 'πŸ’­' }, { name: 'Right Speech', definition: 'Speaking truthfully, harmoniously, and with purpose', priority_weight: 0.9, template_source: 'buddhist', emoji: 'πŸ—£οΈ' }, { name: 'Right Action', definition: 'Acting in ways that do not harm oneself or others', priority_weight: 0.85, template_source: 'buddhist', emoji: 'βœ‹' }, { name: 'Right Mindfulness', definition: 'Clear awareness of body, feelings, mind, and phenomena', priority_weight: 0.8, template_source: 'buddhist', emoji: '🧘' }, { name: 'Right Concentration', definition: 'Wholesome one-pointedness of mind through meditation', priority_weight: 0.75, template_source: 'buddhist', emoji: '🎯' } ] }, christian: { name: '✝️ Christian Virtues', description: 'Cardinal and theological virtues from Christian tradition', virtues: [ { name: 'Faith', definition: 'Trust in divine providence and commitment to spiritual truth', priority_weight: 1.0, template_source: 'christian', emoji: 'πŸ™' }, { name: 'Hope', definition: 'Confident expectation of divine blessing and eternal life', priority_weight: 0.95, template_source: 'christian', emoji: '🌟' }, { name: 'Charity', definition: 'Selfless love of God and neighbor, the greatest of virtues', priority_weight: 0.9, template_source: 'christian', emoji: 'πŸ’' }, { name: 'Prudence', definition: 'Right reason applied to practice, discerning true good', priority_weight: 0.85, template_source: 'christian', emoji: 'πŸ•ŠοΈ' }, { name: 'Temperance', definition: 'Moderation and self-control in all things', priority_weight: 0.8, template_source: 'christian', emoji: 'βš—οΈ' }, { name: 'Fortitude', definition: 'Courage in facing trials and perseverance in difficulty', priority_weight: 0.75, template_source: 'christian', emoji: 'πŸ›‘οΈ' } ] }, confucian: { name: '☯️ Confucian Values', description: 'Traditional Chinese virtues emphasizing social harmony and personal cultivation', virtues: [ { name: 'Ren (Benevolence)', definition: 'Humaneness, kindness, and care for others', priority_weight: 1.0, template_source: 'confucian', emoji: '❀️' }, { name: 'Yi (Righteousness)', definition: 'Moral duty to do what is right and just', priority_weight: 0.9, template_source: 'confucian', emoji: 'βš–οΈ' }, { name: 'Li (Propriety)', definition: 'Proper conduct and rituals that maintain social harmony', priority_weight: 0.8, template_source: 'confucian', emoji: '🎭' }, { name: 'Zhi (Wisdom)', definition: 'Knowledge and understanding applied to moral situations', priority_weight: 0.7, template_source: 'confucian', emoji: 'πŸ“š' }, { name: 'Xin (Trustworthiness)', definition: 'Being reliable, sincere, and keeping one\'s word', priority_weight: 0.6, template_source: 'confucian', emoji: '🀝' } ] }, modern: { name: '🌟 Modern Integration', description: 'Contemporary synthesis drawing from multiple traditions', virtues: [ { name: 'Intellectual Honesty', definition: 'Pursuing truth through reason, evidence, and open inquiry', priority_weight: 1.0, template_source: 'modern', emoji: '🧠' }, { name: 'Emotional Intelligence', definition: 'Understanding and managing emotions skillfully in self and relationships', priority_weight: 0.9, template_source: 'modern', emoji: 'πŸ’‘' }, { name: 'Compassionate Action', definition: 'Translating empathy into concrete help for others', priority_weight: 0.85, template_source: 'modern', emoji: '🀲' }, { name: 'Mindful Presence', definition: 'Full engagement with the present moment without judgment', priority_weight: 0.8, template_source: 'modern', emoji: '🧘' }, { name: 'Authentic Expression', definition: 'Being genuine while respecting others\' boundaries', priority_weight: 0.75, template_source: 'modern', emoji: 'πŸ’Ž' }, { name: 'Systems Thinking', definition: 'Understanding interconnections and long-term consequences', priority_weight: 0.7, template_source: 'modern', emoji: '🌐' } ] } }; //# sourceMappingURL=philosophical-templates.js.map