github-repo-manager
SolidGitHub repository management — create, fork, settings, collaborators, topics, archive, transfer
AI & Automation 49 stars
8 forks Updated today AGPL-3.0
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# GitHub Repo Manager Skill
Triggers: "repo manager", "create repo", "fork repo", "repo settings", "collaborators",
"add collaborator", "topics", "archive repo", "transfer repo", "visibility"
Authenticated as: `ariffazil` via `GH_TOKEN` (gh CLI, HTTPS protocol)
---
## Create Repository
```bash
# Create new repo (gh will prompt for name, description, visibility)
gh repo create
# Create repo non-interactively
gh repo create my-new-repo \
--public \
--description "My new repository" \
--clone
# Create with .gitignore and license
gh repo create my-new-repo \
--private \
--gitignore "Node" \
--license "MIT" \
--clone
```
Note: Creating a repo requires `--confirm` flag in automation. Prompt user before creating.
---
## Fork Repository
```bash
# Fork a repo to your account
gh repo fork owner/original-repo
# Fork and clone locally
gh repo fork owner/original-repo --clone
# List your forks
gh repo list --fork
```
---
## Repository Information
```bash
# View repo details
gh repo view ariffazil/arifOS
# View specific properties
gh repo view arifOS --json name,description,visibility,stargazerCount,defaultBranch
# List your repos
gh repo list --limit 20
# List repos by topic
gh search repo --topic "arifos" --owner ariffazil
```
---
## Settings
### Visibility
```bash
# Change visibility
gh repo set ariffazil/my-repo --visibility public
gh repo set ariffazil/my-repo --visibility private
gh repo set ariffazil/my-repo --visibility internal
```
#...
Details
- Author
- ariffazil
- Repository
- ariffazil/arifos
- Created
- 8 months ago
- Last Updated
- today
- Language
- Python
- License
- AGPL-3.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
github
GitHub operations — issues, PRs, commits, code search, CI/CD via gh CLI
49 Updated today
ariffazil AI & Automation Featured
github
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
46,287 Updated today
HKUDS AI & Automation Solid
github
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
75 Updated today
MemTensor