用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Objective-Arts/lens-dist --skill personas命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | personas |
| description | Goal-Directed Design - personas, polite software, eliminate excise |
Apply Cooper's Goal-Directed Design principles from "About Face" to create software that helps users achieve their goals without unnecessary friction.
Users don't want to use software - they want to accomplish goals. Design for the goal, not the task.
Test: For every feature, ask "What goal does this help the user achieve?" If you can't answer clearly, reconsider the feature.
Most users are neither beginners nor experts - they're perpetual intermediates who:
Rule: Design for intermediates first. Beginners will learn. Experts will adapt.
Software should behave like a considerate human assistant:
Excise = work users must do that doesn't directly advance their goal.
| Type | Example | Fix |
|---|---|---|
| Navigation excise | Clicking through 5 screens to do one thing | Flatten hierarchy, direct access |
| Input excise | Re-entering data the system already knows | Auto-fill, remember choices |
| Confirmation excise | "Are you sure?" for reversible actions | Just do it, provide undo |
| Output excise | Forcing users to interpret raw data | Present meaningful information |
PREFER MODELESS:
- Let users work without interruption
- Don't trap users in dialogs
- Allow parallel activities
WHEN MODAL IS NECESSARY:
- Make it obviously modal (centered, backdrop, clear boundaries)
- Provide clear escape (X button, Escape key, backdrop click)
- Keep it focused on ONE decision
- Don't stack modals on modals
/* Modals must be unmistakably modal */
dialog {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* Centered = important */
z-index: 1000; /* Above everything */
}
dialog::backdrop {
background: rgba(0, 0, 0, 0.5); /* Dim background = focus here */
}
Dialog Content Rules:
BAD: "Are you sure you want to delete?" [Yes] [No]
GOOD: *deletes immediately* [Undo] (visible for 5 seconds)
WHY:
- Confirmation dialogs train users to click "Yes" without reading
- Undo respects user intent while allowing recovery
- Faster workflow, fewer interruptions
Every input should have a sensible default:
- Date picker: today's date
- Country: detected from browser
- Format: most common choice
- Quantity: 1
NEVER:
- Blank required fields when you could guess
- "Select one..." as default in dropdowns
- Default to destructive option
Level 1: Essential controls (always visible)
Level 2: Common options (one click away)
Level 3: Advanced options (settings/preferences)
Level 4: Power user features (keyboard shortcuts, CLI)
RULE: 80% of users use 20% of features.
Make that 20% immediately accessible.
Before designing, define who you're designing for:
Primary Persona:
name: "Regular User"
goal: Complete task quickly
behavior: Uses app weekly, knows basics
frustration: Unnecessary steps, confusion
Secondary Persona:
name: "Power User"
goal: Maximum efficiency
behavior: Daily use, keyboard shortcuts
frustration: Missing features, forced mouse use
Negative Persona (don't design for):
name: "Edge Case"
behavior: Unusual workflow nobody else needs
decision: Document limitation, don't add complexity
Before shipping any interaction:
| Bad | Why | Fix |
|---|---|---|
| "Are you sure?" everywhere | Trains users to ignore, adds excise | Undo instead |
| Wizard interfaces | Forces linear path, slow | Direct manipulation |
| Modal on modal | Confusing, trapped feeling | Redesign flow |
| "OK" / "Cancel" buttons | Unclear what "OK" does | Use verbs: "Save", "Delete" |
| Blank form fields | User must guess format | Smart defaults, examples |
| "Advanced" section with common features | Hides what users need | Reorganize by frequency |
| Error messages that blame user | Rude, unhelpful | Explain how to fix |
| Score | Meaning |
|---|---|
| 10 | Invisible interface - user achieves goal without noticing UI |
| 7-9 | Smooth flow, minimal excise, polite behavior |
| 4-6 | Functional but user fights the interface |
| 0-3 | Software-centered, not goal-centered |
Combine with:
/usability - Psychology of why Cooper's patterns work/design - Visual simplicity that supports goal-directed design/mobile - Form design that eliminates input excise