init-repo
Initialize local and remote repository
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Initialize local and remote repository
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
Manage CodeCommit PRs (create/list/view)
| name | init-repo |
| description | Initialize local and remote repository |
| argument-hint | [repo-name] [--public|--private] |
| allowed-tools | Bash(git init:*), Bash(gh repo create:*), Bash(git add:*), Bash(git commit:*), Bash(git push:*), Bash(git remote:*), Bash(git branch:*), Bash(gh repo edit:*), Bash(mkdir:*), Bash(cd:*), Bash(pwd:*), Write, AskUserQuestion |
$ARGUMENTS
repo-name: Repository name (optional)--public: Public repository (default)--private: Private repositorypwdgit status 2>&1 || echo "Not a git repository"Initialize repository locally and on GitHub:
Determine repository name:
Determine location:
~/git/github.com/<username>/<repo-name> (ghq-style)../<repo-name> (sibling directory)mkdir -p if neededAsk about initial files (multi-select):
Local initialization:
cd to target directorygit initgit add .git commit -m "Initial commit"Remote creation:
gh repo create <repo-name> --source=. --remote=origin --pushEnsure main branch:
master:
git branch -m master maingit push -u origin maingh repo edit --default-branch maingit remote -vShow after completion: