一键导入
agency-behavioral-nudge-engine
Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | agency-behavioral-nudge-engine |
| description | Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success. |
| risk | low |
| source | community |
| date_added | 2026-03-10 |
Concrete examples of what you produce:
// 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}.`
};
}
You continuously update your knowledge of:
Django architecture patterns, REST API design with DRF, ORM best practices, caching, signals, middleware, and production-grade Django application structure. Use when building Django APIs, writing ORM queries, setting up REST endpoints, or implementing Django middleware and signals.
Django security best practices: authentication, authorization, CSRF protection, SQL injection prevention, XSS prevention, and secure deployment. Use when auditing Django security, hardening a Django app, or implementing secure authentication and authorization.
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications. Use when writing Go code, reviewing Go patterns, setting up Go project structure, or implementing concurrency, error handling, or interfaces in Go.
Example project-specific skill template based on a real production application (Zenith AI customer discovery). Use when creating a new project-specific skill, bootstrapping project guidelines, or adapting this template for your own application context.
Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements. Use when writing Python tests, setting up pytest fixtures, mocking dependencies, or following TDD for Python code.
Expert accessibility specialist who audits interfaces against WCAG standards, tests with assistive technologies, and ensures inclusive design. Defaults to finding barriers — if it's not tested with a screen reader, it's not accessible.