# Algorand Project Structure

The Algorand project's standard directory layout :

![](/files/-MSmIWfy25b-v3Z9jLVC)

| Directory / File      | Description                                                                                                                                                                                                                                                                                                                       |
| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **src**               | TEAL program files                                                                                                                                                                                                                                                                                                                |
| **algo-package.json** | Algorand package json files. Every algorand project should have this file at top level.                                                                                                                                                                                                                                           |
| **generated-src**     | Any generated source files from original TEAL programs are stored here. Example: If a TEAL program uses variables (VAR\_TMPL\_\*) inside the source code, the plugin generates the final source files with variable values under this folder. Also, the TEAL file generated during PyTeal compilation is  created in this folder. |
| **build**             | Build folder. The compiled binaries and other files generated from source are stored here.                                                                                                                                                                                                                                        |
| **build/toks**        | Compiled TEAL file                                                                                                                                                                                                                                                                                                                |
| **build/lsigs**       | Logic Sig files generated from TEAL program                                                                                                                                                                                                                                                                                       |
| **build/txns**        | Exported transaction files                                                                                                                                                                                                                                                                                                        |
| **build/dryrun**      | Dry Run output files                                                                                                                                                                                                                                                                                                              |


---

# 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://algodea-docs.bloxbean.com/algorand-project-structure.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.
