feat(reference-curator): Add Claude.ai Projects export format

Add claude-project/ folder with skill files formatted for upload to
Claude.ai Projects (web interface):

- reference-curator-complete.md: All 6 skills consolidated
- INDEX.md: Overview and workflow documentation
- Individual skill files (01-06) without YAML frontmatter

Add --claude-ai option to install.sh:
- Lists available files for upload
- Optionally copies to custom destination directory
- Provides upload instructions for Claude.ai

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-29 00:33:06 +07:00
parent 8762f68e6e
commit 243b9d851c
10 changed files with 1987 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ cd our-claude-skills/custom-skills/90-reference-curator
| **Full** | `./install.sh` | Interactive setup with MySQL and crawlers |
| **Minimal** | `./install.sh --minimal` | Firecrawl MCP only, no database |
| **Check** | `./install.sh --check` | Verify installation status |
| **Claude.ai** | `./install.sh --claude-ai` | Export skills for Claude.ai Projects |
| **Uninstall** | `./install.sh --uninstall` | Remove installation (preserves data) |
### What Gets Installed
@@ -94,6 +95,38 @@ export CRAWLER_PROJECT_PATH="" # Path to local crawlers (optional)
---
## Claude.ai Projects Installation
To use these skills in Claude.ai (web interface), export the skill files for upload:
```bash
./install.sh --claude-ai
```
This displays available files in `claude-project/` and optionally copies them to a convenient location.
### Files for Upload
| File | Description |
|------|-------------|
| `reference-curator-complete.md` | All 6 skills combined (recommended) |
| `INDEX.md` | Overview and workflow documentation |
| `01-reference-discovery.md` | Source discovery skill |
| `02-web-crawler.md` | Crawling orchestration skill |
| `03-content-repository.md` | Database storage skill |
| `04-content-distiller.md` | Content summarization skill |
| `05-quality-reviewer.md` | QA review skill |
| `06-markdown-exporter.md` | Export skill |
### Upload Instructions
1. Go to [claude.ai](https://claude.ai)
2. Create a new Project or open existing one
3. Click "Add to project knowledge"
4. Upload `reference-curator-complete.md` (or individual skills as needed)
---
## Architecture
```
@@ -386,6 +419,16 @@ mysql -h $MYSQL_HOST -u $MYSQL_USER -p"$MYSQL_PASSWORD" reference_library < shar
├── CHANGELOG.md # Version history
├── install.sh # Portable installation script
├── claude-project/ # Files for Claude.ai Projects
│ ├── INDEX.md # Overview
│ ├── reference-curator-complete.md # All skills combined
│ ├── 01-reference-discovery.md
│ ├── 02-web-crawler.md
│ ├── 03-content-repository.md
│ ├── 04-content-distiller.md
│ ├── 05-quality-reviewer.md
│ └── 06-markdown-exporter.md
├── commands/ # Claude Code commands (tracked in git)
│ ├── reference-discovery.md
│ ├── web-crawler.md