{"id":16618369,"url":"https://github.com/andreasonny83/twilio-remote-cli","last_synced_at":"2025-10-29T19:31:36.334Z","repository":{"id":57156465,"uuid":"157513045","full_name":"andreasonny83/twilio-remote-cli","owner":"andreasonny83","description":"A Remote control for your Twilio API that runs inside your terminal","archived":false,"fork":false,"pushed_at":"2020-10-03T14:46:54.000Z","size":1041,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-02-02T04:41:13.207Z","etag":null,"topics":["cli","node","twilio","twilio-api"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andreasonny83.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-14T08:05:48.000Z","updated_at":"2020-10-03T14:42:41.000Z","dependencies_parsed_at":"2022-09-05T02:00:17.874Z","dependency_job_id":null,"html_url":"https://github.com/andreasonny83/twilio-remote-cli","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreasonny83%2Ftwilio-remote-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreasonny83%2Ftwilio-remote-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreasonny83%2Ftwilio-remote-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreasonny83%2Ftwilio-remote-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andreasonny83","download_url":"https://codeload.github.com/andreasonny83/twilio-remote-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238882396,"owners_count":19546505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","node","twilio","twilio-api"],"created_at":"2024-10-12T02:19:42.439Z","updated_at":"2025-10-29T19:31:35.951Z","avatar_url":"https://github.com/andreasonny83.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Twilio Remote CLI\n\n[![npm version](https://badge.fury.io/js/twilio-remote-cli.svg)](https://badge.fury.io/js/twilio-remote-cli)\n[![npm](https://img.shields.io/npm/dt/twilio-remote-cli.svg)](https://www.npmjs.com/package/twilio-remote-cli)\n[![Known Vulnerabilities](https://snyk.io/test/github/andreasonny83/twilio-remote-cli/badge.svg?targetFile=package.json)](https://snyk.io/test/github/andreasonny83/twilio-remote-cli?targetFile=package.json)\n[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)\n\n\u003e A remote control for your Twilio API\n\n\u003cimg src=\"https://raw.githubusercontent.com/andreasonny83/twilio-remote-cli/main/img/sms.gif\" width=\"700\"\u003e\n\n## Prerequisites\n\nThe CLI has dependencies that require Node 6 or higher, together with NPM 3 or higher.\n\nYou will also need a Twilio account and phone number that can send SMS messages\n(you can [sign up for a Twilio account for free here](https://www.twilio.com/try-twilio)).\n\n## Table of Contents\n- [Twilio Remote CLI](#twilio-remote-cli)\n  - [Prerequisites](#prerequisites)\n  - [Table of Contents](#table-of-contents)\n  - [Installation](#installation)\n    - [Install Globally](#install-globally)\n    - [Run from npm without installing](#run-from-npm-without-installing)\n    - [Install a specific version (Example: 0.0.1)](#install-a-specific-version-example-001)\n  - [Usage](#usage)\n    - [Options](#options)\n        - [`--call`, `-c`](#--call--c)\n        - [`--digits`, `-d`](#--digits--d)\n        - [`--sms`, `-s`](#--sms--s)\n        - [`--message`, `-m`](#--message--m)\n  - [Configuration](#configuration)\n    - [Sending SMS](#sending-sms)\n    - [Making calls](#making-calls)\n  - [License](#license)\n\n## Installation\n\n**BEFORE YOU INSTALL:** please read the [prerequisites](#prerequisites)\n\n### Install Globally\n\n```sh\nnpm install -g twilio-remote-cli\n```\n\n### Run from npm without installing\n\n```sh\nnpx twilio-remote-cli\n```\n\n### Install a specific version (Example: 0.0.1)\n\n```sh\nnpm install -g twilio-remote-cli@0.0.1\n```\n\n## Usage\n\n```\n  $ twilio-remote --help\n\n  Usage\n    $ twilio-remote\n\n  Options\n    --call,    -c   Perform a call against a given number\n    --digits   -d   Send some digits to the number when the call is answered\n    --sms,     -s   Deliver an sms to a given number (to be used in combination of --message)\n    --message, -m   The message to be delivered to the given number (requires the --sms flag)\n\n  Example\n    $ twilio-remote\n    $ twilio-remote -c +1234567890\n    $ twilio-remote -c +1234567890 -d 123\n    $ twilio-remote -s +1234567890 -m Allo!\n```\n\nThen just follow the instructions on your terminal.\n\n### Options\n\n##### `--call`, `-c`\n\nPerform a call against a given number\n\n```\n$ twilio-remote -c +1234567890\n```\n\n##### `--digits`, `-d`\n\n**NOTE** This flag must be used in combination with `--call`\n\nSend some DTMF (Dual-Tone Multi-Frequency Tones) tones to the number when the call is answered.\nHave a look at [Twilio Studio Flow](https://www.twilio.com/console/studio/flows/).\nLearn more how to use the [Gather Input On Call Twilio Widget from here](https://www.twilio.com/docs/studio/widget-library#gather-input-on-call)\n\nIf a certain number requires to enter a code when the call is answered, you can use `twilio-remote` in this way:\n\n```\n$ twilio-remote -c +1234567890 -d 123\n```\n\n##### `--sms`, `-s`\n\nDeliver an sms to a given number\n**NOTE** This flag must be used in combination with `--message`\n\n```\n$ twilio-remote -s +1234567890 -m Allo!\n```\n\n##### `--message`, `-m`\n\nThe message to be delivered to the given number\n**NOTE** This flag must be used in combination with `--sms`\n\n```\n$ twilio-remote -s +1234567890 -m Allo!\n```\n\n## Configuration\n\n\u003cimg src=\"https://raw.githubusercontent.com/andreasonny83/twilio-remote-cli/main/img/config.gif\" width=\"700\"\u003e\n\nTwilio Remote CLI make uses of the Twilio API by accessing you personal Twilio account.\nWe need to configure the application with our Twilio credentials. Gather your Twilio Account Sid and Auth Token from the [Twilio console](https://www.twilio.com/console) along with a [Twilio phone number](https://www.twilio.com/console/phone-numbers/incoming) that can send SMS messages.\n\nRun the Twilio Remote CLI with\n\n```sh\ntwilio-remote\n```\n\nThen select the `Setup Twilio Account` option and enter all the required information.\n\n### Sending SMS\n\n\u003cimg src=\"https://raw.githubusercontent.com/andreasonny83/twilio-remote-cli/main/img/sms.gif\" width=\"700\"\u003e\n\n### Making calls\n\n\u003cimg src=\"https://raw.githubusercontent.com/andreasonny83/twilio-remote-cli/main/img/voice.gif\" width=\"700\"\u003e\n\n## License\n\nMIT\n\n---\n\nCreated with 🦄 by [andreasonny83](https://about.me/andreasonny83)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreasonny83%2Ftwilio-remote-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreasonny83%2Ftwilio-remote-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreasonny83%2Ftwilio-remote-cli/lists"}