├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts ├── prompts.ts ├── templates │ ├── workflow3.md │ └── workflow3_old1.md ├── tools.ts └── utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/prompts.ts -------------------------------------------------------------------------------- /src/templates/workflow3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/templates/workflow3.md -------------------------------------------------------------------------------- /src/templates/workflow3_old1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/templates/workflow3_old1.md -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekoe/workflow3/HEAD/tsconfig.json --------------------------------------------------------------------------------