← All plugins
gh-project-plugin
v1.0.0Create GitHub repositories with low-friction defaults and native Codex menu prompts.
Codex1 skill
0updated 2 months ago
Source
git clone https://github.com/zfifteen/gh-project-pluginClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
gh-project-plugin/
├── .codex-plugin/plugin.json└── skills/gh-project/SKILL.md
Skills1
gh-projectskills/gh-project/SKILL.md
Create new GitHub repositories with low-friction defaults. Use when the user invokes /gh-project or $gh-project, asks to create a new GitHub project, asks to create a GitHub repo/repository, or wants a local folder plus GitHub repository created from inferred defaults.
Manifests1
.codex-plugin/plugin.json
{
"name": "gh-project-plugin",
"version": "1.0.0",
"description": "Create GitHub repositories with low-friction defaults and native Codex menu prompts.",
"keywords": [
"codex",
"github",
"repository",
"github-cli",
"native-menus"
],
"skills": "./skills/",
"interface": {
"displayName": "GH Project",
"shortDescription": "Create GitHub repos with native menus",
"longDescription": "A Codex plugin bundle that packages the gh-project skill and plugin metadata for creating GitHub repositories with inferred defaults, explicit confirmation, and native request_user_input menus when the Codex host exposes that surface.",
"developerName": "Velocity Works",
"category": "Productivity",
"capabilities": [
"Interactive",
"Write"
],
"defaultPrompt": "Use GH Project to create a new GitHub repository with low-friction defaults.",
"brandColor": "#0969DA"
}
}