├── .github ├── assets │ └── preview.png └── workflows │ ├── auto-reading.yml │ ├── ci.yml │ ├── page.yml │ └── release.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── README.md ├── config-generator.html ├── config.yaml.example ├── docs └── github-action-autoread-guide.md ├── requirements.txt └── weread-bot.py /.github/assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.github/assets/preview.png -------------------------------------------------------------------------------- /.github/workflows/auto-reading.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.github/workflows/auto-reading.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.github/workflows/page.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/README.md -------------------------------------------------------------------------------- /config-generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/config-generator.html -------------------------------------------------------------------------------- /config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/config.yaml.example -------------------------------------------------------------------------------- /docs/github-action-autoread-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/docs/github-action-autoread-guide.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /weread-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/weread-bot/HEAD/weread-bot.py --------------------------------------------------------------------------------