https://github.com/geode-sdk/cli
Command-line utilities for working w/ geode
https://github.com/geode-sdk/cli
geode geode-sdk geometry-dash
Last synced: 22 days ago
JSON representation
Command-line utilities for working w/ geode
- Host: GitHub
- URL: https://github.com/geode-sdk/cli
- Owner: geode-sdk
- License: bsl-1.0
- Created: 2021-12-08T19:26:11.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-17T15:09:07.000Z (27 days ago)
- Last Synced: 2026-02-17T20:48:34.117Z (27 days ago)
- Topics: geode, geode-sdk, geometry-dash
- Language: Rust
- Homepage:
- Size: 1.01 MB
- Stars: 35
- Watchers: 2
- Forks: 33
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geode Command Line
Command-line utilities for working with [Geode SDK](https://geode-sdk.org).
For more information see its [page on the docs](https://docs.geode-sdk.org/getting-started/geode-cli).
## Usage
The CLI is typically invoked for you by Geode's build system, but it does have some standalone features:
``` bash
# Walks you through creating a Geode mod via a template
geode new
# Runs Geometry Dash from the default profile
geode run
# Installs the sdk. For more info see the docs
geode sdk install
# Uploads a mod to the index. For more info see the docs
geode index mods create
```
## Installation
*(For more in depth information see the docs.)*
[](https://repology.org/project/geode-sdk-cli/versions)
### Windows (scoop)
```
scoop bucket add extras
scoop install geode-sdk-cli
```
### Windows (Winget)
> This may be out of date. Sorry!
```
winget install GeodeSDK.GeodeCLI
```
### MacOS (brew)
```
brew install geode-sdk/geode/geode-cli
```
### Linux
We provide linux binaries [in every release](https://github.com/geode-sdk/cli/releases/latest).
### Arch Linux (Unofficial AUR package)
> **Note**: This package is unofficial and not maintained by us. Use at your own risk.
[geode-cli-bin](https://aur.archlinux.org/packages/geode-cli-bin)
### From source
> **Note**: This requires a [local rust installation](https://www.rust-lang.org/tools/install), and may take a very long time
```
cargo install --git https://github.com/geode-sdk/cli
```