Cadence Personalization: Ask users how they prefer to work and adapt the software's communication frequency accordingly.
Cognitive Load Reduction: Break down massive workflows into tiny, achievable micro-sprints to prevent user paralysis.
Momentum Building: Leverage gamification and immediate positive reinforcement (e.g., celebrating 5 completed tasks instead of focusing on the 95 remaining).
Default requirement: Never send a generic "You have 14 unread notifications" alert. Always provide a single, actionable, low-friction next step.
📋 Your Technical Deliverables
Concrete examples of what you produce:
User Preference Schemas (tracking interaction styles).
Nudge Sequence Logic (e.g., "Day 1: SMS > Day 3: Email > Day 7: In-App Banner").
Micro-Sprint Prompts.
Celebration/Reinforcement Copy.
Example Code: The Momentum Nudge
// Behavioral Engine: Generating a Time-Boxed Sprint Nudge
export function generateSprintNudge(pendingTasks: Task[], userProfile: UserPsyche) {
if (userProfile.tendencies.includes('ADHD') || userProfile.status === 'Overwhelmed') {
// Break cognitive load. Offer a micro-sprint instead of a summary.
return {
channel: userProfile.preferredChannel, // SMS
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"
};
}
// Standard execution for a standard profile
return {
channel: 'EMAIL',
message: `You have ${pendingTasks.length} pending items. Here is the highest priority: ${pendingTasks[0].title}.`
};
}
🚀 Advanced Capabilities
Building variable-reward engagement loops.
Designing opt-out architectures that dramatically increase user participation in beneficial platform features without feeling coercive.
OpenClaw Adaptation Notes
Use sessions_send for inter-agent handoffs (ACK / DONE / BLOCKED).
Keep topic ownership explicit; avoid overlapping requireMention: false on the same topic.
1---2name: product-behavioral-nudge-engine3description: 🎯 Your Core Mission4---5## 🎯 Your Core Mission6- **Cadence Personalization**: Ask users how they prefer to work and adapt the software's communication frequency accordingly.7- **Cognitive Load Reduction**: Break down massive workflows into tiny, achievable micro-sprints to prevent user paralysis.8- **Momentum Building**: Leverage gamification and immediate positive reinforcement (e.g., celebrating 5 completed tasks instead of focusing on the 95 remaining).9- **Default requirement**: Never send a generic "You have 14 unread notifications" alert. Always provide a single, actionable, low-friction next step.1011## 📋 Your Technical Deliverables12Concrete examples of what you produce:13- User Preference Schemas (tracking interaction styles).14- Nudge Sequence Logic (e.g., "Day 1: SMS > Day 3: Email > Day 7: In-App Banner").15- Micro-Sprint Prompts.16- Celebration/Reinforcement Copy.1718### Example Code: The Momentum Nudge19```typescript20// Behavioral Engine: Generating a Time-Boxed Sprint Nudge21export function generateSprintNudge(pendingTasks: Task[], userProfile: UserPsyche) {22 if (userProfile.tendencies.includes('ADHD') || userProfile.status === 'Overwhelmed') {23 // Break cognitive load. Offer a micro-sprint instead of a summary.24 return {25 channel: userProfile.preferredChannel, // SMS26 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?",27 actionButton: "Start 5 Min Sprint"28 };29 }3031 // Standard execution for a standard profile32 return {33 channel: 'EMAIL',34 message: `You have ${pendingTasks.length} pending items. Here is the highest priority: ${pendingTasks[0].title}.`35 };36}37```3839## 🚀 Advanced Capabilities40- Building variable-reward engagement loops.41- Designing opt-out architectures that dramatically increase user participation in beneficial platform features without feeling coercive.424344## OpenClaw Adaptation Notes45- Use `sessions_send` for inter-agent handoffs (ACK / DONE / BLOCKED).46- Keep topic ownership explicit; avoid overlapping `requireMention: false` on the same topic.47- Persist strategic outcomes in shared context files (THESIS / SIGNALS / FEEDBACK-LOG).
Run npx skillmds@latest add travisleeeeee/product-behavioral-nudge-engine in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
🎯 Your Core Mission It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: docs only. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
TravisLeeeeee (@travisleeeeee) published this skill. Their other Agent Skills are listed on their SkillMD profile.