chore(marketplace): add ourdigital-skills local marketplace + fix README install docs
Some checks failed
Verify Skills / verify-skills (push) Has been cancelled
Verify Skills / verify-skills (pull_request) Has been cancelled

Add .claude-plugin/marketplace.json defining the ourdigital-skills local directory marketplace: 8 themed skill plugins (core/seo/notion/jamie/notebooklm/gtm/dintel/utils) bundling 66 skills, each path resolving to a root SKILL.md. Passes 'claude plugin validate'.

Fix README install instructions: clarify Quick Install scope (commands + venv + creds, not skills); correct the Claude Code skill symlink target to the skill root (was desktop/, which would not load); fix the Claude Desktop import step.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-09 00:25:21 +09:00
parent 8ffb6bec6b
commit 373907baa0
2 changed files with 160 additions and 4 deletions

View File

@@ -12,6 +12,11 @@ cd our-claude-skills/custom-skills/_ourdigital-shared
./install.sh
```
This symlinks the global slash commands into `~/.claude/commands/`, sets up the
Python virtual environment, and configures credentials. It does **not** register
skills natively — to load a skill as a Claude Code skill, also symlink it into
`~/.claude/skills/` (see [Usage → Claude Code](#claude-code)).
## Custom Skills Overview
### OurDigital Core (01-10)
@@ -215,16 +220,23 @@ The `_ourdigital-shared/` directory provides:
### Claude Code
Skills are auto-detected via symlinks in `~/.claude/skills/`:
The Quick Install symlinks the **slash commands** into `~/.claude/commands/`. To
also load a skill natively, symlink its **root** directory (which holds the
loadable `SKILL.md`) into `~/.claude/skills/`, using the clean name without the
`NN-` prefix:
```bash
# Install skill symlink
ln -sf /path/to/skill/desktop ~/.claude/skills/skill-name
# From the repo root — symlink a skill into Claude Code
ln -sf "$PWD/custom-skills/16-seo-schema-validator" ~/.claude/skills/seo-schema-validator
```
> Legacy skills that don't yet have a root `SKILL.md` expose it under
> `code/SKILL.md` instead — symlink `.../<skill>/code` for those.
### Claude Desktop
Copy the `desktop/SKILL.md` file to your Claude Desktop skills folder.
Import the skill's `desktop/` folder (containing `SKILL.md` + `skill.yaml`) via
your Claude Desktop skills settings.
## Development