{
  "title": "The Complete Guide to ADHD-Optimized Task Systems",
  "subtitle": null,
  "description": "A comprehensive implementation guide for ADHD-friendly task management systems, including attention tax scoring, energy-based prioritization, fatigue cycle management, and integration with AI-assisted workflow optimization.",
  "lane": "notes",
  "slug": "adhd-optimized-task-systems",
  "url": "https://ajvanbeest.com/notes/adhd-optimized-task-systems/",
  "maturity": "seedling",
  "date": "2025-06-28",
  "updated": null,
  "tags": [
    "productivity-adhd",
    "systems-task-management",
    "health-neurodiversity",
    "content-type-implementation-guide"
  ],
  "wordCount": 1653,
  "readingMinutes": 8,
  "markdown": "Traditional task management systems fail spectacularly for ADHD brains. They assume consistent attention, reliable energy levels, and linear priority processing—none of which align with ADHD cognitive patterns. After years of failed productivity systems, I built an ADHD-optimized approach that works *with* ADHD characteristics rather than against them.\n\n## Understanding ADHD Task Management Challenges\n\n### The Attention Economy Problem\nFor neurotypical brains, task switching has a relatively consistent cognitive cost. For ADHD brains, this cost varies dramatically based on:\n\n- **Current attention state** (hyperfocus vs. scattered)\n- **Energy levels** (physical and mental)\n- **Interest alignment** (intrinsic motivation vs. external requirements)\n- **Context complexity** (number of simultaneous considerations)\n- **Emotional state** (anxiety, excitement, frustration)\n\n### Traditional System Failures\nStandard productivity systems fail because they:\n\n1. **Ignore attention variability**: Assume consistent focus capacity\n2. **Overlook energy cycles**: Don't account for fatigue patterns\n3. **Use rigid prioritization**: P1/P2/P3 doesn't reflect ADHD decision-making\n4. **Lack context switching costs**: Don't model the real cost of task transitions\n5. **Missing emotional factors**: Ignore motivation and interest as priority inputs\n\n## The ADHD-Optimized Task System\n\n### Core Design Principles\n\n**Work with ADHD, not against it**:\n- Leverage hyperfocus when it occurs\n- Minimize cognitive overhead during low-attention periods\n- Build systems that function during executive dysfunction\n- Create positive feedback loops for dopamine regulation\n\n**Attention-aware design**:\n- Task complexity matched to current attention capacity\n- Context switching minimized during fragmented attention states\n- High-interest tasks available when motivation strikes\n- Low-barrier tasks for getting unstuck\n\n### The Attention Tax Scoring System\n\nThe breakthrough insight: every task has an \"attention tax\"—the cognitive cost of engaging with and completing it. This tax varies based on:\n\n```typescript\ninterface AttentionTax {\n  baseComplexity: number;      // Inherent task difficulty (1-10)\n  contextSwitching: number;    // Cost of changing mental context (1-10)\n  emotionalBarriers: number;   // Anxiety, avoidance, motivation (1-10)\n  externalDependencies: number; // Waiting on others, unclear requirements (1-10)\n  physicalRequirements: number; // Energy needed for execution (1-10)\n}\n\nfunction calculateAttentionTax(task: Task, currentState: ADHDState): number {\n  const baseTax = task.baseComplexity;\n  const contextPenalty = currentState.fragmentedAttention ? \n    task.contextSwitching * 2 : task.contextSwitching;\n  const emotionalMultiplier = currentState.anxiety > 7 ? 1.5 : 1.0;\n  \n  return (baseTax + contextPenalty + task.emotionalBarriers + \n          task.externalDependencies + task.physicalRequirements) * emotionalMultiplier;\n}\n```\n\n### Energy-Based Task Classification\n\nTasks are classified by the type of energy they require:\n\n**Physical Energy Tasks**:\n- Exercise and movement\n- Cleaning and organization\n- Hands-on building or repair\n- Walking meetings or active work\n\n**Mental Energy Tasks**:\n- Deep analysis and problem-solving\n- Writing and content creation\n- Learning new concepts\n- Complex decision-making\n\n**Social Energy Tasks**:\n- Meetings and collaboration\n- Networking and relationship building\n- Customer or stakeholder communication\n- Conflict resolution\n\n**Creative Energy Tasks**:\n- Brainstorming and ideation\n- Design and artistic work\n- Innovation and experimentation\n- Strategic planning\n\n### Dynamic Priority Calculation\n\nRather than fixed P1/P2/P3 priorities, the system calculates dynamic priorities:\n\n```typescript\ninterface DynamicPriority {\n  urgency: number;           // External deadline pressure\n  importance: number;        // Long-term impact\n  interestLevel: number;     // Intrinsic motivation\n  attentionTax: number;      // Cognitive cost to complete\n  energyAlignment: number;   // Match to current energy type\n  contextFit: number;        // Fit with current environment/tools\n}\n\nfunction calculatePriority(task: Task, state: CurrentState): number {\n  const urgencyWeight = state.timeUntilDeadline < 2 ? 3.0 : 1.0;\n  const interestBonus = task.interestLevel > 7 ? 2.0 : 1.0;\n  const attentionPenalty = task.attentionTax > state.currentAttentionCapacity ? 0.5 : 1.0;\n  \n  return (task.urgency * urgencyWeight + \n          task.importance + \n          task.interestLevel * interestBonus) * \n          attentionPenalty * \n          task.energyAlignment;\n}\n```\n\n## Implementation: The Task Database Architecture\n\n### Core Data Structure\n\n```markdown\n## Task Database Schema\n\n### Task Entry Format\n- **ID**: unique_task_identifier\n- **Content**: Brief, actionable task description\n- **Priority**: P1 (urgent), P2 (important), P3 (someday)\n- **Energy**: physical/mental/social/creative\n- **Attention**: low/medium/high (required attention level)\n- **Context**: work/personal/home/errands\n- **Estimated Duration**: minutes or hours\n- **Dependencies**: prerequisite tasks or external blockers\n- **Interest Level**: 1-10 subjective motivation score\n- **Status**: pending/in_progress/completed/blocked\n```\n\n### Example Task Entries\n\n```markdown\n### High-Interest, Low-Attention Tasks\n- **Write morning pages** #P3 #energy/mental #attention/low #context/personal\n  - Duration: 20 minutes\n  - Interest: 8/10\n  - Attention Tax: 15 (low barriers, high reward)\n\n### Context-Specific Batches  \n- **Process email backlog** #P2 #energy/mental #attention/medium #context/work\n  - Duration: 45 minutes\n  - Interest: 3/10\n  - Attention Tax: 35 (context switching, decision fatigue)\n\n### Hyperfocus-Ready Projects\n- **Redesign automation workflow** #P2 #energy/creative #attention/high #context/work\n  - Duration: 2-4 hours\n  - Interest: 9/10\n  - Attention Tax: 60 (complex, but highly engaging)\n```\n\n### AI-Assisted Task Matching\n\nThe system integrates with AI to provide intelligent task recommendations:\n\n```typescript\ninterface TaskRecommendation {\n  currentState: {\n    energyLevel: 'high' | 'medium' | 'low';\n    attentionCapacity: 'scattered' | 'focused' | 'hyperfocus';\n    availableTime: number; // minutes\n    currentContext: 'work' | 'personal' | 'mobile';\n  };\n  \n  recommendations: {\n    immediate: Task[];      // Can start right now\n    energyMatched: Task[];  // Matched to current energy type\n    interestHigh: Task[];   // High motivation potential\n    lowBarrier: Task[];     // Minimal attention tax\n  };\n}\n```\n\n## Managing ADHD Cognitive Patterns\n\n### Hyperfocus Optimization\nWhen hyperfocus occurs, the system optimizes for it:\n\n1. **Protect the flow state**: Minimize interruptions and context switching\n2. **Extend productive time**: Have related tasks ready to maintain momentum\n3. **Capture insights**: Document decisions and progress for later context reconstruction\n4. **Plan transitions**: Prepare for the inevitable hyperfocus crash\n\n### Executive Dysfunction Support\nDuring executive dysfunction periods, the system provides:\n\n1. **Ultra-low barrier tasks**: Things that can be done almost automatically\n2. **Physical movement options**: Tasks that help restart mental systems\n3. **Structured choices**: Limited options to reduce decision paralysis\n4. **External accountability**: Integration with calendars and commitments\n\n### Attention Fragmentation Management\nWhen attention is scattered, the system offers:\n\n1. **Micro-tasks**: 5-minute or less completable items\n2. **Context batching**: Group similar tasks to reduce switching costs\n3. **Environmental optimization**: Tasks matched to current physical location\n4. **Energy preservation**: Avoid cognitively expensive work during fragmentation\n\n## Fatigue and Recovery Cycles\n\n### Recognizing Patterns\nThe system tracks patterns to predict and optimize for energy cycles:\n\n```markdown\n## Daily Energy Patterns\n- **Morning Peak** (7-10 AM): High mental energy, good for complex work\n- **Midday Dip** (1-3 PM): Lower energy, good for routine tasks\n- **Afternoon Recovery** (3-5 PM): Moderate energy, good for meetings\n- **Evening Wind-down** (6-8 PM): Low energy, good for planning and reflection\n\n## Weekly Cycles\n- **Monday**: High motivation, good for project starts\n- **Tuesday-Thursday**: Steady energy, good for deep work\n- **Friday**: Lower focus, good for administrative tasks\n- **Weekend**: Variable energy, good for personal projects and recovery\n```\n\n### Recovery Integration\nThe system explicitly accounts for recovery:\n\n1. **Recovery tasks**: Activities that restore rather than deplete energy\n2. **Buffer time**: Planned downtime between intensive tasks\n3. **Energy restoration**: Tasks that provide dopamine and accomplishment feelings\n4. **Cycle awareness**: Matching task intensity to predicted energy levels\n\n## Technology Integration\n\n### AI-Powered Optimization\nAI integration provides:\n\n1. **Dynamic recommendations**: Task suggestions based on current state\n2. **Pattern recognition**: Learning from completion patterns and energy cycles\n3. **Predictive modeling**: Anticipating attention and energy states\n4. **Adaptive scheduling**: Automatically adjusting task timing based on performance\n\n### Tool Integration\nThe system integrates with existing tools:\n\n- **Calendar systems**: Protecting focus time and scheduling appropriate work\n- **Note-taking apps**: Capturing insights and context during hyperfocus\n- **Communication tools**: Managing interruptions and external demands\n- **Health tracking**: Incorporating sleep, exercise, and medication data\n\n## Common Implementation Challenges\n\n### Perfectionism and System Complexity\nADHD brains often create overly complex systems that become maintenance burdens:\n\n**Solution**: Start simple and evolve organically. Focus on the minimum viable system that improves daily experience.\n\n### Abandonment Patterns\nADHD individuals frequently abandon productivity systems when they don't work immediately:\n\n**Solution**: Build flexibility and forgiveness into the system. Make it easy to restart after gaps.\n\n### External Pressure Integration\nBalancing ADHD-optimized approaches with external deadlines and expectations:\n\n**Solution**: Translate external requirements into ADHD-friendly formats while maintaining accountability.\n\n## Measuring Success\n\n### ADHD-Appropriate Metrics\nTraditional productivity metrics don't work for ADHD brains. Better metrics include:\n\n1. **Sustained engagement**: Time spent in productive flow states\n2. **Energy efficiency**: Completing tasks with appropriate energy investment\n3. **Stress reduction**: Decreased anxiety and overwhelm around task management\n4. **Interest satisfaction**: Regular engagement with high-motivation work\n5. **Recovery effectiveness**: Successful management of energy and attention cycles\n\n### Continuous Optimization\nThe system improves through:\n\n1. **Pattern tracking**: Identifying what works in different states\n2. **Attention tax calibration**: Refining task difficulty assessments\n3. **Energy cycle mapping**: Understanding personal rhythms and patterns\n4. **Interest evolution**: Adapting to changing motivations and priorities\n\n## Getting Started\n\n### Phase 1: Basic Implementation (Week 1-2)\n1. **Set up task database**: Create simple task entry format\n2. **Track current patterns**: Monitor energy and attention without trying to optimize\n3. **Implement attention tax scoring**: Start classifying tasks by cognitive cost\n4. **Create basic categories**: Energy types and context classifications\n\n### Phase 2: Optimization (Week 3-4)\n1. **Add AI recommendations**: Integrate intelligent task matching\n2. **Refine priority calculations**: Tune dynamic priority algorithms\n3. **Implement recovery cycles**: Plan for energy restoration\n4. **Build pattern recognition**: Start identifying personal productivity patterns\n\n### Phase 3: Advanced Features (Month 2+)\n1. **Predictive scheduling**: Use patterns to optimize future task allocation\n2. **Integration expansion**: Connect with more tools and data sources\n3. **Collaborative features**: Share appropriate context with team members\n4. **Long-term planning**: Align daily tasks with broader goals and projects\n\n## The Strategic Impact\n\nAn ADHD-optimized task system transforms daily experience from constant struggle against neurodivergent characteristics to leveraging them for enhanced productivity and satisfaction. The system recognizes that ADHD brains work differently—not worse—and provides infrastructure to optimize for those differences.\n\n**Key insight**: The most important feature isn't task tracking or prioritization—it's building a system that works with ADHD cognitive patterns rather than fighting them. When task management aligns with how your brain actually functions, productivity becomes sustainable and stress decreases dramatically.\n\nThis approach requires abandoning neurotypical productivity assumptions and embracing the unique characteristics of ADHD cognition: hyperfocus potential, interest-driven motivation, energy variability, and attention dynamics. The result is a task management system that feels supportive rather than demanding, and productive rather than overwhelming.",
  "html": "<p>Traditional task management systems fail spectacularly for ADHD brains. They assume consistent attention, reliable energy levels, and linear priority processing—none of which align with ADHD cognitive patterns. After years of failed productivity systems, I built an ADHD-optimized approach that works <em>with</em> ADHD characteristics rather than against them.</p>\n<h2 id=\"understanding-adhd-task-management-challenges\">Understanding ADHD Task Management Challenges</h2>\n<h3 id=\"the-attention-economy-problem\">The Attention Economy Problem</h3>\n<p>For neurotypical brains, task switching has a relatively consistent cognitive cost. For ADHD brains, this cost varies dramatically based on:</p>\n<ul>\n<li><strong>Current attention state</strong> (hyperfocus vs. scattered)</li>\n<li><strong>Energy levels</strong> (physical and mental)</li>\n<li><strong>Interest alignment</strong> (intrinsic motivation vs. external requirements)</li>\n<li><strong>Context complexity</strong> (number of simultaneous considerations)</li>\n<li><strong>Emotional state</strong> (anxiety, excitement, frustration)</li>\n</ul>\n<h3 id=\"traditional-system-failures\">Traditional System Failures</h3>\n<p>Standard productivity systems fail because they:</p>\n<ol>\n<li><strong>Ignore attention variability</strong>: Assume consistent focus capacity</li>\n<li><strong>Overlook energy cycles</strong>: Don’t account for fatigue patterns</li>\n<li><strong>Use rigid prioritization</strong>: P1/P2/P3 doesn’t reflect ADHD decision-making</li>\n<li><strong>Lack context switching costs</strong>: Don’t model the real cost of task transitions</li>\n<li><strong>Missing emotional factors</strong>: Ignore motivation and interest as priority inputs</li>\n</ol>\n<h2 id=\"the-adhd-optimized-task-system\">The ADHD-Optimized Task System</h2>\n<h3 id=\"core-design-principles\">Core Design Principles</h3>\n<p><strong>Work with ADHD, not against it</strong>:</p>\n<ul>\n<li>Leverage hyperfocus when it occurs</li>\n<li>Minimize cognitive overhead during low-attention periods</li>\n<li>Build systems that function during executive dysfunction</li>\n<li>Create positive feedback loops for dopamine regulation</li>\n</ul>\n<p><strong>Attention-aware design</strong>:</p>\n<ul>\n<li>Task complexity matched to current attention capacity</li>\n<li>Context switching minimized during fragmented attention states</li>\n<li>High-interest tasks available when motivation strikes</li>\n<li>Low-barrier tasks for getting unstuck</li>\n</ul>\n<h3 id=\"the-attention-tax-scoring-system\">The Attention Tax Scoring System</h3>\n<p>The breakthrough insight: every task has an “attention tax”—the cognitive cost of engaging with and completing it. This tax varies based on:</p>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"typescript\"><code><span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">interface</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> AttentionTax</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> {</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  baseComplexity</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">      // Inherent task difficulty (1-10)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  contextSwitching</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">    // Cost of changing mental context (1-10)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  emotionalBarriers</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">   // Anxiety, avoidance, motivation (1-10)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  externalDependencies</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\"> // Waiting on others, unclear requirements (1-10)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  physicalRequirements</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\"> // Energy needed for execution (1-10)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">}</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">function</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> calculateAttentionTax</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">(</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">task</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">,</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> currentState</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> ADHDState</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">)</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number </span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">{</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> baseTax</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">baseComplexity</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> contextPenalty</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> currentState</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">fragmentedAttention</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> ?</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">contextSwitching</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> *</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 2</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> :</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">contextSwitching</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> emotionalMultiplier</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> currentState</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">anxiety</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> &gt;</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 7</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> ?</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 1.5</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> :</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 1.0</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">  </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#9D0006;--shiki-dark:#FB4934\">  return</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">baseTax</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> contextPenalty</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">emotionalBarriers</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">          task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">externalDependencies</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">physicalRequirements</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">) </span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">*</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> emotionalMultiplier</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">}</span></span></code></pre>\n<h3 id=\"energy-based-task-classification\">Energy-Based Task Classification</h3>\n<p>Tasks are classified by the type of energy they require:</p>\n<p><strong>Physical Energy Tasks</strong>:</p>\n<ul>\n<li>Exercise and movement</li>\n<li>Cleaning and organization</li>\n<li>Hands-on building or repair</li>\n<li>Walking meetings or active work</li>\n</ul>\n<p><strong>Mental Energy Tasks</strong>:</p>\n<ul>\n<li>Deep analysis and problem-solving</li>\n<li>Writing and content creation</li>\n<li>Learning new concepts</li>\n<li>Complex decision-making</li>\n</ul>\n<p><strong>Social Energy Tasks</strong>:</p>\n<ul>\n<li>Meetings and collaboration</li>\n<li>Networking and relationship building</li>\n<li>Customer or stakeholder communication</li>\n<li>Conflict resolution</li>\n</ul>\n<p><strong>Creative Energy Tasks</strong>:</p>\n<ul>\n<li>Brainstorming and ideation</li>\n<li>Design and artistic work</li>\n<li>Innovation and experimentation</li>\n<li>Strategic planning</li>\n</ul>\n<h3 id=\"dynamic-priority-calculation\">Dynamic Priority Calculation</h3>\n<p>Rather than fixed P1/P2/P3 priorities, the system calculates dynamic priorities:</p>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"typescript\"><code><span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">interface</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> DynamicPriority</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> {</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  urgency</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">           // External deadline pressure</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  importance</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">        // Long-term impact</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  interestLevel</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">     // Intrinsic motivation</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  attentionTax</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">      // Cognitive cost to complete</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  energyAlignment</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">   // Match to current energy type</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  contextFit</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">        // Fit with current environment/tools</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">}</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">function</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> calculatePriority</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">(</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">task</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">,</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> state</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> CurrentState</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">)</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number </span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">{</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> urgencyWeight</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> state</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">timeUntilDeadline</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> &lt;</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 2</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> ?</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 3.0</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> :</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 1.0</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> interestBonus</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">interestLevel</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> &gt;</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 7</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> ?</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 2.0</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> :</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 1.0</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">  const</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> attentionPenalty</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> =</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">attentionTax</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> &gt;</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> state</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">currentAttentionCapacity</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> ?</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 0.5</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> :</span><span style=\"--shiki-light:#8F3F71;--shiki-dark:#D3869B\"> 1.0</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">  </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#9D0006;--shiki-dark:#FB4934\">  return</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">urgency</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> *</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> urgencyWeight</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">          task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">importance</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> +</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">          task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">interestLevel</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> *</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\"> interestBonus</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">) </span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">*</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">          attentionPenalty</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> *</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">          task</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">.</span><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">energyAlignment</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">}</span></span></code></pre>\n<h2 id=\"implementation-the-task-database-architecture\">Implementation: The Task Database Architecture</h2>\n<h3 id=\"core-data-structure\">Core Data Structure</h3>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"markdown\"><code><span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">##</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\"> Task Database Schema</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">###</span><span style=\"--shiki-light:#B57614;--shiki-light-font-weight:bold;--shiki-dark:#FABD2F;--shiki-dark-font-weight:bold\"> Task Entry Format</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">ID</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: unique_task_identifier</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Content</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: Brief, actionable task description</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Priority</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: P1 (urgent), P2 (important), P3 (someday)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Energy</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: physical/mental/social/creative</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Attention</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: low/medium/high (required attention level)</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Context</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: work/personal/home/errands</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Estimated Duration</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: minutes or hours</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Dependencies</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: prerequisite tasks or external blockers</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Interest Level</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: 1-10 subjective motivation score</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Status</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: pending/in_progress/completed/blocked</span></span></code></pre>\n<h3 id=\"example-task-entries\">Example Task Entries</h3>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"markdown\"><code><span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">###</span><span style=\"--shiki-light:#B57614;--shiki-light-font-weight:bold;--shiki-dark:#FABD2F;--shiki-dark-font-weight:bold\"> High-Interest, Low-Attention Tasks</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Write morning pages</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> #P3 #energy/mental #attention/low #context/personal</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Duration: 20 minutes</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Interest: 8/10</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Attention Tax: 15 (low barriers, high reward)</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">###</span><span style=\"--shiki-light:#B57614;--shiki-light-font-weight:bold;--shiki-dark:#FABD2F;--shiki-dark-font-weight:bold\"> Context-Specific Batches</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">  </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Process email backlog</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> #P2 #energy/mental #attention/medium #context/work</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Duration: 45 minutes</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Interest: 3/10</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Attention Tax: 35 (context switching, decision fatigue)</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">###</span><span style=\"--shiki-light:#B57614;--shiki-light-font-weight:bold;--shiki-dark:#FABD2F;--shiki-dark-font-weight:bold\"> Hyperfocus-Ready Projects</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Redesign automation workflow</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> #P2 #energy/creative #attention/high #context/work</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Duration: 2-4 hours</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Interest: 9/10</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  -</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> Attention Tax: 60 (complex, but highly engaging)</span></span></code></pre>\n<h3 id=\"ai-assisted-task-matching\">AI-Assisted Task Matching</h3>\n<p>The system integrates with AI to provide intelligent task recommendations:</p>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"typescript\"><code><span class=\"line\"><span style=\"--shiki-light:#AF3A03;--shiki-dark:#FE8019\">interface</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> TaskRecommendation</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> {</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  currentState</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> {</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    energyLevel</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">high</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">medium</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">low</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    attentionCapacity</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">scattered</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">focused</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">hyperfocus</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    availableTime</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> number</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\"> // minutes</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    currentContext</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">work</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">personal</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\"> |</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> '</span><span style=\"--shiki-light:#79740E;--shiki-dark:#B8BB26\">mobile</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">'</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  };</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">  </span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">  recommendations</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\"> {</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    immediate</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task[]</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">      // Can start right now</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    energyMatched</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task[]</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">  // Matched to current energy type</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    interestHigh</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task[]</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">   // High motivation potential</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#076678;--shiki-dark:#83A598\">    lowBarrier</span><span style=\"--shiki-light:#427B58;--shiki-dark:#8EC07C\">:</span><span style=\"--shiki-light:#B57614;--shiki-dark:#FABD2F\"> Task[]</span><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">;</span><span style=\"--shiki-light:#928374;--shiki-light-font-style:italic;--shiki-dark:#928374;--shiki-dark-font-style:italic\">     // Minimal attention tax</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">  };</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">}</span></span></code></pre>\n<h2 id=\"managing-adhd-cognitive-patterns\">Managing ADHD Cognitive Patterns</h2>\n<h3 id=\"hyperfocus-optimization\">Hyperfocus Optimization</h3>\n<p>When hyperfocus occurs, the system optimizes for it:</p>\n<ol>\n<li><strong>Protect the flow state</strong>: Minimize interruptions and context switching</li>\n<li><strong>Extend productive time</strong>: Have related tasks ready to maintain momentum</li>\n<li><strong>Capture insights</strong>: Document decisions and progress for later context reconstruction</li>\n<li><strong>Plan transitions</strong>: Prepare for the inevitable hyperfocus crash</li>\n</ol>\n<h3 id=\"executive-dysfunction-support\">Executive Dysfunction Support</h3>\n<p>During executive dysfunction periods, the system provides:</p>\n<ol>\n<li><strong>Ultra-low barrier tasks</strong>: Things that can be done almost automatically</li>\n<li><strong>Physical movement options</strong>: Tasks that help restart mental systems</li>\n<li><strong>Structured choices</strong>: Limited options to reduce decision paralysis</li>\n<li><strong>External accountability</strong>: Integration with calendars and commitments</li>\n</ol>\n<h3 id=\"attention-fragmentation-management\">Attention Fragmentation Management</h3>\n<p>When attention is scattered, the system offers:</p>\n<ol>\n<li><strong>Micro-tasks</strong>: 5-minute or less completable items</li>\n<li><strong>Context batching</strong>: Group similar tasks to reduce switching costs</li>\n<li><strong>Environmental optimization</strong>: Tasks matched to current physical location</li>\n<li><strong>Energy preservation</strong>: Avoid cognitively expensive work during fragmentation</li>\n</ol>\n<h2 id=\"fatigue-and-recovery-cycles\">Fatigue and Recovery Cycles</h2>\n<h3 id=\"recognizing-patterns\">Recognizing Patterns</h3>\n<p>The system tracks patterns to predict and optimize for energy cycles:</p>\n<pre class=\"astro-code astro-code-themes gruvbox-light-medium gruvbox-dark-medium\" style=\"--shiki-light:#3c3836;--shiki-dark:#ebdbb2;--shiki-light-bg:#fbf1c7;--shiki-dark-bg:#282828; overflow-x: auto;\" tabindex=\"0\" data-language=\"markdown\"><code><span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">##</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\"> Daily Energy Patterns</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Morning Peak</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (7-10 AM): High mental energy, good for complex work</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Midday Dip</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (1-3 PM): Lower energy, good for routine tasks</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Afternoon Recovery</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (3-5 PM): Moderate energy, good for meetings</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Evening Wind-down</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\"> (6-8 PM): Low energy, good for planning and reflection</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">##</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\"> Weekly Cycles</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Monday</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: High motivation, good for project starts</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Tuesday-Thursday</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: Steady energy, good for deep work</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Friday</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: Lower focus, good for administrative tasks</span></span>\n<span class=\"line\"><span style=\"--shiki-light:#7C6F64;--shiki-dark:#A89984\">-</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\"> **</span><span style=\"--shiki-light:#AF3A03;--shiki-light-font-weight:bold;--shiki-dark:#FE8019;--shiki-dark-font-weight:bold\">Weekend</span><span style=\"--shiki-light:#7C6F64;--shiki-light-font-weight:bold;--shiki-dark:#A89984;--shiki-dark-font-weight:bold\">**</span><span style=\"--shiki-light:#3C3836;--shiki-dark:#EBDBB2\">: Variable energy, good for personal projects and recovery</span></span></code></pre>\n<h3 id=\"recovery-integration\">Recovery Integration</h3>\n<p>The system explicitly accounts for recovery:</p>\n<ol>\n<li><strong>Recovery tasks</strong>: Activities that restore rather than deplete energy</li>\n<li><strong>Buffer time</strong>: Planned downtime between intensive tasks</li>\n<li><strong>Energy restoration</strong>: Tasks that provide dopamine and accomplishment feelings</li>\n<li><strong>Cycle awareness</strong>: Matching task intensity to predicted energy levels</li>\n</ol>\n<h2 id=\"technology-integration\">Technology Integration</h2>\n<h3 id=\"ai-powered-optimization\">AI-Powered Optimization</h3>\n<p>AI integration provides:</p>\n<ol>\n<li><strong>Dynamic recommendations</strong>: Task suggestions based on current state</li>\n<li><strong>Pattern recognition</strong>: Learning from completion patterns and energy cycles</li>\n<li><strong>Predictive modeling</strong>: Anticipating attention and energy states</li>\n<li><strong>Adaptive scheduling</strong>: Automatically adjusting task timing based on performance</li>\n</ol>\n<h3 id=\"tool-integration\">Tool Integration</h3>\n<p>The system integrates with existing tools:</p>\n<ul>\n<li><strong>Calendar systems</strong>: Protecting focus time and scheduling appropriate work</li>\n<li><strong>Note-taking apps</strong>: Capturing insights and context during hyperfocus</li>\n<li><strong>Communication tools</strong>: Managing interruptions and external demands</li>\n<li><strong>Health tracking</strong>: Incorporating sleep, exercise, and medication data</li>\n</ul>\n<h2 id=\"common-implementation-challenges\">Common Implementation Challenges</h2>\n<h3 id=\"perfectionism-and-system-complexity\">Perfectionism and System Complexity</h3>\n<p>ADHD brains often create overly complex systems that become maintenance burdens:</p>\n<p><strong>Solution</strong>: Start simple and evolve organically. Focus on the minimum viable system that improves daily experience.</p>\n<h3 id=\"abandonment-patterns\">Abandonment Patterns</h3>\n<p>ADHD individuals frequently abandon productivity systems when they don’t work immediately:</p>\n<p><strong>Solution</strong>: Build flexibility and forgiveness into the system. Make it easy to restart after gaps.</p>\n<h3 id=\"external-pressure-integration\">External Pressure Integration</h3>\n<p>Balancing ADHD-optimized approaches with external deadlines and expectations:</p>\n<p><strong>Solution</strong>: Translate external requirements into ADHD-friendly formats while maintaining accountability.</p>\n<h2 id=\"measuring-success\">Measuring Success</h2>\n<h3 id=\"adhd-appropriate-metrics\">ADHD-Appropriate Metrics</h3>\n<p>Traditional productivity metrics don’t work for ADHD brains. Better metrics include:</p>\n<ol>\n<li><strong>Sustained engagement</strong>: Time spent in productive flow states</li>\n<li><strong>Energy efficiency</strong>: Completing tasks with appropriate energy investment</li>\n<li><strong>Stress reduction</strong>: Decreased anxiety and overwhelm around task management</li>\n<li><strong>Interest satisfaction</strong>: Regular engagement with high-motivation work</li>\n<li><strong>Recovery effectiveness</strong>: Successful management of energy and attention cycles</li>\n</ol>\n<h3 id=\"continuous-optimization\">Continuous Optimization</h3>\n<p>The system improves through:</p>\n<ol>\n<li><strong>Pattern tracking</strong>: Identifying what works in different states</li>\n<li><strong>Attention tax calibration</strong>: Refining task difficulty assessments</li>\n<li><strong>Energy cycle mapping</strong>: Understanding personal rhythms and patterns</li>\n<li><strong>Interest evolution</strong>: Adapting to changing motivations and priorities</li>\n</ol>\n<h2 id=\"getting-started\">Getting Started</h2>\n<h3 id=\"phase-1-basic-implementation-week-1-2\">Phase 1: Basic Implementation (Week 1-2)</h3>\n<ol>\n<li><strong>Set up task database</strong>: Create simple task entry format</li>\n<li><strong>Track current patterns</strong>: Monitor energy and attention without trying to optimize</li>\n<li><strong>Implement attention tax scoring</strong>: Start classifying tasks by cognitive cost</li>\n<li><strong>Create basic categories</strong>: Energy types and context classifications</li>\n</ol>\n<h3 id=\"phase-2-optimization-week-3-4\">Phase 2: Optimization (Week 3-4)</h3>\n<ol>\n<li><strong>Add AI recommendations</strong>: Integrate intelligent task matching</li>\n<li><strong>Refine priority calculations</strong>: Tune dynamic priority algorithms</li>\n<li><strong>Implement recovery cycles</strong>: Plan for energy restoration</li>\n<li><strong>Build pattern recognition</strong>: Start identifying personal productivity patterns</li>\n</ol>\n<h3 id=\"phase-3-advanced-features-month-2\">Phase 3: Advanced Features (Month 2+)</h3>\n<ol>\n<li><strong>Predictive scheduling</strong>: Use patterns to optimize future task allocation</li>\n<li><strong>Integration expansion</strong>: Connect with more tools and data sources</li>\n<li><strong>Collaborative features</strong>: Share appropriate context with team members</li>\n<li><strong>Long-term planning</strong>: Align daily tasks with broader goals and projects</li>\n</ol>\n<h2 id=\"the-strategic-impact\">The Strategic Impact</h2>\n<p>An ADHD-optimized task system transforms daily experience from constant struggle against neurodivergent characteristics to leveraging them for enhanced productivity and satisfaction. The system recognizes that ADHD brains work differently—not worse—and provides infrastructure to optimize for those differences.</p>\n<p><strong>Key insight</strong>: The most important feature isn’t task tracking or prioritization—it’s building a system that works with ADHD cognitive patterns rather than fighting them. When task management aligns with how your brain actually functions, productivity becomes sustainable and stress decreases dramatically.</p>\n<p>This approach requires abandoning neurotypical productivity assumptions and embracing the unique characteristics of ADHD cognition: hyperfocus potential, interest-driven motivation, energy variability, and attention dynamics. The result is a task management system that feels supportive rather than demanding, and productive rather than overwhelming.</p>",
  "links": [],
  "alternates": {
    "html": "https://ajvanbeest.com/notes/adhd-optimized-task-systems/",
    "markdown": "https://ajvanbeest.com/notes/adhd-optimized-task-systems.md",
    "json": "https://ajvanbeest.com/notes/adhd-optimized-task-systems.json"
  }
}
