| name | workflow-to-skill |
| description | Use when a task, artifact, prompt, analysis process, or plugin workflow has produced a good result and should be converted into a reusable Codex skill. Also use when improving an existing skill after a better output pattern appears. |
Workflow To Skill
Use this when the user says some version of: "That was good, make it reusable."
Capture Pattern
- Identify the successful output.
- Reverse-engineer the workflow that produced it.
- Separate stable method from one-off context.
- Write a focused
SKILL.md with strong trigger metadata.
- Add only essential instructions.
- Install into
~/.codex/skills if the user wants it active now.
- Commit the source copy to SuperStack.
Skill Shape
Every skill should include:
- Clear
name.
- Trigger-rich
description.
- Short workflow.
- Output standard.
- Guardrails.
- Source notes if it came from a transcript, repo, or repeated task.
Avoid:
- Long transcripts.
- Marketing filler.
- Huge lists that will not change behavior.
- Secrets or account-specific credentials.
- Overlapping skills when one router would do.
Improve Existing Skills
When a better pattern appears during use:
- Ask what specifically should become default.
- Patch the relevant skill.
- Keep the change narrow.
- Reinstall the patched skill globally.
- Commit the update.
Test Prompt
After creating a skill, test mentally or with a quick dry run:
- Would its description trigger at the right time?
- Would the body change the agent's behavior?
- Is it smaller than the workflow it replaces?
- Does it avoid brittle project-specific assumptions?
Source Notes
Distilled from the Codex capabilities transcript: iterate until the output is good, then turn the successful workflow into a reusable skill.