├── .env.example ├── .gitignore ├── README.md ├── api.js ├── articles └── .gitkeep ├── gen.js ├── index.js ├── logger.js ├── package.json └── serp.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/README.md -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/api.js -------------------------------------------------------------------------------- /articles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/gen.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/index.js -------------------------------------------------------------------------------- /logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/logger.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/package.json -------------------------------------------------------------------------------- /serp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristianfreeman/aiwriter/HEAD/serp.js --------------------------------------------------------------------------------