# Push Files

> Push multiple files to a GitHub repository in a single commit

- Skill: `xiaobai1017/push-files` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xiaobai1017/push-files`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xiaobai1017/push-files/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: xiaobai1017 (https://skillmd.com/u/xiaobai1017)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/xiaobai1017/push-files

---


# push_files

Push multiple files to a GitHub repository in a single commit

## Purpose

This skill provides access to the MCP tool `push_files`. It allows you to push multiple files to a github repository in a single commit.

## Parameters

The tool accepts the following parameters:

### `owner`
**Required**
- **Type**: `string`
- **Description**: Repository owner (username or organization)

### `repo`
**Required**
- **Type**: `string`
- **Description**: Repository name

### `branch`
**Required**
- **Type**: `string`
- **Description**: Branch to push to (e.g., 'main' or 'master')

### `files`
**Required**
- **Type**: `array`
- **Description**: Array of files to push

### `message`
**Required**
- **Type**: `string`
- **Description**: Commit message


## Usage Instructions

To use this tool:

1. **Prepare the parameters** according to the schema above
2. **Invoke the MCP tool** `push_files` with the prepared parameters
3. **Process the result** returned by the tool

## Example

```json
{
  "owner": "example_value",
  "repo": "example_value",
  "branch": "example_value",
  "files": {},
  "message": "example_value"
}
```


## Notes

- This skill requires an active MCP connection to the server providing the `push_files` tool
- Ensure the MCP server is properly configured and running before attempting to use this tool
- Review the parameter requirements carefully to avoid errors
