一键导入
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 职业分类
Ingest a new source into the LLM Wiki. Save the full captured resource under src/content/notes/sources/ first, then create or update the maintained wiki summary/synthesis entry, index, and log. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Query the maintained wiki layer first, then fall back to sources when needed. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that the wiki might answer.
Summarize the past week's daily journal entries. Use when asked to "weekly review", "review the week", "summarize this week", or "week summary".
Curate wiki maps and clustering pages for the LLM Wiki. Use when asked to "curate MOCs", "update maps", "find clusters", "what MOCs need updating", or "organize my notes".
Audit the maintained wiki for quality and maintenance issues. Use when asked to "review notes", "check content quality", "audit my knowledge base", or "find broken links".
Generate a weekly newsletter summarizing resources added last week. Use when asked to "weekly newsletter", "newsletter", "what did I add this week", "generate newsletter", or "Monday newsletter".
| 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:" src/content/notes/notes/*.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: