Add meta-skill - #6
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces a new meta-skill to guide the design, creation, auditing, and refinement of Codex skills, adding a main SKILL.md file, a design brief template, and a quality checklist. The review feedback points out hardcoded user directories in the initialization and validation script paths within SKILL.md and suggests using a generic home directory path (~) to ensure portability across different environments.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| 8. Initialize the folder with the local skill initializer when available. Prefer: | ||
|
|
||
| ```bash | ||
| python3 /Users/huangzhou/.codex/skills/.system/skill-creator/scripts/init_skill.py <skill-name> --path <parent-dir> |
There was a problem hiding this comment.
The script path contains a hardcoded user directory (/Users/huangzhou). This will fail for other users. Please use a generic home directory path like ~ instead.
| python3 /Users/huangzhou/.codex/skills/.system/skill-creator/scripts/init_skill.py <skill-name> --path <parent-dir> | |
| python3 ~/.codex/skills/.system/skill-creator/scripts/init_skill.py <skill-name> --path <parent-dir> |
| 11. Validate the folder before delivery: | ||
|
|
||
| ```bash | ||
| python3 /Users/huangzhou/.codex/skills/.system/skill-creator/scripts/quick_validate.py <path-to-skill-folder> |
There was a problem hiding this comment.
The validation script path contains a hardcoded user directory (/Users/huangzhou). Please use ~ to make it portable across different environments.
| python3 /Users/huangzhou/.codex/skills/.system/skill-creator/scripts/quick_validate.py <path-to-skill-folder> | |
| python3 ~/.codex/skills/.system/skill-creator/scripts/quick_validate.py <path-to-skill-folder> |
|
Thanks for the review. Fixed by replacing the hardcoded /Users/huangzhou paths with portable |
Adds meta-skill under Planning.\n\nThe skill helps Codex decide whether a new skill should exist, compare nearby alternatives, write a concise design brief, and define a distinctive skill identity before implementation.\n\nSource: https://github.com/joohw/meta-skill