Files
nexus/wiki/concepts/Micro-Sprint.md
2026-05-03 05:42:12 +08:00

1.7 KiB
Raw Blame History

title, type, tags, sources, last_updated
title type tags sources last_updated
Micro-Sprint concept
product-behavioral-nudge-engine
2026-05-01

Definition

Micro-Sprint 是一种将大量任务分解为短时间通常5分钟可完成的微小冲刺的行为工程模式。通过时间盒约束和极简任务范围来对抗认知过载和任务瘫痪。

Mechanism

  • 触发条件:用户队列 ≥ 5条待办或用户状态为 "Overwhelmed" / 识别为 ADHD 倾向
  • 时间盒:通常 5 分钟(可调整)
  • 任务粒度:每次只呈现 1个 动作项
  • 执行流程:推送「准备好了吗?」→ 用户确认 → 开始计时 → 完成 → 即时庆祝 → 询问继续或退出

Example

// Behavioral Engine: Generating a Time-Boxed Sprint Nudge
export function generateSprintNudge(pendingTasks: Task[], userProfile: UserPsyche) {
  if (userProfile.tendencies.includes('ADHD') || userProfile.status === 'Overwhelmed') {
    return {
      channel: userProfile.preferredChannel,
      message: "Hey! You've got a few quick follow-ups pending. Let's see how many we can knock out in the next 5 mins. I'll tee up the first draft. Ready?",
      actionButton: "Start 5 Min Sprint"
    };
  }
}

Connections