├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── media ├── intro-video.gif └── robot-and-kid.jpg ├── package.json ├── src ├── boot.ts ├── config.ts ├── duetgpt.ts ├── functions │ ├── bash.ts │ ├── index.ts │ └── replace.ts ├── index.ts ├── notifications │ ├── notify-function-ask-run-or-not.ts │ └── notify.ts └── utils │ └── error.ts ├── system.prompt └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/README.md -------------------------------------------------------------------------------- /media/intro-video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/media/intro-video.gif -------------------------------------------------------------------------------- /media/robot-and-kid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/media/robot-and-kid.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/package.json -------------------------------------------------------------------------------- /src/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/boot.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/duetgpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/duetgpt.ts -------------------------------------------------------------------------------- /src/functions/bash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/functions/bash.ts -------------------------------------------------------------------------------- /src/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/functions/index.ts -------------------------------------------------------------------------------- /src/functions/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/functions/replace.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/notifications/notify-function-ask-run-or-not.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/notifications/notify-function-ask-run-or-not.ts -------------------------------------------------------------------------------- /src/notifications/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/notifications/notify.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /system.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/system.prompt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristoferlund/duet-gpt/HEAD/tsconfig.json --------------------------------------------------------------------------------