# Cron

## Select the running environment

The first step in developing a new cron plugin is to determine which environment to use:

* Python
* NodeJS

## Create the file structure

Set up a directory structure with the following files:

```
├── src
│   ├── control.py or control.js  
│   ├── function.py or function.js
│   ├── view.xml
├── LICENSE
├── README.md
├── manifest.toml 
```

## control and function scripts

Fill these files with the content you need according to the table below, then save them.

<table data-full-width="true"><thead><tr><th width="125">Script</th><th width="315">Executed</th><th width="486">Purpose</th></tr></thead><tbody><tr><td>control</td><td>Only once when the plugin is created</td><td>Perform one time setup tasks</td></tr><tr><td>function</td><td>Periodically according to the frequency set</td><td>Perform time-triggered tasks</td></tr></tbody></table>

## view\.xml

Populate this file with content based on the form you'd like displayed when creating this plugin.

## LICENSE and README.md

Write the contents of the `README.md` and `LICENSE` files.

## manifest.toml

According to the Cron section of the Private Plugins page, `manifest.toml` should look like this:

```
manifest_version = 2.0
 
[settings] 
version = "1.0.56" 
runtime = "python3.11" <- replace as needed 
plugin_type = "cron"  <- fixed value. Do not change
license_name = "MIT license" 

[settings.cron] 
interval = 1 
run_on_deploy = false

[pricing]
price = 0 
```

## Compressing the files

Compress the files into a ZIP archive from the root of the file structure, not the parent folder.


---

# 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://dev.ubidots.com/plugins/plugins-development/cron.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.
