├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── _test │ ├── actions-tools-command.test.ts │ ├── autopilot.test.ts │ ├── conversation.test.ts │ ├── interactive.test.ts │ ├── test-autopilot.yml │ ├── test-credentials.json │ ├── test-data.ts │ └── testing.test.ts ├── abstract-command.ts ├── actions-tools-command.ts ├── autopilot.ts ├── colors.ts ├── conversation-protocol.ts ├── conversation.ts ├── index.ts ├── interactive.ts ├── main.ts ├── setup.ts └── testing.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/package.json -------------------------------------------------------------------------------- /src/_test/actions-tools-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/actions-tools-command.test.ts -------------------------------------------------------------------------------- /src/_test/autopilot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/autopilot.test.ts -------------------------------------------------------------------------------- /src/_test/conversation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/conversation.test.ts -------------------------------------------------------------------------------- /src/_test/interactive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/interactive.test.ts -------------------------------------------------------------------------------- /src/_test/test-autopilot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/test-autopilot.yml -------------------------------------------------------------------------------- /src/_test/test-credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/test-credentials.json -------------------------------------------------------------------------------- /src/_test/test-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/test-data.ts -------------------------------------------------------------------------------- /src/_test/testing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/_test/testing.test.ts -------------------------------------------------------------------------------- /src/abstract-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/abstract-command.ts -------------------------------------------------------------------------------- /src/actions-tools-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/actions-tools-command.ts -------------------------------------------------------------------------------- /src/autopilot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/autopilot.ts -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/conversation-protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/conversation-protocol.ts -------------------------------------------------------------------------------- /src/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/conversation.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interactive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/interactive.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/setup.ts -------------------------------------------------------------------------------- /src/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/src/testing.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoichiro/actions-tools/HEAD/yarn.lock --------------------------------------------------------------------------------