feat: 初始化 PERDAS 增强版开发环境

- 添加 feature_list.json: 6个功能,5个已完成
- 添加 PROGRESS.md: 进度跟踪文件
- 添加 init.sh: 一键启动开发环境
- 添加 scripts/health-check.sh: 健康检查脚本
- 添加 scripts/e2e-test.sh: 端到端测试脚本
- 添加 .gitignore: 忽略不需要的文件
- 更新 README.md: 添加 PERDAS 增强版使用说明

核心特点:
- 强制增量开发(每次一个功能)
- 强制端到端测试
- 强制截图证据
- 状态持久化
- 清晰的交接机制

遵循 Anthropic 长期运行代理研究最佳实践
This commit is contained in:
root
2026-02-19 03:38:35 +08:00
parent f246f06cb1
commit be9542cf9d
7 changed files with 951 additions and 1 deletions

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# 二进制文件
stock-tool
stock-tool-simple
*.exe
*.out
*.app
# 数据库
stock.db
*.db
*.db-journal
# 日志
logs/*.log
*.log
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
# 测试截图
tests/screenshots/*.png
tests/screenshots/*.jpg
!tests/screenshots/.gitkeep
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# 系统文件
.DS_Store
Thumbs.db
# 环境变量
.env
.server.pid
# 临时文件
tmp/
temp/
*.tmp
# Go
*.test
*.prof
# 分支管理
.git/refs/original/