63 lines
1.1 KiB
Plaintext
63 lines
1.1 KiB
Plaintext
# 配置保护 .gitignore — 只跟踪关键可恢复配置
|
||
# 排除所有运行时数据
|
||
sessions/
|
||
cron/output/
|
||
cron/jobs.json
|
||
cron/ticker*
|
||
cron/*.lock
|
||
watchdog/
|
||
cache/
|
||
logs/
|
||
*.db
|
||
*.db-shm
|
||
*.db-wal
|
||
*.log
|
||
*.png
|
||
*.jpg
|
||
*.lock
|
||
state*
|
||
gateway*
|
||
processes.json
|
||
feishu_seen_message_ids.json
|
||
channel_directory.json
|
||
auth.json
|
||
# kanban 运行时数据(2026-09-10 收窄:原 'kanban*' 误伤 scripts/kanban-*.py 和 skills/kanban-*)
|
||
/kanban/
|
||
/kanban.db
|
||
/kanban.db.*.lock
|
||
/backups/kanban/
|
||
/profiles/*/kanban*
|
||
pairing/
|
||
prof-b/
|
||
profiles/
|
||
.hub/
|
||
.curator_backups/
|
||
.bundled_manifest
|
||
.curator_state
|
||
.usage.json*
|
||
.tirith-install-failed
|
||
.update_check
|
||
.hermes_history
|
||
models_dev_cache.json
|
||
skill-curator-report.json
|
||
model-health.json
|
||
wiki_curator_state.json
|
||
lsp/
|
||
cuda-libs/
|
||
hermes-agent/ # submodule
|
||
__pycache__/
|
||
*.pyc
|
||
node_modules/
|
||
tmp/
|
||
.env* # 不跟踪 secrets(有 API key)
|
||
archive/
|
||
config.yaml.corrupt.*.bak
|
||
|
||
# 股票运行时配置(后端选择是个人偏好,非代码)
|
||
stock_broker.json
|
||
|
||
# 运行时噪音(daemon 每 30s 写入,不跟踪)
|
||
daemon/context.json
|
||
daemon/journal.jsonl
|
||
llm_context.json
|