From 8762f68e6ea54eb0a38f4e20f98daf29119229cb Mon Sep 17 00:00:00 2001 From: Andrew Yim Date: Thu, 29 Jan 2026 00:22:06 +0700 Subject: [PATCH] docs: Add reference-curator skill suite to project documentation Update CLAUDE.md and README.md to include the new 90-reference-curator skill suite (6 sub-skills for reference documentation curation). - Update skill count from 23 to 29 - Add Reference Curator section with sub-skills table - Update directory layout to show 90-reference-curator structure Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 30 +++++++++++++++++++++++++++++- README.md | 17 ++++++++++++++--- 2 files changed, 43 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 95ee450..32dd27c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -7,7 +7,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co **GitHub**: https://github.com/ourdigital/our-claude-skills This is a Claude Skills collection repository containing: -- **custom-skills/**: 23 custom skills for OurDigital workflows, SEO, GTM, and Jamie Brand +- **custom-skills/**: 29 custom skills for OurDigital workflows, SEO, GTM, Jamie Brand, and Reference Curation - **example-skills/**: Reference examples from Anthropic's official skills repository - **official-skills/**: Notion integration skills (3rd party) - **reference/**: Skill format requirements documentation @@ -67,6 +67,23 @@ This is a Claude Skills collection repository containing: | 43 | jamie-youtube-manager | YouTube SEO audit & management | "YouTube SEO", "YT optimization" | | 44 | jamie-youtube-subtitle-checker | YouTube subtitle validation | "check subtitles", "subtitle QA" | +### Reference Curator (90-99) + +| # | Skill | Purpose | Trigger | +|---|-------|---------|---------| +| 90 | reference-curator | Modular skill suite for reference documentation | See sub-skills below | + +**Sub-skills (installed via `./install.sh`):** + +| 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: @@ -141,6 +158,17 @@ our-claude-skills/ │ ├── 43-jamie-youtube-manager/ │ ├── 44-jamie-youtube-subtitle-checker/ │ │ +│ ├── 90-reference-curator/ # Modular reference documentation suite +│ │ ├── commands/ # Claude Code slash commands +│ │ ├── 01-reference-discovery/ +│ │ ├── 02-web-crawler-orchestrator/ +│ │ ├── 03-content-repository/ +│ │ ├── 04-content-distiller/ +│ │ ├── 05-quality-reviewer/ +│ │ ├── 06-markdown-exporter/ +│ │ ├── shared/ # Config templates & MySQL schema +│ │ └── install.sh # Cross-machine installer +│ │ │ └── 99_archive/ │ ├── example-skills/skills-main/ diff --git a/README.md b/README.md index 0f27277..828391b 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ > **Internal R&D Repository** - This repository is restricted for internal use only. -A collection of 23 custom Claude Skills for OurDigital workflows, Jamie Plastic Surgery Clinic brand management, SEO/GTM tools, and Notion integrations. +A collection of 29 custom Claude Skills for OurDigital workflows, Jamie Plastic Surgery Clinic brand management, SEO/GTM tools, Notion integrations, and reference documentation curation. -## Custom Skills (23 skills) +## Custom Skills (29 skills) ### Claude Code Settings (00) @@ -59,6 +59,16 @@ A collection of 23 custom Claude Skills for OurDigital workflows, Jamie Plastic | 43 | `jamie-youtube-manager` | YouTube SEO audit & management | | 44 | `jamie-youtube-subtitle-checker` | YouTube subtitle validation | +### Reference Curator (90-99) + +| # | Skill | Purpose | +|---|-------|---------| +| 90 | `reference-curator` | Modular skill suite (6 sub-skills) | + +**Sub-skills:** `reference-discovery`, `web-crawler-orchestrator`, `content-repository`, `content-distiller`, `quality-reviewer`, `markdown-exporter` + +**Installation:** `cd custom-skills/90-reference-curator && ./install.sh` + ## Dual-Platform Architecture Each skill supports both Claude Code and Claude Desktop: @@ -82,7 +92,7 @@ XX-skill-name/ ``` our-claude-skills/ -├── custom-skills/ # 23 custom skills for production use +├── custom-skills/ # 29 custom skills for production use │ ├── 00-claude-code-setting/ │ ├── 01-ourdigital-research/ │ ├── 02-ourdigital-designer/ @@ -91,6 +101,7 @@ our-claude-skills/ │ ├── 20-22 (GTM/GA tools) │ ├── 31-32 (Notion tools) │ ├── 40-44 (Jamie clinic) +│ ├── 90-reference-curator/ # Reference documentation suite │ └── 99_archive/ ├── example-skills/ # Anthropic reference examples ├── official-skills/ # 3rd party Notion skills