# Install Zeus and Unboxing

### Zeus can easily be installed with:

```bash
npm install -g @liquidapps/zeus-cmd
```

Once installed a new Zeus box can be created for the project (equivalent of `npm init`).  This produces a `zeus-box.json` (equivalent of `package.json`). For more on the `zeus-box.json` see [here](/liquidapps-documentation/working-with-zeus-sdk/overview/install-zeus-and-unboxing/zeus-box-json.md).

```bash
mkdir helloworld; cd helloworld
zeus box create
```

Once created, you can unbox an existing box, example for **basic contract**

```bash
zeus unbox helloworld
# to compile, start local env, and run unit tests
zeus test -c
# create new contract
zeus create contract hello --chain=eos --language=cpp --template=simplecontract
```

Unbox for **all dapp services example contract**

```bash
zeus unbox all-dapp-services
# to compile, start local env, and run unit tests
zeus test -c
# create new contract
zeus create contract <CONTRACT_NAME>
```

To see a list `zeus_boxes` run:

```bash
zeus list-boxes
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.liquidapps.io/liquidapps-documentation/working-with-zeus-sdk/overview/install-zeus-and-unboxing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
