원클릭으로
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: