Files
our-claude-skills/CLAUDE.md
Andrew Yim 7c5efea817 Restructure skill numbering: SEO 11-30, GTM 60-69, reserve 19-28 for future skills
Renumber 12 existing skills to new ranges:
- SEO: 11→13, 12→18, 13→16, 14→17, 15→14, 16→15, 17→29, 18→30, 19→12
- GTM: 20→60, 21→61, 22→62

Update cross-references in gateway architect/builder skills, GTM guardian
README, CLAUDE.md (skill tables + directory layout), and AGENTS.md
(domain routing ranges).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 02:37:39 +09:00

11 KiB

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Repository Overview

GitHub: https://github.com/ourdigital/our-claude-skills

This is a Claude Skills collection repository containing:

  • custom-skills/: 38 custom skills for OurDigital workflows, SEO, GTM, Jamie Brand, NotebookLM, Notion, Reference Curation, and Multi-Agent Collaboration
  • example-skills/: Reference examples from Anthropic's official skills repository
  • official-skills/: Notion integration skills (3rd party)
  • reference/: Skill format requirements documentation

Custom Skills Summary

Settings & Meta Tools (00)

# Skill Purpose Trigger
00 our-settings-audit Claude settings optimization & token audit "settings audit", "exceed response limit", "MCP error"

OurDigital Core (01-10)

# Skill Purpose Trigger
01 ourdigital-brand-guide Brand standards & writing style reference "brand guide", "writing style"
02 ourdigital-blog Korean blog creation (blog.ourdigital.org) "write blog post", "블로그 작성"
03 ourdigital-journal English essay/article (journal.ourdigital.org) "write essay", "journal article"
04 ourdigital-research Research → Blog workflow "research this", "blog post"
05 ourdigital-document Notion → Presentation workflow "create document", "Notion export"
06 ourdigital-designer Visual storytelling, image prompts "create image prompt", "visual design"
07 ourdigital-ad-manager Ad copywriting & keyword research "ad copy", "keyword research"
08 ourdigital-trainer Training material creation "create training", "교육 자료"
09 ourdigital-backoffice Business document creation "create proposal", "견적서"
10 ourdigital-skill-creator Meta skill for creating skills "create skill", "init skill"

SEO Tools (11-30)

# Skill Purpose Trigger
11 seo-comprehensive-audit Unified 6-stage SEO audit orchestrator "comprehensive SEO", "full SEO audit"
12 seo-technical-audit Robots.txt, sitemap, crawlability "technical SEO", "crawlability"
13 seo-on-page-audit Meta tags, headings, links "on-page SEO", "meta tags"
14 seo-core-web-vitals LCP, CLS, FID, INP metrics "Core Web Vitals", "page speed"
15 seo-search-console GSC data analysis "Search Console", "rankings"
16 seo-schema-validator Structured data validation "validate schema", "JSON-LD"
17 seo-schema-generator Schema markup creation "generate schema", "create JSON-LD"
18 seo-local-audit NAP, GBP, citations "local SEO", "Google Business Profile"
29 seo-gateway-architect Gateway page strategy "SEO strategy", "gateway pages"
30 seo-gateway-builder Gateway page content "build gateway page"

Future SEO Skills (19-28 reserved):

# Planned Skill Status
19 Keyword Strategy & Research Planned
20 SERP Analysis Planned
21 Position Tracking Planned
22 Link Building Diagnosis Planned
23 Content Strategy Planned
24 E-Commerce SEO Planned
25 SEO KPI & Performance Framework Planned
26 International SEO Planned
27-28 (reserved)

GTM/GA Tools (60-69)

# Skill Purpose Trigger
60 gtm-audit GTM container audit "audit GTM", "GTM analysis"
61 gtm-manager GTM management + dataLayer "GTM manager", "dataLayer"
62 gtm-guardian Live tag monitoring & validation "monitor GTM", "tag validation"

Notion Tools (31-39)

# Skill Purpose Trigger
31 notion-organizer Notion workspace management "organize Notion", "workspace cleanup"
32 notion-writer Content writing to Notion "write to Notion", "export to Notion"

Jamie Clinic (40-49)

# Skill Purpose Trigger
40 jamie-brand-editor Branded content generation "write Jamie blog", "Jamie content"
41 jamie-brand-audit Content review/compliance "review content", "brand audit"
42 jamie-journal-editor Clinic journal editing "Jamie journal", "진료 일지"
43 jamie-youtube-manager YouTube SEO audit & management "YouTube SEO", "YT optimization"
44 jamie-youtube-subtitle-checker YouTube subtitle validation "check subtitles", "subtitle QA"
45 jamie-instagram-manager Instagram account management "Instagram management", "IG strategy"

NotebookLM Tools (50-59)

# Skill Purpose Trigger
50 notebooklm-agent Q&A from notebooks with citations "ask NotebookLM", "query notebook", "노트북 질문"
51 notebooklm-automation Notebook/source/artifact management "create notebook", "add sources", "노트북 관리"
52 notebooklm-studio Content generation (podcasts, videos, quizzes) "create podcast", "generate video", "make quiz", "팟캐스트 만들기"
53 notebooklm-research Web/Drive research and source discovery "research topic", "find sources", "리서치"

Prerequisites: pip install notebooklm-py && playwright install chromium && notebooklm login

Reference Curator & Multi-Agent (90-99)

# Skill Purpose Trigger
90 reference-curator Modular skill suite for reference documentation See sub-skills below
91 multi-agent-guide Multi-agent collaboration setup "set up multi-agent", "agent guardrails"

Pipeline Orchestrator (Recommended):

Command Purpose
/reference-curator-pipeline Full pipeline orchestration with QA loop handling
# Full pipeline from topic
/reference-curator-pipeline "Claude Code best practices" --max-sources 5

# From URLs (skip discovery)
/reference-curator-pipeline https://docs.anthropic.com/en/docs/prompt-caching

# With auto-approve and fine-tuning output
/reference-curator-pipeline "MCP servers" --auto-approve --export-format fine_tuning

Individual Sub-skills:

Skill Command Purpose
reference-discovery /reference-discovery Search & validate authoritative sources
web-crawler-orchestrator /web-crawler Multi-backend crawling (Firecrawl/Node/aiohttp/Scrapy)
content-repository /content-repository MySQL storage with version tracking
content-distiller /content-distiller Summarization & key concept extraction
quality-reviewer /quality-reviewer QA loop with approve/refactor/research routing
markdown-exporter /markdown-exporter Export to markdown or JSONL for fine-tuning

Dual-Platform Skill Structure

Each skill has two independent versions:

XX-skill-name/
├── code/                    # Claude Code version
│   ├── CLAUDE.md            # Action-oriented directive
│   ├── scripts/             # Executable Python/Bash
│   └── docs/                # Documentation
│
├── desktop/                 # Claude Desktop version
│   ├── SKILL.md             # Skill directive with YAML frontmatter
│   ├── skill.yaml           # Extended metadata (optional)
│   └── tools/               # MCP tool documentation
│
├── shared/                  # Shared resources (optional)
└── README.md                # Overview

Platform Differences

Aspect code/ desktop/
Directive CLAUDE.md SKILL.md (with YAML frontmatter)
Metadata In CLAUDE.md skill.yaml (optional)
Tool docs N/A tools/ directory
Execution Direct Bash/Python MCP tools only
Scripts Required Reference only

SKILL.md Format (Desktop)

---
name: skill-name-kebab-case
description: |
  Brief description of what the skill does.
  Triggers: keyword1, keyword2, 한국어 트리거.
---

# Skill Title

Content starts here...

Directory Layout

our-claude-skills/
├── custom-skills/
│   ├── _ourdigital-shared/         # Shared config, installer, dependencies
│   │
│   ├── 00-our-settings-audit/
│   │
│   ├── 01-ourdigital-brand-guide/
│   ├── 02-ourdigital-blog/
│   ├── 03-ourdigital-journal/
│   ├── 04-ourdigital-research/
│   ├── 05-ourdigital-document/
│   ├── 06-ourdigital-designer/
│   ├── 07-ourdigital-ad-manager/
│   ├── 08-ourdigital-trainer/
│   ├── 09-ourdigital-backoffice/
│   ├── 10-ourdigital-skill-creator/
│   │
│   ├── 11-seo-comprehensive-audit/
│   ├── 12-seo-technical-audit/
│   ├── 13-seo-on-page-audit/
│   ├── 14-seo-core-web-vitals/
│   ├── 15-seo-search-console/
│   ├── 16-seo-schema-validator/
│   ├── 17-seo-schema-generator/
│   ├── 18-seo-local-audit/
│   ├── 19-28 (reserved for future SEO skills)
│   ├── 29-seo-gateway-architect/
│   ├── 30-seo-gateway-builder/
│   │
│   ├── 60-gtm-audit/
│   ├── 61-gtm-manager/
│   ├── 62-gtm-guardian/
│   │
│   ├── 31-notion-organizer/
│   ├── 32-notion-writer/
│   │
│   ├── 40-jamie-brand-editor/
│   ├── 41-jamie-brand-audit/
│   ├── 42-jamie-journal-editor/
│   ├── 43-jamie-youtube-manager/
│   ├── 44-jamie-youtube-subtitle-checker/
│   ├── 45-jamie-instagram-manager/
│   │
│   ├── 50-notebooklm-agent/
│   ├── 51-notebooklm-automation/
│   ├── 52-notebooklm-studio/
│   ├── 53-notebooklm-research/
│   │
│   ├── 90-reference-curator/       # Modular reference documentation suite
│   │   ├── 01-reference-discovery/
│   │   ├── 02-web-crawler-orchestrator/
│   │   ├── 03-content-repository/
│   │   ├── 04-content-distiller/
│   │   ├── 05-quality-reviewer/
│   │   ├── 06-markdown-exporter/
│   │   ├── 07-pipeline-orchestrator/
│   │   ├── commands/
│   │   ├── shared/
│   │   └── install.sh
│   │
│   ├── 91-multi-agent-guide/
│   │
│   └── 99_archive/
│
├── example-skills/skills-main/
├── official-skills/
└── reference/

Skill Design Principles

  1. One thing done well - Each skill focuses on a single capability
  2. Directives under 1,500 words - Concise, actionable
  3. Self-contained - Each platform version is fully independent
  4. Code-first development - Build Claude Code version first
  5. Progressive numbering - Logical grouping by domain

Creating New Skills

# Use the skill creator
python example-skills/skills-main/skill-creator/scripts/init_skill.py <skill-name> --path custom-skills/

Key Reference Files

  • reference/SKILL-FORMAT-REQUIREMENTS.md - Format specification
  • example-skills/skills-main/skill-creator/SKILL.md - Skill creation guide
  • AGENTS.md - Agent routing guide for Task tool