45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
# cheat-on-content — 内容项目 .gitignore
|
||
# 由 /cheat-init 生成。目的:保护账号凭证 + 本地状态,同时让你的创作产物
|
||
# (predictions/ videos/ scripts/ 等)正常进入版本控制——原则 #1/#3 依赖
|
||
# git history 作为预测的不可变档案,所以这些目录**不**忽略。
|
||
#
|
||
# 注意:.gitignore 的注释必须独占一行,行内 `#` 不是注释(会变成 pattern 的一部分)。
|
||
|
||
# ── 凭证 / 登录态:绝不提交(提交即等于泄露账号)──
|
||
# .auth/ = 抖音 Playwright 登录态(含 sessionid)
|
||
# .auth-xhs/ = 小红书 Playwright 登录态(含 web_session 等)
|
||
# .auth-linkedin/ = LinkedIn Playwright 登录态(含 li_at)
|
||
# .cheat-secrets.json = API key / cookie
|
||
.auth/
|
||
.auth-xhs/
|
||
.auth-linkedin/
|
||
.cheat-secrets.json
|
||
|
||
# ── 本地缓存与生成物 ──
|
||
# .cheat-cache = 使用日志/热点去重缓存;.cheat-hooks = init 生成的 hook 副本;.debug = adapter 调试输出
|
||
.cheat-cache/
|
||
.cheat-hooks/
|
||
.debug/
|
||
|
||
# ── Claude Code 本地配置(含机器相关路径 / 个人 permission)──
|
||
.claude/
|
||
|
||
# ── Python(adapter / 工具脚本跑过留下)──
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
.venv/
|
||
venv/
|
||
.python-version
|
||
|
||
# ── macOS / 编辑器 / 临时文件 ──
|
||
.DS_Store
|
||
._*
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
*~
|
||
*.tmp
|
||
*.log
|