> For the complete documentation index, see [llms.txt](https://onevarez.gitbook.io/cli/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://onevarez.gitbook.io/cli/concepts-1/build-tasks/core-tasks.md).

# Core tasks

There are several tasks that form part of the core of Laraboot, these tasks perform ground-level work to set a baseline with other tasks can work with.

### Foundation

Most of the core tasks require the foundation provider build task. It is recommended to be enabled before adding any other core tasks.

```
laraboot task add @core/laravel-foundation-provider --format=file -vvv
```

### Models

Every application sets its foundation at a well-designed data model. Laraboot includes a build task specifically engineered to give you a boost while you find yourself designing simple or complex applications.

```
laraboot task add @core/laravel-model --format=file -vvv
```

### Configuration

One of the things that makes laravel development enjoyable is how easy is to configure it.

```
laraboot task add @core/laravel-config --format=file -vvv
```

### Starter kit
