root 656f596d7e feat: implement AI legal assistant system MVP
Core modules:
- Laws: CRUD, search, AI-powered QA
- Analysis: legal research and case management
- Contracts: lifecycle management with templates
- Signatures: electronic signature workflow

Infrastructure:
- FastAPI + SQLite + async SQLAlchemy
- Docker deployment support
- 54 unit tests passing

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-01 03:34:44 +08:00

43 lines
400 B
Plaintext

# 系统文件
.DS_Store
Thumbs.db
# 编辑器
.idea/
.vscode/
*.swp
*.swo
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
*.egg
# 环境变量
.env
.env.local
.env.*.local
# 日志
*.log
logs/
# Agent 指令文件(由系统生成)
AGENTS.md
CLAUDE.md
GEMINI.md
QWEN.md
# Agent 技能目录(软链接或副本)
.agents/
.claude/
.codex/
.gemini/
.qwen/
venv/