Agent skill productizer
Skill wrhy66/agent-skill-productizer/agent-skill-productizer
Turn repeatable prompts, SOPs, and niche workflows into GitHub-ready AI agent skills.
npx -y skills add wrhy66/agent-skill-productizer --skill agent-skill-productizerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
Turn repeatable prompts, workflows, SOPs, automations, or niche expertise into publishable AI agent skills. Use when Codex needs to design, create, audit, package, or launch a GitHub-ready skill with SKILL.md, progressive-disclosure references, reusable scripts/assets, README positioning, launch copy, and monetization paths.
SKILL.md
4.5 KB, 907 tokens by cl100k_base, as published. Nobody here has run it
Agent Skill Productizer
Workflow
Use this skill to convert a useful repeatable workflow into a small, installable agent skill that can be shared on GitHub and used as a lead magnet for paid templates, consulting, or private versions.
Follow this order:
- Define the buyer/user and the repeated job.
- Choose the narrowest useful skill promise.
- Design the skill folder with progressive disclosure.
- Write
SKILL.mdfor agents, not humans. - Add only resources that make execution more reliable.
- Audit the skill with
scripts/audit_skill.py. - Package the GitHub launch materials from
assets/templates/.
Product Strategy
Prefer skills that save a buyer time on urgent, repeated, high-friction work:
- turning messy inputs into polished deliverables
- checking fragile release or compliance steps
- producing niche documents, reports, tests, migrations, or launch assets
- coordinating tools where the exact sequence matters
- embedding a practitioner's private checklist into an agent workflow
Reject vague skills such as "better writing" or "business helper." Narrow them until the output, trigger, and buyer are obvious.
Use this positioning formula:
For [specific user], this skill turns [messy input] into [valuable output] using [workflow/resources] so they can [urgent outcome].
Skill Structure
Create a standard skill folder:
skill-name/
SKILL.md
agents/openai.yaml
scripts/
references/
assets/
Only keep resource directories that are actually used. Keep SKILL.md short and procedural. Put detailed examples, templates, scoring rubrics, and launch material in references or assets.
Use references when the agent may need to read detailed guidance. Use scripts when repeated checks or transformations should be deterministic. Use assets when the agent should copy a template into the user's final output.
Creation Steps
1. Extract The Repeatable Job
Ask or infer:
- Who uses this?
- What input do they start with?
- What output should the agent produce?
- What mistakes should the skill prevent?
- What parts are deterministic enough for scripts?
- What examples prove the skill works?
If the user wants revenue, choose an offer with a paid upgrade path:
Free GitHub skill -> paid template pack -> custom private skill -> implementation service
2. Name And Trigger
Use lowercase hyphen-case under 64 characters. Prefer verb-led names:
productize-skill
audit-launch-page
gh-release-brief
convert-sop-to-skill
Write the frontmatter description with both capability and triggers. Include file types, contexts, and tasks that should invoke the skill.
3. Write The Agent Instructions
In SKILL.md, use imperative workflow guidance. Avoid marketing copy. Include:
- decision steps
- do/don't rules
- exact resource routing
- validation commands
- output expectations
Do not include long explanations the model already knows.
4. Add Launch Materials
When making a GitHub-ready package, copy and fill:
assets/templates/github-readme.mdassets/templates/launch-posts.mdassets/templates/paid-upgrade-map.md
These templates are for the repository wrapper, not for the skill folder itself.
5. Audit
Run:
python scripts/audit_skill.py <path-to-skill-or-repo>
Fix all fail items. Treat warn items as launch quality improvements.
Resource Routing
Read references/productization.md when choosing the niche, offer, launch angle, or paid upgrade path.
Read references/skill-quality.md when writing or reviewing SKILL.md, references, scripts, and assets.
Use scripts/audit_skill.py before calling the skill ready.
Copy templates from assets/templates/ when the user asks for GitHub publishing, launch copy, or monetization material.
Revenue-Safe Rules
Do not promise guaranteed revenue, rankings, stars, or sales.
Do not create fake testimonials, fake usage numbers, fake screenshots, or fake endorsements.
Do not add dark patterns, credential harvesting, platform spam, or misleading install instructions.
Make the free skill useful on its own. Paid offers may add convenience, private customization, templates, or implementation time, but not artificial lock-in.
What ships with it: 7 files
12.3 KB alongside SKILL.md, 1 of them executable
agents/
- openai.yaml249 B
assets/
references/
- productization.md2.2 KB
- skill-quality.md1.5 KB
scripts/
- audit_skill.pyruns5.8 KB