青龙面板自动任务订阅仓库,包含多个常用服务的自动签到/任务脚本。
A collection of auto check-in & task scripts for the Qinglong panel, covering various popular services.
在青龙面板中添加订阅:
| 配置项 | 值 |
|---|---|
| 名称 | QinglongScripts |
| 类型 | 公开仓库 |
| 链接 | https://github.com/CN-Grace/QinglongScripts.git |
| 定时类型 | crontab |
| 定时规则 | 0 0 * * *(每天自动更新订阅) |
| 白名单 | 留空(拉取全部脚本) |
| 黑名单 | 留空 |
💡 青龙面板会根据脚本中的
cron注释自动创建定时任务。notifier.py和utils.py不含 cron 注释,不会被创建任务,可正常拉取和更新。
💡 脚本图标位于
docs/docs/src/scripts/目录
请在青龙面板的「环境变量」中配置各脚本所需的变量,详见 env.json 文件。
各脚本调用的全部 API 接口详见 api/ 目录:
- Airport.md - 机场签到 API
- Aliyun.md - 阿里云盘签到 API
- ArknightsBanner.md - 明日方舟寻访公告 API
- Bilibili.md - Bilibili 每日任务 API
- HelloGithub.md - HelloGithub 签到 API
- Nodeseek.md - Nodeseek 签到 API
- SSL.md - SSL 证书监控 API
- Skyland.md - 森空岛签到 API
- Sync_Password.md - Bitwarden 密码同步 API
- Tieba.md - 百度贴吧签到 API
- ValorantStore.md - Valorant 商店查询 API
- YysHuijuanTime.md - 阴阳师绘卷时间获取 API
💡 通知渠道图标位于
docs/docs/src/notify/目录
所有脚本通过 notifier.py 统一发送通知,支持以下 23 种渠道:
通知附加选项:
| 选项 | 环境变量 | 说明 |
|---|---|---|
| 💬 一言(随机句子) | HITOKOTO |
通知内容末尾附加一条随机句子,默认启用,设为 false 可关闭 |
只需在环境变量中配置对应渠道即可启用,详见 env.json 文件。✅
QinglongScripts/
├── api/ # API 文档目录
│ ├── Airport.md
│ ├── Aliyun.md
│ ├── ArknightsBanner.md
│ ├── Bilibili.md
│ ├── HelloGithub.md
│ ├── Nodeseek.md
│ ├── SSL.md
│ ├── Skyland.md
│ ├── Sync_Password.md
│ ├── Tieba.md
│ ├── ValorantStore.md
│ └── YysHuijuanTime.md
├── config/ # 配置文件目录(自动创建,已 gitignore)
├── docs/ # 项目文档
│ ├── index.html
│ └── src/ # 资源文件
│ ├── scripts/ # 脚本图标
│ └── notify/ # 通知渠道图标
├── env.json # 环境变量模板(青龙面板可直接导入)
├── .gitignore
├── Airport.py # 机场签到
├── Aliyun.py # 阿里云盘签到
├── ArknightsBanner.py # 明日方舟寻访公告监控
├── Bilibili.py # B站每日任务
├── HelloGithub.py # HelloGithub 月刊
├── LICENSE # MIT 许可证
├── Nodeseek.py # Nodeseek 签到
├── notifier.py # 通知模块
├── README.md # 项目说明
├── skyland.py # 森空岛签到
├── SSL.py # SSL 证书检查
├── Sync_Password.py # Bitwarden 备份
├── Tieba.py # 百度贴吧签到
├── utils.py # 公共工具
├── ValorantStore.py # 掌瓦每日商店
└── YysHuijuanTime.py # 阴阳师绘卷时间获取
欢迎提交 Issue 和 Pull Request!
本项目采用 MIT License 开源许可证。