zc277584121/mygitplugin

git-create-repo

Create a new GitHub repository and clone it locally

All-time #4323 Trending #3987 Hot #5283 First seen Apr 27, 2026
8-week activity · all time api

Installation

$ npx skills add zc277584121/mygitplugin --skill git-create-repo

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from zc277584121/mygitplugin.

npx skills add zc277584121/mygitplugin

Browse all from zc277584121/mygitplugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License MIT
Default branch master
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 914 B
  • docs SUMMARY.md 74 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3,004 installs

SKILL.md

Git Create Repo

在 GitHub 上创建新的仓库并 clone 到本地。

触发条件

当用户要求创建一个新的 GitHub 仓库时使用此 skill。

执行步骤

  1. 创建仓库

``bash gh repo create <repo-name> --public --add-readme ` - 默认创建公开仓库(--public)。 - 如果用户明确要求私有仓库,使用 --private` 替代。 - 默认添加 README 文件。

  1. Clone 仓库

``bash gh repo clone zc277584121/<repo-name> ``

  1. 确认结果:进入项目目录,向用户报告仓库创建成功。

注意事项

  • GitHub 账号为 zc277584121
  • 如果用户没有指定公开或私有,默认使用公开(--public)。
  • 如果用户提供了描述,使用 --description 参数。