Initial commit: Claude Skills Factory with 8 refined custom skills

Custom Skills (ourdigital-custom-skills/):
- 00-ourdigital-visual-storytelling: Blog featured image prompt generator
- 01-ourdigital-research-publisher: Research-to-publication workflow
- 02-notion-organizer: Notion workspace management
- 03-research-to-presentation: Notion research to PPT/Figma
- 04-seo-gateway-strategist: SEO gateway page strategy planning
- 05-gateway-page-content-builder: Gateway page content generation
- 20-jamie-brand-editor: Jamie Clinic branded content GENERATION
- 21-jamie-brand-guardian: Jamie Clinic content REVIEW & evaluation

Refinements applied:
- All skills converted to SKILL.md format with YAML frontmatter
- Added version fields to all skills
- Flattened nested folder structures
- Removed packaging artifacts (.zip, .skill files)
- Reorganized file structures (scripts/, references/, etc.)
- Differentiated Jamie skills with clear roles

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-10 17:56:04 +09:00
commit 341d5f5a5b
498 changed files with 102813 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
# Agent Skills Spec
A skill is a folder of instructions, scripts, and resources that agents can discover and load dynamically to perform better at specific tasks. In order for the folder to be recognized as a skill, it must contain a `SKILL.md` file.
# Skill Folder Layout
A minimal skill folder looks like this:
```
my-skill/
- SKILL.md
```
More complex skills can add additional directories and files as needed.
# The SKILL.md file
The skill's "entrypoint" is the `SKILL.md` file. It is the only file required to exist. The file must start with a YAML frontmatter followed by regular Markdown.
## YAML Frontmatter
The YAML frontmatter has 2 required properties:
- `name`
- The name of the skill in hyphen-case
- Restricted to lowercase Unicode alphanumeric + hyphen
- Must match the name of the directory containing the SKILL.md
- `description`
- Description of what the skill does and when Claude should use it
There are 3 optional properties:
- `license`
- The license applied to the skill
- We recommend keeping it short (either the name of a license or the name of a bundled license file)
- `allowed-tools`
- A list of tools that are pre-approved to run
- Currently only supported in Claude Code
- `metadata`
- A map from string keys to string values
- Clients can use this to store additional properties not defined by the Agent Skills Spec
- We recommend making your key names reasonably unique to avoid accidental conflicts
## Markdown Body
The Markdown body has no restrictions on it.
# Additional Information
For a minimal example, see the `template-skill` example.
# Version History
- 1.0 (2025-10-16) Public Launch