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 <noreply@anthropic.com>
This commit is contained in:
2026-01-29 00:22:06 +07:00
parent 6d7a6d7a88
commit 8762f68e6e
2 changed files with 43 additions and 4 deletions

View File

@@ -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 **GitHub**: https://github.com/ourdigital/our-claude-skills
This is a Claude Skills collection repository containing: 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 - **example-skills/**: Reference examples from Anthropic's official skills repository
- **official-skills/**: Notion integration skills (3rd party) - **official-skills/**: Notion integration skills (3rd party)
- **reference/**: Skill format requirements documentation - **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" | | 43 | jamie-youtube-manager | YouTube SEO audit & management | "YouTube SEO", "YT optimization" |
| 44 | jamie-youtube-subtitle-checker | YouTube subtitle validation | "check subtitles", "subtitle QA" | | 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 ## Dual-Platform Skill Structure
Each skill has two independent versions: Each skill has two independent versions:
@@ -141,6 +158,17 @@ our-claude-skills/
│ ├── 43-jamie-youtube-manager/ │ ├── 43-jamie-youtube-manager/
│ ├── 44-jamie-youtube-subtitle-checker/ │ ├── 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/ │ └── 99_archive/
├── example-skills/skills-main/ ├── example-skills/skills-main/

View File

@@ -2,9 +2,9 @@
> **Internal R&D Repository** - This repository is restricted for internal use only. > **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) ### 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 | | 43 | `jamie-youtube-manager` | YouTube SEO audit & management |
| 44 | `jamie-youtube-subtitle-checker` | YouTube subtitle validation | | 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 ## Dual-Platform Architecture
Each skill supports both Claude Code and Claude Desktop: Each skill supports both Claude Code and Claude Desktop:
@@ -82,7 +92,7 @@ XX-skill-name/
``` ```
our-claude-skills/ our-claude-skills/
├── custom-skills/ # 23 custom skills for production use ├── custom-skills/ # 29 custom skills for production use
│ ├── 00-claude-code-setting/ │ ├── 00-claude-code-setting/
│ ├── 01-ourdigital-research/ │ ├── 01-ourdigital-research/
│ ├── 02-ourdigital-designer/ │ ├── 02-ourdigital-designer/
@@ -91,6 +101,7 @@ our-claude-skills/
│ ├── 20-22 (GTM/GA tools) │ ├── 20-22 (GTM/GA tools)
│ ├── 31-32 (Notion tools) │ ├── 31-32 (Notion tools)
│ ├── 40-44 (Jamie clinic) │ ├── 40-44 (Jamie clinic)
│ ├── 90-reference-curator/ # Reference documentation suite
│ └── 99_archive/ │ └── 99_archive/
├── example-skills/ # Anthropic reference examples ├── example-skills/ # Anthropic reference examples
├── official-skills/ # 3rd party Notion skills ├── official-skills/ # 3rd party Notion skills