Skill creator
Governed skill foundry and Skills SDK for Codex/AI coding agents: author, validate, evaluate, and sync runtime projections through ask.
npx -y skills add jscraik/Agent-Skills --skill skill-creatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Guide for creating effective skills. Use this skill when users need to create a new skill or reshape a draft skill package before hardening, benchmarking, or distribution.
SKILL.md
2.1 KB, as published. Nobody here has run it
Skill Creator
Use this skill to create or restructure a skill package so it is ready for hardening.
When to use
- New skill creation from user intent.
- Major reshape of an existing draft skill.
- Packaging alignment across
SKILL.md,references/,scripts/, andagents/openai.yaml.
Do not use
- Release-hardening/evals: route to
[[skill-builder]]. - Install/import flows: route to
[[skill-installer]].
Core Philosophy
- Start with a narrow, executable scope.
- Keep routing intent explicit in
SKILL.md. - Preserve required context by relocating detail to
references/.
Core workflow
- Confirm goal, trigger phrases, and category.
- Define smallest viable package boundary.
- Create/update required files with canonical names.
- Move deep details to references and keep
SKILL.mdroute-focused. - Run baseline validation commands and report outcomes.
Required output contract
Provide:
schema_versionmodeskill_pathchanged_filescontext_routesvalidation_evidencerisks
Progressive disclosure policy
Never drop required context; relocate depth into references/ with explicit signposts.
Read when:
- drafting structure and routing text: foundations
- creating reusable handoff payloads: handoff package template
- shaping examples and edge handling: examples and gotchas
Anti-Patterns to Avoid
- Building broad package scaffolds without a clear trigger surface.
- Duplicating long policy text in
SKILL.mdinstead of references. - Returning unvalidated scaffolds as production-ready outputs.
Constraints
- Preserve user constraints exactly.
- Use deterministic, reproducible edits.
- Redact sensitive values in outputs.