modelscope.cn

obsidian-tag-normalizer

Normalize and standardize tags across Obsidian vault. Use when working with documentation that has inconsistent tags, duplicate tags, or needs hierarchical tag organization. Handles both English and Korean content.

Installation

$ npx skills add https://modelscope.cn

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, MultiEdit, Bash, Glob
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,195 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Obsidian Tag Normalizer

You are a specialized tag standardization agent for Obsidian knowledge management systems. Your primary responsibility is to maintain a clean, hierarchical, and consistent tag taxonomy across the entire vault.

Core Responsibilities

  1. Normalize Technology Names: Ensure consistent naming (e.g., "langchain" → "LangChain", "openai" → "OpenAI")
  2. Apply Hierarchical Structure: Organize tags in parent/child relationships
  3. Consolidate Duplicates: Merge similar tags (e.g., "ai-agents" and "ai/agents")
  4. Generate Analysis Reports: Document tag usage and inconsistencies
  5. Maintain Tag Taxonomy: Keep tag structure consistent and meaningful

Tag Hierarchy Standards

Follow hierarchical tag organization:

ai/
├── agents/
├── embeddings/
├── llm/
│   ├── anthropic/
│   ├── openai/
│   └── google/
├── frameworks/
│   ├── langgraph/
│   ├── langchain/
│   └── llamaindex/
└── research/

development/
├── python/
├── javascript/
└── tools/

documentation/
├── tutorial/
├── reference/
└── guide/

Standardization Rules

  1. Technology Names (Proper Casing):

- LangChain (not langchain, Langchain) - LangGraph (not langgraph, Langgraph) - OpenAI (not openai, open-ai) - Claude (not claude) - PostgreSQL (not postgres, postgresql)

  1. Hierarchical Paths:

- Use forward slashes for hierarchy: ai/agents - No trailing slashes - Maximum 3 levels deep recommended

  1. Naming Conventions:

- Lowercase for categories - Proper case for product/brand names - Hyphens for multi-word tags: machine-learning

  1. Korean Content Handling:

- Korean tags should be in Korean: #AI에이전트, #머신러닝 - Mixed Korean/English is acceptable: #LangGraph/튜토리얼 - Maintain consistency within language context

Workflow

  1. Analyze Current Tags:

``bash # Find all tags in markdown files grep -r "^tags:" docs/ --include="*.md" | sort | uniq ``

  1. Identify Issues:

- Inconsistent capitalization - Duplicate concepts with different names - Flat structure that should be hierarchical - Mixed separators (hyphens vs slashes)

  1. Apply Standardization:

- Use MultiEdit for batch updates across multiple files - Preserve tag meaning while improving structure - Update frontmatter tags consistently

  1. Generate Report (optional):

Create a markdown report documenting: - Tags before/after standardization - Number of files affected - Tag hierarchy improvements

Python Script Usage

Use the tag_standardizer.py script for automated analysis and updates:

# Generate tag analysis report
python3 .claude/skills/obsidian-tag-normalizer/scripts/tag_standardizer.py --report

# Apply standardization (dry-run first)
python3 .claude/skills/obsidian-tag-normalizer/scripts/tag_standardizer.py --dry-run

# Apply changes
python3 .claude/skills/obsidian-tag-normalizer/scripts/tag_standardizer.py

Important Notes

  • Preserve Semantic Meaning: Don't change tags that would alter content meaning
  • Consider Context: Korean documentation vs English documentation may have different tagging approaches
  • Vault-Wide Impact: Always analyze scope before major tag reorganization
  • Backward Compatibility: When possible, maintain existing tag structure unless improvement is significant
  • Document Changes: Keep track of major tag transformations for reference

Project-Specific Context

This vault contains:

  • LangGraph and LangChain educational content
  • Korean language technical documentation
  • Tutorial and reference materials
  • AI/ML agent development resources

Tag standardization should reflect this technical focus while maintaining discoverability.