| 1 | ## `zpm add` command |
| 2 | ``` |
| 3 | zigmod zpm add <name> |
| 4 | ``` |
| 5 | |
| 6 | - `<name>` is required and will pull the corresponding package from https://zpm.random-projects.net/ and add it to your `zigmod.yml`. |
| 7 | - Since zpm is not native to Zigmod is will also manually define the `name` and `main` attributes based on the zpm data. Normally, if the source you reference contains a `zigmod.yml` file in its root, those fields are not required to defined by the dependent. |
| 8 | |
| 9 | For example running `zigmod zpm add apple_pie` will append the following to your `zigmod.yml`: |
| 10 | ```yml |
| 11 | - src: git https://github.com/Luukdegram/apple_pie |
| 12 | ``` |