Agent-Skills-Hub skill-creator-pro
Create and evolve production-ready skills with reusable scripts, references, and validation. Use for new skill creation, skill upgrades, and enforcing consistent metadata and structure.
install
source · Clone the upstream repo
git clone https://github.com/0x-Professor/Agent-Skills-Hub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/0x-Professor/Agent-Skills-Hub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/skill-creator-pro" ~/.claude/skills/0x-professor-agent-skills-hub-skill-creator-pro && rm -rf "$T"
manifest:
skills/skill-creator-pro/SKILL.mdsource content
Skill Creator Pro
Overview
Create skills that are immediately usable by AI agents and maintainable across a shared repository.
Use this skill to enforce:
- Trigger-quality
fields in frontmatter.description - Consistent
metadata.agents/openai.yaml - Reusable scripts/references/assets per domain.
- Validation and smoke-test readiness before publishing.
Workflow
- Clarify skill intent with two or three concrete user prompts.
- Select one primary workflow pattern (task-based, workflow-based, or capability-based).
- Define reusable resources before writing final
prose.SKILL.md - Generate starter layout with
.scripts/generate_skill_starter.py - Edit
and references to keep core instructions concise.SKILL.md - Validate the entire pack with
.scripts/validate_skill_pack.py
Use Bundled Resources
- Read
for quality gates and review checklist.references/workflow.md - Read
for domain-specific starter guidance.references/category-guides.md - Reuse templates in
to avoid rewriting boilerplate.assets/templates/ - Run
to generate category starter output.scripts/generate_skill_starter.py - Run
after edits and before publishing.scripts/validate_skill_pack.py
Output Standards
When creating or updating a skill:
- Keep frontmatter keys minimal (
,name
).description - Keep descriptions explicit about trigger conditions.
- Keep scripts deterministic and compatible with
.--dry-run - Keep examples safe, especially for cybersecurity content.