-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy path.gitignore
More file actions
103 lines (77 loc) · 1.52 KB
/
.gitignore
File metadata and controls
103 lines (77 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
temp/
tmp/
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
env/
build/
dist/
*.egg-info/
.streamlit/
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
*.log
.env
auth.json
model_responses.txt
# Sensitive files (API keys, credentials)
mykey.py
tasks/
*.zip
memory/*
!memory/memory_management_sop.md
# Allow tracking of specific SOPs
!memory/web_setup_sop.md
!memory/autonomous_operation_sop.md
!memory/autonomous_operation_sop/
!memory/autonomous_operation_sop/**
!memory/scheduled_task_sop.md
# L4 session archiver (only the script, not archives)
!memory/L4_raw_sessions/
memory/L4_raw_sessions/*
!memory/L4_raw_sessions/compress_session.py
# ljqCtrl related tools
!memory/ljqCtrl.py
!memory/ljqCtrl_sop.md
# procmem_scanner related tools
!memory/procmem_scanner.py
!memory/procmem_scanner_sop.md
# TMWebDriver SOP
!memory/tmwebdriver_sop.md
# Subagent SOP
!memory/subagent_sop.md
# Plan SOP
!memory/plan_sop.md
# Skill Search SOP
!memory/skill_search/
!memory/skill_search/**
# ADB UI tool
!memory/adb_ui.py
# Keychain
!memory/keychain.py
# Vision / OCR / UI detection tools
!memory/ocr_utils.py
!memory/vision_sop.md
!memory/ui_detect.py
# Memory management
!memory/memory_cleanup_sop.md
# Visual Studio
.vs/
restore_commit.txt
sche_tasks/
# CDP Bridge 密钥配置(首次运行自动生成)
assets/tmwd_cdp_bridge/config.js
assets/copilot_proxy.pyw
**log.*
# Reflect (ignore new files, whitelist existing)
reflect/*
!reflect/autonomous.py
!reflect/scheduler.py
# Universal: never track __pycache__ anywhere
**/__pycache__/