Skills Scaffolder
Scaffold a new skills directory — folder structure, metadata, a baseline validation pass — with the right conventions from day one.
Before & after
Same prompt, same agent — the only difference is the skill.
Setting up a skills repo is pretty straightforward but there are a lot of little decisions to make. You'll want to define the structure, set up documentation templates, create guidelines for how skills are documented, decide on version control strategy, and maybe set up some automation. It depends on what kind of skills you're tracking and who needs access. Want me to walk you through a basic setup?
SKILLS REPOSITORY INITIALIZATION
REPO STRUCTURE
.
├── README.md (overview + quick start)
├── CONTRIBUTING.md (contribution workflow)
├── skills/
│ ├── web-frontend/
│ │ ├── SKILL.md (React, TypeScript, testing)
│ │ ├── resources/
│ │ │ ├── interview-questions.md
│ │ │ └── reading-list.md
│ │ └── examples/
│ │ ├── component-example.tsx
│ │ └── test-example.spec.ts
│ ├── backend/
│ ├── devops/
│ └── product/
├── templates/
│ └── SKILL-TEMPLATE.md
└── .github/
└── workflows/
└── validate-skills.yml
DOCUMENTATION TEMPLATE (per skill)
• Title and owner
• Proficiency levels (tier 1-3 rubric)
• Learning outcomes
• Recommended resources (books, courses, projects)
• Assessment questions
• Hands-on project examples
• Time to proficiency estimate
AUTOMATION
• GitHub Actions: validate SKILL.md format on PR
• Linter checks: required sections present
• Auto-generate index.md across all skills
ACCESS & PERMISSIONS
• Public repository (read-only for external)
• Team write access via GitHub organization
• Annual review cycle for content updates
INITIAL POPULATION
Staged skill uploads: 8 core skills in week 1, expanded quarterly
READY FOR: Distributed onboarding, skill assessments, hiring alignmentAbout this skill
name: skills-init description: Use when Structured Claude skill that gives Claude a repeatable workflow for skills init.
Skills Init
One of 337+ skills in the original author's multi-agent claude-skills mega-collection (~19k GitHub stars). Packages the Skills Init workflow with its own instructions and validation so outputs stay consistent.
What you get
- Public GitHub repo (alirezarezvani/claude-skills)
- the skills-init skill folder with SKILL.md. Part of a 337-skill / 30-agent / 70-command install.
Customize your output
- Fork the repo and adapt the skill's instructions and references to your workflow.
Example output
Activates automatically when your request matches Skills Init; chains with the other skills, agents, and commands in the collection.
Best for
Creators, builders, and teams using Claude Code.
SKILL.md preview
---
name: skills-init
description: Use to scaffold a new project's skills directory with the baseline structure and validation a skills-based agent workflow expects.
version: 1.0.0
category: AI Agents / Development
author: AgentVolt
license: proprietary
tags:
- ai-agents
- development
---
# Skills Init
Scaffolds a new skills directory — folder structure, metadata, and a baseline validation pass — so a fresh repo starts with the conventions every future skill gets checked against.
## When to use
… (sign up to view the full skill)More ai & agents skills
View all AI & Agents skills →Skill Status Report
Scan every skill in a project and report which pass validation, which are stale, and which lack required metadata.
Research Bundle
Run a multi-step research task as one pipeline: gather sources, extract findings, validate consistency, emit one structured bundle.
Workspace Admin
Administer a Cowork or Claude workspace — settings, access, configuration — with every change scoped and verified.
Skill Runner
Execute a named skill's run phase correctly: validate inputs, run the defined steps in order, and check outputs.