Fix #27: Add missing references for skill-creator#148
Fix #27: Add missing references for skill-creator#148BodanampatiMohith wants to merge 2 commits intoopenai:mainfrom
Conversation
BodanampatiMohith
commented
Feb 10, 2026
- Add references/workflows.md: Complete guide for designing multi-step workflows
- Add references/output-patterns.md: Guide for specifying output quality standards
- Resolves issue Skill for worktrees workflows #27 and Missing references for skill creator #20 about missing skill-creator references
- These files were referenced in SKILL.md but were missing from the repository
- Add references/workflows.md: Complete guide for designing multi-step workflows - Add references/output-patterns.md: Guide for specifying output quality standards - Resolves issue openai#27 and openai#20 about missing skill-creator references - These files were referenced in SKILL.md but were missing from the repository
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 4c6c774133
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| All configuration files must be valid JSON and include: | ||
|
|
||
| ```json |
There was a problem hiding this comment.
Fence nested markdown examples correctly
This document opens outer examples with ```markdown and then introduces inner fenced blocks (for example ```json) using the same fence length, which closes the outer block early and causes the supposed template content to render as real headings/text instead of literal examples. Because this file is guidance intended to be copied into other skills, the malformed rendering makes the instructions ambiguous and easy to misapply; use a longer outer fence (e.g., four backticks) or another escaping strategy for nested examples.
Useful? React with 👍 / 👎.
BodanampatiMohith
left a comment
There was a problem hiding this comment.
Changes
references/workflows.md (221 lines): Complete guide for designing multi-step workflows
references/output-patterns.md (222 lines): Comprehensive output quality standards
- Use 4 backticks for outer fences, 3 for inner fences - Prevents premature closing of code blocks in examples - Ensures templates render correctly as code, not headings - Critical fix since users copy-paste these examples into skills