> For the complete documentation index, see [llms.txt](https://frinn.gitbook.io/custom-machinery-1.19/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://frinn.gitbook.io/custom-machinery-1.19/mod-integrations/crafttweaker/recipes/sky.md).

# Sky

Use the sky requirement in a Crafttweaker recipe

U**se this method to add a** [**sky requirement**](/custom-machinery-1.19/recipes/requirements/sky.md) **to the recipe.**

```javascript
.mustSeeSky()
```

### Example

The following recipe will require the machine to have a clear access to the sky :&#x20;

```javascript
<recipetype:custommachinery:custom_machine>.create("custommachinery:power_crusher", 20)
.mustSeeSky()
.build();
```
