Skip to content

Add meta-skill - #6

Open
joohw wants to merge 3 commits into
proflead:masterfrom
joohw:add-meta-skill
Open

Add meta-skill#6
joohw wants to merge 3 commits into
proflead:masterfrom
joohw:add-meta-skill

Conversation

@joohw

@joohw joohw commented Jun 7, 2026

Copy link
Copy Markdown

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

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Comment thread skills/planning/meta-skill/SKILL.md Outdated
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>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

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.

Suggested change
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>

Comment thread skills/planning/meta-skill/SKILL.md Outdated
11. Validate the folder before delivery:

```bash
python3 /Users/huangzhou/.codex/skills/.system/skill-creator/scripts/quick_validate.py <path-to-skill-folder>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The validation script path contains a hardcoded user directory (/Users/huangzhou). Please use ~ to make it portable across different environments.

Suggested change
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>

@joohw

joohw commented Jun 7, 2026

Copy link
Copy Markdown
Author

Thanks for the review. Fixed by replacing the hardcoded /Users/huangzhou paths with portable /Users/huangzhou/.codex paths and re-ran quick_validate.py successfully.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant