Agent Skills
› MaxKmet/idea-validation-agents
› user-segmentation-profiler
user-segmentation-profiler
GitHub根据用户经验、预算、时间和目标将其分类为初学者、构建者或增长型层级,并写入用户配置文件。用于在会话初期收集关键约束,以便后续技能提供个性化建议。
Trigger Scenarios
新用户首次交互
需要重新评估用户层级时
Install
npx skills add MaxKmet/idea-validation-agents --skill user-segmentation-profiler -g -y
SKILL.md
Frontmatter
{
"name": "user-segmentation-profiler",
"description": "Classifies the user into an ICP tier (beginner\/builder\/growth) based on experience, constraints, and goals. Run once per user session before any workflow."
}
Skill: user-segmentation-profiler
Purpose
Classify the user into one of three ICP tiers and capture their constraints so all subsequent skills can tailor their output and recommendations appropriately.
Input
- Conversation history or direct user answers about experience, budget, time, and goals.
- Optional: existing
memory/user_profile.md(update if already exists)
Process
- Ask the user about shipped apps (count, revenue, outcome).
- Ask about available time per week and budget for ads/tools.
- Ask about risk tolerance (need income vs. exploring).
- Score against the tier rubric below.
- Write output to
memory/user_profile.md.
Tier Rubric
| Tier | Criteria |
|---|---|
beginner |
No shipped apps, no audience, needs full guidance |
builder |
Some experience, weak GTM/validation skills |
growth |
Understands CAC/LTV, wants leverage and scale |
Output
Write to memory/user_profile.md (merge with existing if present):
{
"icp_tier": "beginner | builder | growth",
"budget_constraint": "low | medium | high",
"time_per_week_hours": 0,
"risk_tolerance": "low | medium | high",
"strategy_recommendations": []
}
Notes
Version History
- 3a4c800 Current 2026-07-24 12:20


