# Give to Claude: Create and attach skills

You are Claude Code running on the machine with Multica CLI access.

Your job is to create the core Multica skills from the YDY starter files and attach them to the right agents.

## Safety

- Do not expose tokens, secrets, auth headers, or environment values.
- Do not publish, deploy, spend money, or modify production systems.
- Do not create the optional SEO workflow recipe as a core skill unless the human asks.
- If a command fails, inspect `multica <command> --help` and adapt.

## Step 1 — Fetch core skill files

```bash
mkdir -p /tmp/multica-mvp/skills
for file in chief-of-staff-final-review evidence-labels html-styled-report-preview html-blog-approval-preview; do
  curl -fsSL "https://ydy.au/templates/skills/$file.md" -o "/tmp/multica-mvp/skills/$file.md"
done

# Optional reference recipe. Fetch for reference only; do not attach by default.
curl -fsSL "https://ydy.au/templates/skills/route-seo-audit-to-blogs.md" -o "/tmp/multica-mvp/skills/route-seo-audit-to-blogs.md"
```

Verify files:

```bash
wc -l /tmp/multica-mvp/skills/*.md
```

## Step 2 — Create core skills in Multica

Create skills using these files:

- Chief of Staff Final Review — `chief-of-staff-final-review.md`
- Evidence Labels — `evidence-labels.md`
- HTML Styled Report Preview — `html-styled-report-preview.md`
- HTML Blog Approval Preview — `html-blog-approval-preview.md`

Save the returned skill IDs locally. Do not invent IDs.

Example local file shape:

```bash
cat > /tmp/multica-mvp/skill-ids.env <<'EOF'
FINAL_REVIEW_SKILL_ID="<id>"
EVIDENCE_SKILL_ID="<id>"
HTML_REPORT_SKILL_ID="<id>"
HTML_BLOG_PREVIEW_SKILL_ID="<id>"
EOF
```

## Step 3 — Attach skills

Attach:

- Chief of Staff: Chief of Staff Final Review, Evidence Labels, HTML Styled Report Preview, HTML Blog Approval Preview
- Researcher: Evidence Labels, HTML Styled Report Preview
- SEO Consultant: Evidence Labels, HTML Styled Report Preview, HTML Blog Approval Preview
- Blog Writer: Evidence Labels, HTML Styled Report Preview, HTML Blog Approval Preview

Do not attach the SEO Audit to Site Growth Work recipe by default. That file is a reference workflow, not required routing plumbing.

## Done when

- Four core skills exist.
- Skills are attached to the right agents.
- The optional recipe is downloaded only as a reference.
- You can report agent → attached skill mappings back to the human.
