# Cloning the Repository

Assuming you have Git installed, navigate to the directory where you want to store the Artinals codebase and run:

```bash
git clone https://github.com/artfilabs/artinalsprotocolv1.git
```

Replace `https://github.com/yourusername/artinals.git` with the actual repository URL. After cloning, navigate into the project directory:

```bash
cd artinalsprotocolv1
```

You should now see the Move modules and related files in the project structure.

### Building and Testing the Modules

With your prerequisites in place and the repository cloned, you can now build and test the modules.

#### Building the Modules

From within the project directory, run:

```bash
sui move build
```

This command:

* Checks the syntax and semantics of your Move code.
* Ensures that all dependencies and modules are valid.
* Produces a build artifact if everything is correct.

If successful, you’ll see a confirmation message. If you encounter errors, carefully read the output to identify syntax or dependency issues.


---

# 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.artinals.com/artinals-protocol/getting-started/quickstart-1.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.
