Agent skill

workshop-create

Create a new workshop or use an existing directory as one. Handles two paths: (A) use an existing local directory the operator points at, or (B) create a new private GitHub repo in the signed-in account. Never creates a repo inside another repo.

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotMIT
Install
npx skills add github/awesome-copilot --skill workshop-create --agent copilot

Same command for any agent — swap --agent for claude-code, codex, cursor.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/workshop-create/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Create a Workshop Set up a new workshop — the root directory where desks live. ## When to use - The operator says "create a workshop" or "start a new workshop" - The operator wants to organize work under a shared root - The operator has an existing directory they want to use as a workshop ## Two paths ### Path A: Use an existing directory The operator already has a folder they want to use. Maybe it's a repo they cloned, maybe it's a local project folder. 1. **Confirm the path exists.** If not, ask the operator for a valid path. 2. **Detect existing workshop markers.** Look for `desks/` or `classroom/` folders, a `workshop.md`, `CAIRN.md`, or `hands-up.md`. Finding any of these tells you this is an existing workshop — but this is detection only, not a stopping point. Continue to the next step and add whatever is missing; never overwrite what is already there. 3. **Scaffold the workshop structure** (only what's missing): ``` <path>/ desks/ # where desks live bench/ # shared workspace CAIRN.md # operating disposition README.md # workshop map ``` 4. **Do NOT run `git init`.** The directory may already be a git repo, or the operator may not want one yet. Leave git state alone. 5. **Do

What's inside
Steps it walks through
  1. When to use
  2. Two paths
  3. Path A: Use an existing directory
  4. Path B: Create a new private GitHub repo
  5. Critical: Never nest repos
  6. CAIRN.md content
  7. After creation
  8. Principles
Commands it runs
git -C <parent-dir> rev-parse --is-inside-work-tree
cd <parent-dir>
gh repo create <owner>/<name> --private --clone
More from awesome-copilot
All skills →
About this skill
What does the workshop-create skill do?

Create a new workshop or use an existing directory as one. Handles two paths: (A) use an existing local directory the operator points at, or (B) create a new private GitHub repo in the signed-in account. Never creates a repo inside another repo.

How do I install it?

Run `npx skills add github/awesome-copilot --skill workshop-create --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going