涵盖(每条对应已存的审计记录): - AI 模块拆分:apps/backend/app/ai/apps -> prompts/(8 个 APP + app2a 派生) audit: 2026-04-20__ai-module-complete.md - admin-web AI 管理套件:AIDashboard / AIOperations / AIRunLogs / AITriggers / TriggerManager audit: 2026-04-21__admin-web-ai-management-suite.md - App2 财务洞察 prompt v3 -> v5.1 + 小程序 AI 接入(chat / board-finance) audit: 2026-04-22__app2_prompt_v5_1_and_miniprogram_ai_insight.md - App2 prewarm 全过滤器 + AI 触发器 cron reschedule audit: 2026-04-21__app2-finance-prewarm-all-filters.md migration: 20260420_ai_trigger_jobs_and_app2_prewarm.sql / 20260421_app2_prewarm_cron_reschedule.sql - AppType 联合类型对齐 + adminAiAppTypes.test.ts audit: 2026-04-30__admin_web_ai_app_type_alignment.md - DashScope tokens_used 提取修复 audit: 2026-04-30__backend_dashscope_tokens_used_extraction.md - App3 线索完整详情 prompt audit: 2026-05-01__backend_app3_full_detail_prompt.md - Runtime Context 沙箱(5-1~5-2 主线): - 后端 schema/service + admin_runtime_context / xcx_runtime_clock 两个 router - admin-web RuntimeContext.tsx + miniprogram runtime-clock.ts - migration: 20260501__runtime_context_sandbox.sql - tools/db/verify_admin_web_sandbox.py + verify_sandbox_end_to_end.py - database/changes: 7 份 sandbox_* 验证报告 - 飞球 DWS 修复:finance_area_daily 区域汇总 + task_engine 调整 + RLS 视图业务日上界(migration 20260502 + scripts/ops/gen_rls_business_date_migration.py) 合规: - .gitignore 启用 tmp/ 排除 - 不入仓:apps/etl/connectors/feiqiu/.env(API_TOKEN secret,本地修改保留) 待验证清单: - docs/audit/changes/2026-05-04__cumulative_baseline_pending_verification.md 每个主题的功能完整性 / 上线验证几乎都未收口,按优先级 P0~P3 逐一处理
107 lines
1.6 KiB
Plaintext
107 lines
1.6 KiB
Plaintext
# ===== 临时与缓存 =====
|
||
tmp/
|
||
__pycache__/
|
||
*.pyc
|
||
*.py[cod]
|
||
*$py.class
|
||
*.so
|
||
.hypothesis/
|
||
.pytest_cache/
|
||
pytest-cache-files-*/
|
||
logs/
|
||
*.log
|
||
*.jsonl
|
||
|
||
# Playwright MCP 浏览器日志与页面快照
|
||
.playwright-mcp/
|
||
|
||
# 小程序字体补丁临时目录
|
||
apps/miniprogram/.font_patch_tmp/
|
||
|
||
# ===== 审计文件 =====
|
||
docs/audit/*
|
||
# 白名单:允许追踪审计变更记录与仪表盘
|
||
!docs/audit/changes/
|
||
!docs/audit/changes/*.md
|
||
!docs/audit/audit_dashboard.md
|
||
|
||
# ===== 运行时产出 =====
|
||
export/
|
||
reports/
|
||
scripts/logs/
|
||
|
||
|
||
# ===== 环境配置(保留模板) =====
|
||
.env
|
||
.env.local
|
||
!.env.template
|
||
|
||
# ===== Node =====
|
||
node_modules/
|
||
|
||
# ===== Python 虚拟环境 =====
|
||
.venv/
|
||
venv/
|
||
ENV/
|
||
env/
|
||
|
||
# ===== Python 构建产物 =====
|
||
.Python
|
||
build/
|
||
develop-eggs/
|
||
downloads/
|
||
eggs/
|
||
.eggs/
|
||
lib/
|
||
lib64/
|
||
parts/
|
||
sdist/
|
||
var/
|
||
wheels/
|
||
*.egg-info/
|
||
.installed.cfg
|
||
*.egg
|
||
dist/
|
||
|
||
# ===== 测试覆盖率 =====
|
||
.coverage
|
||
htmlcov/
|
||
|
||
# ===== 测试 =====
|
||
tests/
|
||
|
||
# ===== infra 敏感文件 =====
|
||
infra/**/*.key
|
||
infra/**/*.pem
|
||
infra/**/*.secret
|
||
|
||
# ===== IDE =====
|
||
.idea/
|
||
.vscode/
|
||
.vite/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
|
||
# ===== Claude Code 本地配置 =====
|
||
.claude/settings.local.json
|
||
|
||
# ===== AI 历史会话归档(原文本地,索引入仓) =====
|
||
# 原文摘要量大(每会话数百行),仅本机保留:
|
||
docs/ai-env-history/sessions/
|
||
docs/claude-history/
|
||
# conversation_index.csv 与 file_impact_index.csv 已脱敏,作为索引入仓(2026-05-02 反向迁移调整)
|
||
|
||
# ===== Windows 杂项 =====
|
||
*.lnk
|
||
.Deleted/
|
||
|
||
# ===== 归档目录(用户定期手动清理) =====
|
||
_DEL/
|
||
|
||
# ===== 运维脚本运行时状态 =====
|
||
scripts/ops/.monitor_token
|
||
|
||
# ===== 小程序打包产物 =====
|
||
apps/*.zip
|