├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── bin ├── cli └── cli.cmd ├── media ├── assistant-chat.png ├── demo.gif └── demo.tape ├── package.json ├── src ├── app.ts ├── browser-commands │ ├── clean.ts │ ├── constants.ts │ ├── execute-browser.ts │ ├── get-conversations.ts │ ├── routes.ts │ ├── send-message.ts │ └── show-conversations.ts ├── core.ts └── types.ts └── tsconfig.json /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | node_modules/ 3 | localStorage 4 | .idea 5 | dist 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/bin/cli -------------------------------------------------------------------------------- /bin/cli.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\cli" %* -------------------------------------------------------------------------------- /media/assistant-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/media/assistant-chat.png -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/media/demo.gif -------------------------------------------------------------------------------- /media/demo.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/media/demo.tape -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/browser-commands/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/clean.ts -------------------------------------------------------------------------------- /src/browser-commands/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/constants.ts -------------------------------------------------------------------------------- /src/browser-commands/execute-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/execute-browser.ts -------------------------------------------------------------------------------- /src/browser-commands/get-conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/get-conversations.ts -------------------------------------------------------------------------------- /src/browser-commands/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/routes.ts -------------------------------------------------------------------------------- /src/browser-commands/send-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/send-message.ts -------------------------------------------------------------------------------- /src/browser-commands/show-conversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/browser-commands/show-conversations.ts -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diciaup/assistant-cli/HEAD/tsconfig.json --------------------------------------------------------------------------------