用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/FlorianBruniaux/claude-code-ultimate-guide --skill learn-quiz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Comprehensive security audit with scored posture assessment
Quick configuration security check against known threats database
Delegate threat-intelligence research and updates to AgentSec, then validate the guide and landing mirrors.
基于 SOC 职业分类
正在显示 SKILL.md
| name | learn-quiz |
| description | Test understanding of recently written or accepted code |
| argument-hint | [topic] [--hard] |
| effort | low |
Test understanding of recently written or accepted code.
/learn:quiz # Quiz on last code worked with
/learn:quiz error handling # Focus on specific aspect
/learn:quiz --hard # More challenging questions
When focus is specified (e.g., /learn:quiz error handling), prioritize questions about:
| Focus | Question Themes |
|---|---|
error handling | Try/catch, error types, recovery strategies |
performance | Big-O, optimization, bottlenecks |
security | Input validation, XSS, injection |
testing | Test cases, edge cases, mocking |
architecture | Patterns, separation of concerns, SOLID |
types | TypeScript types, inference, generics |
--hardFor each question:
## Question 1 of 3
[Question text]
What's your answer?
---
(After user responds)
### Feedback
[Whether correct and why]
**Key insight**: [The concept this tests]
**Related concept**: [Something to explore further]
Ready for the next question?
Summarize:
User: /learn:quiz
Claude: Looking at your last code - the useEffect hook for data fetching.
## Question 1 of 3
In your useEffect, you have an empty dependency array [].
What does this mean for when the effect runs?
User: It runs only once when the component mounts
Claude: ### Feedback
Correct! An empty dependency array means the effect runs only on mount
(and cleanup on unmount).
**Key insight**: The dependency array controls WHEN effects re-run.
**Related concept**: What happens with no array vs. [someValue]?
Ready for Question 2?
$ARGUMENTS