---
home: true
actionText: Get Started →
actionLink: /guide/
footer: MIT Licensed | Copyright © 2020-present Harry Horton
---

<div style="text-align: center">
  <Bit/>
</div>

<div class="features">
  <div class="feature">
    <h2>TypeScript First</h2>
    <p>Built from the ground up with TypeScript projects in mind.</p>
  </div>
  <div class="feature">
    <h2>Flexible</h2>
    <p>Import existing commands, build your own project commands, or build your own CLI tool.</p>
  </div>
  <div class="feature">
    <h2>Extendable</h2>
    <p>Use Plugins and hooks to add project CLI features, or add functionality to your custom commands.</p>
  </div>
</div>

### Easy to get started.

``` bash

# Install
yarn global add clivate

# Initialize your project with prompts
clivate init

# Build your commands
yarn build:commands

# Run them
yarn clivate

```