feat: Update documentation and claude-skills module

This commit is contained in:
tukuaiai
2025-12-14 08:24:49 +08:00
parent 489f87b251
commit 8830a20cc5
12 changed files with 763 additions and 42 deletions
+22
View File
@@ -0,0 +1,22 @@
# 🗄️ 数据库模块 (Database)
预留的数据库适配层,用于未来扩展数据持久化功能。
## 规划用途
- 数据库连接管理
- ORM 模型定义
- 数据迁移脚本
- 查询工具函数
## 待实现
当前为占位目录,后续可添加:
```
database/
├── __init__.py
├── connection.py # 连接管理
├── models.py # ORM 模型
└── migrations/ # 迁移脚本
```