Best use case
push is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Pushes the current branch to the remote repository.
Teams using push should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/push/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How push Compares
| Feature / Agent | push | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Pushes the current branch to the remote repository.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
When asked to push code, follow these steps: 1. Run `git status` to verify there are commits to push. 2. Push to the remote repository: - Run `git push` to push the commits - If the branch has no upstream, use `git push -u origin <branch-name>` 3. Report the results including: - The branch name - The push status
Related Skills
wallet
Use the wallet tools for all balance, send, and sign operations. Supports both ETH and ERC-20 tokens. The away wallet operates autonomously after setup — the home device does not need to be online.
metamask
Use the MetaMask tools to request and interact with wallet capabilities from the MetaMask capability vendor.
discovery
Use the discovery tools to find and use services through a service matcher. Do not rely on prior knowledge of services, providers, or APIs.
update-changelogs
Updates changelogs for all packages with consumer-facing changes.
pr
Creates a pull request for the current branch.
lint-build-test
How to check code by linting, building, and testing.
glossary
How to add entries to the glossary
evm-wallet-docker-e2e
Run the evm-wallet Docker e2e tests (build, start stack, wait for healthy, test, diagnose failures).
create-package
Create a new monorepo package using the create-package CLI
commit
Optionally checks, then commits code to the current or a new feature branch.
code-review
How to review code; a pull request, feature branch, local changes etc.
git-pushing
Stage all changes, create a conventional commit, and push to the remote branch. Use when explicitly asks to push changes ("push this", "commit and push"), mentions saving work to remote ("save to github", "push to remote"), or completes a feature and wants to share it.