用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxelMrak/ai --skill teaching-detection命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | teaching-detection |
| description | Detect when user is teaching best practices and persist as skills |
Skills are codified best practices. Detect when user teaches, confirm, and persist.
The user is TEACHING when they say:
| Signal | Example | Action |
|---|---|---|
| Explicit rule | "siempre usá X", "regla:", "nunca hagas Y" | Confirm & create |
| Correction | "no, hacelo así..." + shows pattern | Ask if should persist |
| Preference | "prefiero X sobre Y porque..." | Note for skill |
| Repeated pattern | Same correction 3+ times | Propose skill creation |
| Best practice | "buena práctica:", "el estándar es..." | Confirm & create |
| Style guide | "en este proyecto usamos..." | Add to project skill |
skills/{skill-name}/rules/_custom-{name}.mdbun run skills/_scripts/generate-index.ts---
title: Rule Title
impact: HIGH | MEDIUM | LOW
tags: tag1, tag2
source: user-taught
date: YYYY-MM-DD
---
## Rule Title
[Why this matters]
**Do:**
```code```
**Don't:**
```code```
skills/
[skill-name]/
SKILL.md # Main skill file
AGENTS.md # Optional agent-specific instructions
rules/ # Individual rule files
[rule-name].md
_custom-*.md # Custom rules (preserved during sync)
rules/ folderrules/ subdirectory_custom-general/ folder for cross-language practices_custom- prefix to avoid sync conflicts# Regenerate index after adding/removing skills
bun run skills/_scripts/generate-index.ts
# Update external sources
bun run skills/_scripts/sync-external.ts
# Rebuild individual skill SKILL.md from rules/
bun run skills/_scripts/build.ts