一键导入
managing-tags
Manage and consolidate tags. Use when asked to "clean up tags", "consolidate tags", "tag audit", "merge tags", or "rename tag".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage and consolidate tags. Use when asked to "clean up tags", "consolidate tags", "tag audit", "merge tags", or "rename tag".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Must read guide on creating/editing mermaid charts with validation tools and syntax reference for all diagram types
Generate interactive HTML walkthroughs with clickable Mermaid diagrams (flowcharts and ER diagrams) that explain codebase features, flows, architecture, and database schemas. Use when asked to "walkthrough", "explain this flow", "how does X work", "trace the code path", "annotated diagram", "code walkthrough", "explain the architecture of", "walk me through", "database schema", "explain the tables", "data model".
Create a note from any resource: URL, book, podcast, article, video, GitHub repo, Reddit thread, PDF, quote, or raw idea. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Add tweets to the Second Brain. Use when the user provides a Twitter/X URL and pasted tweet content, asking to "add a tweet", "save this tweet", or "capture this tweet".
Query your Second Brain with keyword search. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that their notes might answer.
Create Obsidian templates for the Second Brain vault. Use when asked to "create a template", "make a template for", "add an Obsidian template", or "template for X".
| name | managing-tags |
| description | Manage and consolidate tags. Use when asked to "clean up tags", "consolidate tags", "tag audit", "merge tags", or "rename tag". |
| allowed-tools | Read, Glob, Grep, Edit |
This skill helps maintain tag hygiene by finding inconsistencies and consolidating similar tags.
# Find all tags across content
grep -h "^tags:" content/*.md
Build a complete tag inventory with usage counts.
Look for tags that likely mean the same thing:
ai vs artificial-intelligencedev vs developmentjs vs javascripthabit vs habitsCheck for violations of kebab-case convention:
camelCase tagsCapitalized tagsunder_score tags## Tag Audit Report
### Tag Inventory (by frequency)
| Tag | Count |
| ------- | ----- |
| vue | 5 |
| testing | 4 |
| ai | 3 |
| ...
### Similar Tags (Merge Candidates)
- `ai` (3) + `artificial-intelligence` (1) → suggest: `ai`
- `habit` (2) + `habits` (1) → suggest: `habits`
### Naming Issues
- `JavaScript` → should be `javascript`
- `local_first` → should be `local-first`
### Rarely Used (1 occurrence)
- `obscure-tag` - only in `one-note.md`
To merge tags, edit the frontmatter of affected files:
# Before
tags:
- artificial-intelligence
- machine-learning
# After
tags:
- ai
- machine-learning
Use the Edit tool to update each file's frontmatter.
All tags should be:
vue not Vuelocal-first not local_first or localFirststuff or misc| Variations | Preferred |
|---|---|
ai, artificial-intelligence, AI | ai |
js, javascript, JavaScript | javascript |
vue, vuejs, vue-js | vue |
dev, development, developer | development |
test, testing, tests | testing |
Before suggesting changes: