一键导入
personalization-builder
Build and extend the personalization system. Use when adding behavior tracking, user preferences, personalized feeds, or privacy controls.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and extend the personalization system. Use when adding behavior tracking, user preferences, personalized feeds, or privacy controls.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build and extend the recommendation engine. Use when adding related posts, trending, personalized feeds, or saved posts.
Build and extend the search system. Use when adding search routes, indexing, ranking, filters, or search analytics.
Seo Keyword Research capability
Affiliate click and conversion tracking skill for DZIRE_v1. Records clicks, attributes conversions via session/click ID, and manages payout records.
Stripe payment integration skill for DZIRE_v1. Handles Checkout sessions, webhook verification, customer management, and payment security.
Revenue analytics and MRR/ARR reporting skill for DZIRE_v1. Aggregates subscription, affiliate, and sponsor revenue into summary metrics.
| name | personalization-builder |
| description | Build and extend the personalization system. Use when adding behavior tracking, user preferences, personalized feeds, or privacy controls. |
| category | build |
| step | 9 |
| version | v1.0 |
| inputs | ["user request","existing backend/app/user_behavior/ structure","database/schemas/user_behavior.sql","api/contracts/user-behavior.json"] |
| outputs | ["Behavior tracking routes and services","User preference management","Personalization scoring","Privacy controls"] |
Build and extend the personalization and behavior tracking system for DZIRE_v1.
backend/app/user_behavior/
├── models.py — UserBehaviorEvent, UserPreference ORM models
├── routes.py — FastAPI route handlers
└── services.py — Business logic
backend/app/recommendations/
└── personalization.py — Personalization score computation
post_view, post_click, tag_click, category_click, search,
save_post, share_post, newsletter_click, affiliate_click,
vip_click, time_on_page, scroll_depth
PUT /api/behavior/preferences/{user_id} with personalization_enabled: false disables personalizationDELETE /api/behavior/history/{user_id} wipes all eventsbackend/app/main.py under # Step 9 routersdocs/personalization.md for full documentation