├── README.md ├── docs ├── snips-skill.md ├── template-homeassistant.md ├── template-javascript.md ├── template-python2.md └── templating.md └── templates ├── homeassistant ├── README.md ├── action_{{action_name_alt}}.py.tpl └── spec.json ├── javascript ├── .npmrc ├── README.md ├── action-{{action_name}}.js.tpl ├── package.json ├── setup.sh └── spec.json ├── python2 ├── README.md ├── action-{{action_name}}.py.tpl ├── requirements.txt ├── setup.sh └── spec.json └── python3 ├── README.md ├── action-{{action_name}}.py.tpl ├── requirements.txt ├── setup.sh └── spec.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/README.md -------------------------------------------------------------------------------- /docs/snips-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/docs/snips-skill.md -------------------------------------------------------------------------------- /docs/template-homeassistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/docs/template-homeassistant.md -------------------------------------------------------------------------------- /docs/template-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/docs/template-javascript.md -------------------------------------------------------------------------------- /docs/template-python2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/docs/template-python2.md -------------------------------------------------------------------------------- /docs/templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/docs/templating.md -------------------------------------------------------------------------------- /templates/homeassistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/homeassistant/README.md -------------------------------------------------------------------------------- /templates/homeassistant/action_{{action_name_alt}}.py.tpl: -------------------------------------------------------------------------------- 1 | {{#each action_code as |a|}}{{a}} 2 | {{/each}} -------------------------------------------------------------------------------- /templates/homeassistant/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/homeassistant/spec.json -------------------------------------------------------------------------------- /templates/javascript/.npmrc: -------------------------------------------------------------------------------- 1 | cache = ./.npm -------------------------------------------------------------------------------- /templates/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/javascript/README.md -------------------------------------------------------------------------------- /templates/javascript/action-{{action_name}}.js.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/javascript/action-{{action_name}}.js.tpl -------------------------------------------------------------------------------- /templates/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/javascript/package.json -------------------------------------------------------------------------------- /templates/javascript/setup.sh: -------------------------------------------------------------------------------- 1 | #/usr/bin/env bash -e 2 | 3 | npm install 4 | -------------------------------------------------------------------------------- /templates/javascript/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/javascript/spec.json -------------------------------------------------------------------------------- /templates/python2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python2/README.md -------------------------------------------------------------------------------- /templates/python2/action-{{action_name}}.py.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python2/action-{{action_name}}.py.tpl -------------------------------------------------------------------------------- /templates/python2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python2/requirements.txt -------------------------------------------------------------------------------- /templates/python2/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python2/setup.sh -------------------------------------------------------------------------------- /templates/python2/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python2/spec.json -------------------------------------------------------------------------------- /templates/python3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python3/README.md -------------------------------------------------------------------------------- /templates/python3/action-{{action_name}}.py.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python3/action-{{action_name}}.py.tpl -------------------------------------------------------------------------------- /templates/python3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python3/requirements.txt -------------------------------------------------------------------------------- /templates/python3/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python3/setup.sh -------------------------------------------------------------------------------- /templates/python3/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snipsco/snips-actions-templates/HEAD/templates/python3/spec.json --------------------------------------------------------------------------------