> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nullftc.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Installing CommandKit

> CommandKit, a powerful toolkit for building FTC command-based robots.

You will want to start by adding the following to your `build.gradle` file in your TeamCode module:

```groovy theme={null}
repositories {
    mavenCentral()
    maven {
        url "https://maven.nullftc.dev/releases"
    }
}

dependencies {
  // Generic Implementation for Java
  implementation "dev.nullftc.commandkit:common:1.0-SNAPSHOT"

  // If you're using Kotlin and want to use DSLs.
  implementation "dev.nullftc.commandkit:ktx:1.0-SNAPSHOT"
}
```
