建立 harness coding 文档体系并完成一致性修正: - 文档集:AGENTS.md/CLAUDE.md 入口,docs/00-05 规范文档, api.md/routes.md/current-state.md,根目录 tasks.md/progress.md。 - 一致性补丁:TaskStatus 中英映射、支付模式收敛为全局 PaymentConfig、 执行器级 RunnerState 暂停语义、progress 与 current-state 职责边界。 - 工程地基:新增 .gitignore,忽略运行产物/敏感数据与 .claude 本地设置。 - 合规留痕:02 需求新增平台规则与合规风险条目。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
452 B
Plaintext
27 lines
452 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
build/
|
|
dist/
|
|
|
|
# 运行产物与敏感数据(含截图、UI XML、订单信息,禁止提交真实数据)
|
|
logs/
|
|
artifacts/
|
|
|
|
# Excel 样例与结果文件(默认不提交真实数据;脱敏样例需显式 git add -f)
|
|
samples/*.xlsx
|
|
*_执行结果.xlsx
|
|
|
|
# IDE / OS
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code 本地设置(不提交本地/敏感配置)
|
|
.claude/
|